DefaultProcess.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // DefaultProcess.cpp: implementation of the DefaultProcess class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "DefaultProcess.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. const string DefaultProcessID = "DefaultProcess";
  10. DefaultProcess::DefaultProcess()
  11. {
  12. }
  13. DefaultProcess::~DefaultProcess()
  14. {
  15. }
  16. void DefaultProcess::Reset()
  17. {
  18. m_TextInfoBuffer.clear();
  19. }
  20. bool DefaultProcess::ProcessIterm(const string &sType, istream &DataStream)
  21. {
  22. m_TextInfoBuffer << sType << endl;
  23. string Elem;
  24. if(!DataStream.eof())
  25. {
  26. //throw exception("Stream End when UpdateRelativeFileProcess::ProcessIterm ; File:__FILE__;Line:__LINE__"");
  27. GetALineFromStream(Elem,DataStream);
  28. }
  29. while(!CheckIsEnd(Elem))
  30. {
  31. m_TextInfoBuffer<< Elem <<endl;
  32. Elem = string("");
  33. if(!DataStream.eof())
  34. {
  35. //throw exception("Stream End when UpdateRelativeFileProcess::ProcessIterm ; File:__FILE__;Line:__LINE__"");
  36. GetALineFromStream(Elem,DataStream);
  37. }
  38. else
  39. {
  40. break;
  41. }
  42. }
  43. m_TextInfoBuffer << Elem;
  44. m_TextInfoBuffer << endl;
  45. return true;
  46. }
  47. const string DefaultProcess::GetType() const
  48. {
  49. return DefaultProcessID;
  50. }
  51. strstream& DefaultProcess::GetTextBuffer()
  52. {
  53. return m_TextInfoBuffer;
  54. }