数据交互之数据处理

数据交互必须通过协议来实现,所以交互双方必须遵循一定的读写规则

我的方法很简单但可以用,如果大家有好的方法,不妨交流一下

实现方法:数据流类Datastream有两个char*型指针,分别用来保存读写的数据,还有w_pos,r_pos两个数据用来记录读写的位置,而且要用到互斥锁,确保指针的安全性

void  writeInt(int param)
{
 memcpy(&m_Arraydata[w_pos], &param, sizeof(int));
 w_pos += sizeof(int);
}

int readInt()
{
 int i;
 memcpy(&i, &m_Arraydata[r_pos], sizeof(int));
 r_pos  += sizeof(int);
 return i;
}

void writeString(std::string str)
{
 memcpy(&m_Arraydata[w_pos],  str.c_str(), str.length());
 w_pos  += str.length();
  char end = 0;
 writeByte(end);
}

std::string readString()
{
 char *s = new char[1024];
 strcpy(s, &m_Arraydata[r_pos]);
 r_pos += strlen(s); 
 readByte();
 std::string str=  std::string(s);
 delete  []s;
 return  str;
}

 

你可能感兴趣的:(数据交互之数据处理)