Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graceful failure #204

Closed
mattjlewis opened this issue Mar 24, 2021 · 3 comments · Fixed by #223 · May be fixed by gnodet/jansi#1
Closed

Graceful failure #204

mattjlewis opened this issue Mar 24, 2021 · 3 comments · Fixed by #223 · May be fixed by gnodet/jansi#1
Milestone

Comments

@mattjlewis
Copy link

Is it possible for jansi to fail gracefully if the native library fails to load? I.e. ignore any colour output requests and output plain text instead.

@gnodet
Copy link
Member

gnodet commented Jun 11, 2021

Is that related to #207 ?

@mattjlewis
Copy link
Author

mattjlewis commented Jun 11, 2021

Yes. I initially removed the call to AnsiConole.systemInstall as I primarily run my apps on Linux which don't need this (AnsiConsole.systemInstall() fails on ARMv6). However, I have recently been running some applications from within my IDE (Eclipse) and was annoyed to see the control characters.
I now do this:

		// Attempt to initialise Jansi
		try {
			AnsiConsole.systemInstall();
		} catch (Throwable t) {
			// Ignore
			Logger.trace(t, "Jansi native library not available on this platform: {}", t);
		}

BTW I have setup Docker based compilation for diozero that supports x86, ARMv6, ARMv7 and AArch64 - I basically compile GCC 8 for ARMv6 and use standard tools for the rest. https://github.com/mattjlewis/diozero/tree/main/docker

@michael-o
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants