Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » Print message in console view(print messages in console ar runtime)
Print message in console view [message #926134] Fri, 28 September 2012 06:31
Eclipse UserFriend
Hi,

I am using eclipse console in my RCP application.
I am unable to display the messages in run time.

This means, my application runs in UI thread and only when the thread finishes its execution, the messages gets printed together in the console.

I am using the below console code,

public class ConsoleDisplayMgr
{
private static ConsoleDisplayMgr fDefault = null;
private String fTitle = null;
private MessageConsole fMessageConsole = null;
public static final int MSG_INFORMATION = 1;
public static final int MSG_ERROR = 2;
public static final int MSG_WARNING = 3;

public ConsoleDisplayMgr(String messageTitle)
{
fDefault = this;
this.fTitle = messageTitle;
}

public static ConsoleDisplayMgr getDefault() {
return fDefault;
}
/**
*
* @param msg
* @param msgKind
*/

public void println(String msg, int msgKind)
{
if (msg == null) return;

if (!displayConsoleView())
{
MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "Error", msg);
return;
}

getNewMessageConsoleStream(msgKind).println(msg);
}


/**
*
*/

public void clear()
{
IDocument document = getMessageConsole().getDocument();
if (document != null)
document.set("");
}
/**
*
* @return
*/

private boolean displayConsoleView()
{
try
{
IWorkbenchWindow activeWorkbenchWindow = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (activeWorkbenchWindow != null)
{
IWorkbenchPage activePage = activeWorkbenchWindow.getActivePage();
if (activePage != null) {
activePage.showView("org.eclipse.ui.console.ConsoleView", null, 2);
}
}
}
catch (PartInitException localPartInitException)
{
return false;
}

return true;
}

/**
*
* @param msgKind
* @return
*/

private MessageConsoleStream getNewMessageConsoleStream(int msgKind)
{
int swtColorId = 6;

switch (msgKind)
{
case 1:
swtColorId = 6;
break;
case 2:
swtColorId = 12;
break;
case 3:
swtColorId = 10;
}

MessageConsoleStream msgConsoleStream = getMessageConsole().newMessageStream();
msgConsoleStream.setColor(Display.getCurrent().getSystemColor(swtColorId));

return msgConsoleStream;
}

/**
*
* @return
*/

private MessageConsole getMessageConsole()
{
if (this.fMessageConsole == null) {
createMessageConsoleStream(this.fTitle);
}
return this.fMessageConsole;
}

/**
*
* @param title
*/

private void createMessageConsoleStream(String title)
{
this.fMessageConsole = new MessageConsole(title, null);
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[] { this.fMessageConsole });
}


--------------------------------------------------------
Previous Topic:Include library is not getting listed under Project Explorer for C/C++ project in Juno with CDT 8.1
Next Topic:Integrate Custom Debugger
Goto Forum:
  


Current Time: Fri Jun 20 13:48:15 EDT 2025

Powered by FUDForum. Page generated in 0.07365 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top