PJoinDataNodeRES.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // PJoinDataNodeRES.cpp: implementation of the PJoinDataNodeRES class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "PJoinDataNodeRES.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. PJoinDataNodeRES::PJoinDataNodeRES()
  9. {
  10. this->Tag = PJoinDataNodeRESTAG;
  11. this->user_id = 0;
  12. this->success = false;
  13. this->conference_name = "";
  14. }
  15. PJoinDataNodeRES::~PJoinDataNodeRES()
  16. {
  17. }
  18. bool PJoinDataNodeRES::assembleData( int user_id , bool success , const char * c_name )
  19. {
  20. this->buffer.Resize( 4 * INT_SIZE + strlen( c_name ) + CHAR_SIZE );
  21. char * now = this->buffer.GetBuffer( );
  22. *( int * )now = this->buffer.GetSize( ); now += INT_SIZE;
  23. *( int * )now = this->Tag; now += INT_SIZE;
  24. *( int * )now = user_id; now += INT_SIZE;
  25. *( int * )now = success;  now += INT_SIZE;
  26. strcpy( now , c_name );
  27. return true;
  28. }
  29. bool PJoinDataNodeRES::parseData( CBuffer & buffer )
  30. {
  31. if( ! buffer.GetSize( ) ) return false;
  32. char * now = buffer.GetBuffer( ) + 2 * INT_SIZE;
  33. this->user_id = *( int * )now ; now += INT_SIZE;
  34. this->success = ( bool ) * (int * )now; now += INT_SIZE;
  35. this->conference_name = now;
  36. return true;
  37. }