vote up 1 vote down star

Hi,

I've a plugin which has to write output to the eclipse console. My sample code looks as follows:

MessageConsole myConsole = new MessageConsole("My Console", null);
	myConsole.activate();
	ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[]{ myConsole });
	ConsolePlugin.getDefault().getConsoleManager().showConsoleView(myConsole);
	MessageConsoleStream stream = myConsole.newMessageStream();
	stream.println("Hi there!");
	stream.close();

I found this partly here

and in the eclipse faqs. But this code doesn't work properly. Starting the plugin in a runtime workbench everything works as expected - console is opened and output visible. But when I install my plugin to eclipse then there is no console and no output inside eclipse. Strange is also, that when starting eclipse with -debug, some of the output written to a console is visible there. I say some, because the code abouve doesn't appear there, but some other similar code in some other place inside the plugin... redirecting stdout and stderr into a file gives the same result.

I would be gread if someone could give me a hint - I searched up and down the internet but couldn't find anything helpful as far.

regards, Kathi

flag
Needs to be merged with stackoverflow.com/questions/720963/…, if that's possible. – mmyers Apr 6 at 15:56

5 Answers

vote up 0 vote down

You need to show us more details. Where is the MessageConsoleStream defined? Your MessageConsole should probably inherit from the IOConsole class, which has a method "newOutputStream()" (I think) which gets you an OutputStream object to which you can print.

link|flag
vote up 0 vote down

the code in the class calling the compilier looks as follows:

private MessageConsole findConsole(String name){
	ConsolePlugin plugin = ConsolePlugin.getDefault();
	IConsoleManager conMan = plugin.getConsoleManager();
	IConsole[] existing = conMan.getConsoles();
	for (int i = 0; i<existing.length; i++){
		if (name.equals(existing[i].getName())){
			return (MessageConsole)existing[i];
		}
	}
	//no console found -> create new one
	MessageConsole newConsole = new MessageConsole(name, null);
	conMan.addConsoles(new IConsole[]{newConsole});
	return newConsole;
}



public void run(){
    	MessageConsole console = findConsole("tecompConsole");
    	//display the tecomp Console
    	IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
    	String id = IConsoleConstants.ID_CONSOLE_VIEW;
    	try {
    		IConsoleView view = (IConsoleView) page.showView(id);
    		view.display(console);
    	} catch (PartInitException e) {
    		e.printStackTrace();
    	}
    	MessageConsoleStream output = console.newMessageStream();
    	String tecompPath = TecompPlugin.getDefault().getPreferenceStore().getString(IEiffelConstants.TECOMP_PATH);
    	if (checkTecompPath(tecompPath)){
    		String line;
    		String[] cmd = {tecompPath, pathToAceFile};
    		try{
    			output.println("calling tecomp");
    			Process tecomp = Runtime.getRuntime().exec(cmd);
    			//capture stdout und stderr from tecomp
    			BufferedReader input = new BufferedReader(
    					new InputStreamReader(tecomp.getInputStream()));
    			BufferedReader err = new BufferedReader(
    					new InputStreamReader(tecomp.getErrorStream()));
    			while ((line = input.readLine()) != null ){
    				output.println(line);
    			}	
    			input.close();
    			while ((line = err.readLine()) != null){
    				output.println(line);
    			}
    			err.close();
    			output.close();
    			tecomp.waitFor();
    			//System.out.println(tecomp.exitValue());
    		}catch (Exception err){
    			err.printStackTrace();
    		}
    	} else {
    		try{
    		output.println("please specify a tecomp path");
    		output.close();
    		}catch (Exception err){}
    	}
    }

but the first test example should work, shouldn't it? I create a new MessageConsoleStream and write to it manually. Thats exactely like the examples I found...

regards, Kathi

link|flag
vote up 1 vote down

Did you check "Displaying the console in your RCP application" ?

Would the follwoing small code (done in the Application.java run() before creating and running the workbench) begin to at least behave like what you want ?

MessageConsole console = new MessageConsole(”System Output”, null);
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[] { console });
ConsolePlugin.getDefault().getConsoleManager().showConsoleView(console);
MessageConsoleStream stream = console.newMessageStream();

System.setOut(new PrintStream(stream));
System.setErr(new PrintStream(stream));

logger = LoggerFactory.getLogger(Application.class); // Previously declared.

(I.e. does a console display itself when your plugin is installed in eclipse ?)

link|flag
vote up 0 vote down

Hi,

the code doesn't belog to an rcp application - it's just a plugin, extending the eclipse ide with support for the eiffel programming language. So I think your suggestion doesn't work for my plugin - VonC, at least I don't know where to put your code... My first sample code in the initial question gets called inside the Plugin class extending AbstractUIPlugin within the start(BundleContext context) method. My plugin in running, so somewhere this method gets called. And as I mentioned - plugin works fine inside the runtime workbench... I'm sorry if this is not the right place for an additional explanation of my question - but it seemed to be the only place the system allows me to post some further lines. Comments to your answers are not allowed for me, because I just signed in and for that I don't have enough reputation points... so, please correct me, if I'm using the system wrong :) thx

regards, Kathi

link|flag
vote up 0 vote down

You probably have to clear the cached data used by OSGI and the eclipse runtime. You can do that by adding the -clean argument to your eclipse command line.

Here is the relevant information from the Plug-in Dev Guide:

Cleans cached data used by the OSGi framework and Eclipse runtime. Try to run Eclipse once with this option if you observe startup errors after install, update, or using a shared configuration.

See the Eclipse runtime options for more information.

You might also want to check into using update sites. I routinely use a local update site to install plugins while testing as it seems less error prone. The Eclipse FAQ has a quick article on how to create an update site.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.