使用RabbitMQ放置自定义对象(不借助序列化工具,例如protobuffer)V2.0

如何使用RabbitMQ盛放自定义的对象呢?一般都会使用序列化工具在投放之前转换一次,从MQ取回的时候再逆序列化还原为本地对象。这里使用C++自带的强制类型装换,将本地对象的内存模型当做自然的序列化之后的数据,直接当做字节流放到string对象中,从MQ取回的时候用同样的方法再将string对象强制当做字节流转换为本地对象。直接使用。很棒

注意:这种思路其实有一个缺点就是本地上传,取回本地使用肯定是没问题的。如果本地上传,其他机器使用(本地是大端机器,其他机器是小端机器)就可能有问题,这也是序列化保证跨语言,跨机器的地方。

Student.h

#pragma once
#include 
using namespace std;
#include 

class Student
{
public:
	Student(void);
	~Student(void);
	string id(void) const ;
	void id(const string& id);
	int age(void) const ;
	void age(const int age);
	char* name(void) const ;
	void name(const char* name);
	char sex(void) const ;
	void sex(const char sex);
	friend ostream& operator<< (ostream& os ,const Student& stu);
private:
	Student(const Student&);
	Student& operator=(const Student&);
	string id_;
	int age_;
	char name_[10];
	char sex_;
};


Student.cpp

#include "Student.h"


Student::Student(void):sex_(0),age_(0)
{
	for (int i=0 ;i< 10;i++)
	{
		name_[i] = 0;
	}
}


Student::~Student(void)
{
}

string Student::id(void) const 
{
	return id_;
}
void Student::id(const string& id)
{
	this->id_ = id;
}
int Student::age(void) const 
{
	return age_;
}
void Student::age(const int age)
{
	age_ = age ;
}
char* Student::name(void) const 
{
	return (char*)name_;
}
void Student::name(const char* name)
{
	char* pname = this->name_;

	while((*pname++ = *name++) != '\0')
	{

	}
}

char Student::sex(void) const 
{
	return sex_;
}
void Student::sex(const char sex)
{
	sex_ = sex;
}

ostream& operator<<(ostream& os ,const Student& stu)
{
	os<<"id : "<

main.cpp


#include "Student.h"
#include "RabbitMQ.h"
#include 

int main(int, char *[])
{

	Student s;
	cout< stu_array;
	//for (int i=0;i<10;i++)
	//{
	//	string string_stu(reinterpret_cast(&s),reinterpret_cast(&s) + sizeof(Student));
	//	stu_array.push_back(string_stu);
	//}

	CRabbitMQ pro;
	CExchange exchange("exchange");
	string queue_name("queue");
	
	//mq::publish(stu_array,pro,exchange,queue_name);
	//cout<<"已经将students提交至MQ服务器"<(&s),reinterpret_cast(&s) + sizeof(Student));

	//Student* pstu = (Student*)string_stu.c_str();

	//cout<<*pstu<

这里仅仅展示了思路,具体的MQ封装是自己封装的和标准的MQ不太一样,封装版本见:

http://blog.csdn.net/calmreason/article/details/23346397

你可能感兴趣的:(RabbitMQ)