Files
cuberite-2a/src/CommandOutput.cpp
T

75 lines
1.2 KiB
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
// CommandOutput.cpp
// Implements the various classes that process command output
#include "Globals.h"
#include "CommandOutput.h"
2014-07-17 22:15:34 +02:00
////////////////////////////////////////////////////////////////////////////////
2013-07-29 12:13:03 +01:00
// cCommandOutputCallback:
void cCommandOutputCallback::Out(const char * a_Fmt, ...)
{
AString Output;
2014-01-16 08:34:10 +01:00
va_list args;
2013-07-29 12:13:03 +01:00
va_start(args, a_Fmt);
2014-01-16 08:34:10 +01:00
AppendVPrintf(Output, a_Fmt, args);
2013-07-29 12:13:03 +01:00
va_end(args);
Output.append("\n");
Out(Output);
}
2014-07-17 22:15:34 +02:00
////////////////////////////////////////////////////////////////////////////////
// cStringAccumCommandOutputCallback:
2013-07-29 12:13:03 +01:00
void cStringAccumCommandOutputCallback::Out(const AString & a_Text)
2013-07-29 12:13:03 +01:00
{
m_Accum.append(a_Text);
2013-07-29 12:13:03 +01:00
}
////////////////////////////////////////////////////////////////////////////////
// cLogCommandOutputCallback:
2013-07-29 12:13:03 +01:00
void cLogCommandOutputCallback::Finished(void)
{
// Log each line separately:
size_t len = m_Accum.length();
2013-07-29 12:13:03 +01:00
size_t last = 0;
for (size_t i = 0; i < len; i++)
{
switch (m_Accum[i])
2013-07-29 12:13:03 +01:00
{
case '\n':
{
LOG("%s", m_Accum.substr(last, i - last).c_str());
2013-07-29 12:13:03 +01:00
last = i + 1;
break;
}
}
} // for i - m_Buffer[]
if (last < len)
{
LOG("%s", m_Accum.substr(last).c_str());
2013-07-29 12:13:03 +01:00
}
2016-02-05 23:45:45 +02:00
2013-07-29 12:13:03 +01:00
// Clear the buffer for the next command output:
m_Accum.clear();
2013-07-29 12:13:03 +01:00
}