Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development
Getting the Code::Blocks Build Message
(1/1)
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
--- Code: --- 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"))) ...
}
--- End code ---
It permit to handle things that don't really fit on standard Regexp handler
Navigation
[0] Message Index
Go to full version