Skip to content

Commit b4577c9

Browse files
authored
Merge pull request #70 from gnodet/MSHARED-965-help
[MNG-6915] Add a helper method to get the terminal width
2 parents eb4f635 + f94bb25 commit b4577c9

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

src/main/java/org/apache/maven/shared/utils/logging/MessageUtils.java

+18
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,22 @@ public void run()
213213
Runtime.getRuntime().addShutdownHook( shutdownHook );
214214
}
215215
}
216+
217+
/**
218+
* Get the terminal width or -1 if the width cannot be determined.
219+
*
220+
* @return the terminal width
221+
*/
222+
public static int getTerminalWidth()
223+
{
224+
if ( JANSI )
225+
{
226+
int width = AnsiConsole.getTerminalWidth();
227+
return width > 0 ? width : -1;
228+
}
229+
else
230+
{
231+
return -1;
232+
}
233+
}
216234
}

src/test/java/org/apache/maven/shared/utils/logging/MessageUtilsTest.java

+29
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,18 @@
2222
import static org.hamcrest.CoreMatchers.not;
2323
import static org.hamcrest.CoreMatchers.sameInstance;
2424
import static org.hamcrest.MatcherAssert.assertThat;
25+
import static org.junit.Assert.assertEquals;
2526

27+
import java.io.ByteArrayOutputStream;
2628
import java.io.PrintStream;
29+
import java.nio.charset.StandardCharsets;
2730

31+
import org.fusesource.jansi.AnsiColors;
32+
import org.fusesource.jansi.AnsiConsole;
33+
import org.fusesource.jansi.AnsiMode;
34+
import org.fusesource.jansi.AnsiPrintStream;
35+
import org.fusesource.jansi.AnsiType;
36+
import org.fusesource.jansi.io.AnsiOutputStream;
2837
import org.junit.Test;
2938

3039
public class MessageUtilsTest
@@ -45,4 +54,24 @@ public void testSystem()
4554
System.setOut( currentOut );
4655
}
4756
}
57+
58+
@Test
59+
public void testTerminalWidth()
60+
{
61+
AnsiOutputStream.WidthSupplier width = new AnsiOutputStream.WidthSupplier()
62+
{
63+
@Override
64+
public int getTerminalWidth()
65+
{
66+
return 33;
67+
}
68+
};
69+
AnsiOutputStream aos = new AnsiOutputStream( new ByteArrayOutputStream(), width, AnsiMode.Default,
70+
null, AnsiType.Emulation, AnsiColors.Colors256, StandardCharsets.UTF_8,
71+
null, null, false );
72+
AnsiConsole.systemInstall();
73+
AnsiConsole.out = new AnsiPrintStream( aos, true );
74+
assertEquals( 33, MessageUtils.getTerminalWidth() );
75+
AnsiConsole.systemUninstall();
76+
}
4877
}

0 commit comments

Comments
 (0)