Skip to content

Commit f94bb25

Browse files
committed
[MNG-6915] Add a helper method to get the terminal width
1 parent 81a813b commit f94bb25

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
@@ -201,4 +201,22 @@ public void run()
201201
Runtime.getRuntime().addShutdownHook( shutdownHook );
202202
}
203203
}
204+
205+
/**
206+
* Get the terminal width or -1 if the width cannot be determined.
207+
*
208+
* @return the terminal width
209+
*/
210+
public static int getTerminalWidth()
211+
{
212+
if ( JANSI )
213+
{
214+
int width = AnsiConsole.getTerminalWidth();
215+
return width > 0 ? width : -1;
216+
}
217+
else
218+
{
219+
return -1;
220+
}
221+
}
204222
}

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)