summaryrefslogblamecommitdiffstats
path: root/src/CommandOutput.cpp
blob: a558facdb042a674eaa43feda7ead0b7065a778c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                             
                                                                                

                          
                                                                       
 
                                             







                            
                                                                                
                                     
 
                                                                   
 
                               





 


                                                                                


                                              
                                      


                                        
                                   


                                  
                                                                                  






                                             
                                                        
         
 
                                                        
                        




 

// CommandOutput.cpp

// Implements the various classes that process command output

#include "Globals.h"
#include "CommandOutput.h"





////////////////////////////////////////////////////////////////////////////////
// cCommandOutputCallback:

void cCommandOutputCallback::Out(const char * a_Fmt, fmt::ArgList args)
{
	AString Output = Printf(a_Fmt, args);
	Output.append("\n");
	Out(Output);
}





////////////////////////////////////////////////////////////////////////////////
// cStringAccumCommandOutputCallback:

void cStringAccumCommandOutputCallback::Out(const AString & a_Text)
{
	m_Accum.append(a_Text);
}





////////////////////////////////////////////////////////////////////////////////
// cLogCommandOutputCallback:

void cLogCommandOutputCallback::Finished(void)
{
	// Log each line separately:
	size_t len = m_Accum.length();
	size_t last = 0;
	for (size_t i = 0; i < len; i++)
	{
		switch (m_Accum[i])
		{
			case '\n':
			{
				LOG("%s", m_Accum.substr(last, i - last).c_str());
				last = i + 1;
				break;
			}
		}
	}  // for i - m_Buffer[]
	if (last < len)
	{
		LOG("%s", m_Accum.substr(last).c_str());
	}

	// Clear the buffer for the next command output:
	m_Accum.clear();
}