News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Getting the Code::Blocks Build Message

Started by threeS, October 26, 2014, 09:50:40 AM

Previous topic - Next topic

threeS

Good day!

Is there any class or way to parse the raw output from compiling c/cpp?
The one that is used in the build messages tab.

Im using Code::Blocks 13.12 under Ubuntu 14.04 64bit.

Thanks for the help.,
More Power to all.  :)

Alpha

Take a look into the compiler plugin.  It uses a series of regexes on each message to pull the relevant parts.  They are mostly defined in plugins/compilergcc/resources/compilers/*.xml

Bat

Here I have added a custom message for this purpose (see patch)

Usage in plugin :
Register in constructor (here CompilerLCC)
And use in registered function. Each log line is passed in event.title

    Manager::Get()->RegisterEventSink(cbEVT_ADD_BUILD_LOG, new cbEventFunctor<CompilerLCC, CodeBlocksLogEvent>(this, &CompilerLCC::OnAddLog));

void CompilerLCC::OnAddLog(CodeBlocksLogEvent& event)
{
    if (event.title.StartsWith(_T("lcclnk"))) ...
}


It permit to handle things that don't really fit on standard Regexp handler