本文整理汇总了C++中RoutableMessageHeader::source_object方法的典型用法代码示例。如果您正苦于以下问题:C++ RoutableMessageHeader::source_object方法的具体用法?C++ RoutableMessageHeader::source_object怎么用?C++ RoutableMessageHeader::source_object使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RoutableMessageHeader
的用法示例。
在下文中一共展示了RoutableMessageHeader::source_object方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: processMessage
void QueryTracker::processMessage(const RoutableMessageHeader &msgHeader, MemoryReference body) {
if (!msgHeader.has_reply_id()) {
SILOG(cppoh, error, "QueryTracker::processMessage called for non-reply");
return; // Not a response message--shouldn't have gotten here.
}
// This is a response message;
int64 id = msgHeader.reply_id();
SentMessageMap::iterator iter = mSentMessages.find(id);
if (iter != mSentMessages.end()) {
if ((!iter->second->header().has_destination_space() ||
iter->second->header().destination_space() == msgHeader.destination_space()) &&
iter->second->getRecipient() == msgHeader.source_object())
{
iter->second->processMessage(msgHeader, body);
} else {
ObjectReference dest(ObjectReference::null());
if (msgHeader.has_destination_object()) {
dest = msgHeader.destination_object();
}
std::ostringstream os;
os << "Response message with ID "<<id<<" to object "<<dest<<
" should come from "<<iter->second->getRecipient() <<
" but instead came from " <<msgHeader.source_object();
SILOG(cppoh, warning, os.str());
}
} else {
SILOG(cppoh, warning, "Got a reply for unknown query ID "<<id);
}
}
示例2: processMessage
void SingleStreamProximityConnection::processMessage(const RoutableMessageHeader&hdr,
MemoryReference message_body) {
ObjectStreamMap::iterator where=mObjectStreams.find(hdr.has_source_object()?hdr.source_object():ObjectReference::null());
if (where==mObjectStreams.end()) {
where=mObjectStreams.find(hdr.has_destination_object()?hdr.destination_object():ObjectReference::null());
}
if (where==mObjectStreams.end()) {
SILOG(proximity,error,"Cannot locate object with OR "<<hdr.source_object()<<" in the proximity connection map: "<<hdr.has_source_object());
} else {
std::string data;
RoutableMessageHeader rmh;
rmh.SerializeToString(&data);
where->second->send(MemoryReference(data),message_body,Network::ReliableOrdered);
}
}
示例3: processMessage
/**
* Process a message that may be meant for the proximity system
*/
virtual void processMessage(const RoutableMessageHeader& mesg,
MemoryReference message_body) {
internalProcessOpaqueProximityMessage(mesg.has_source_object()?&mesg.source_object():NULL,
mesg,
message_body.data(),
message_body.size(),true);
}
示例4: internalProcessOpaqueProximityMessage
/**
* Process a message that may be meant for the proximity system
* \returns true if object was deleted
*/
OpaqueMessageReturnValue internalProcessOpaqueProximityMessage(
const ObjectReference*object,
const RoutableMessageHeader& hdr,
const void *serializedMessageBody,
size_t serializedMessageBodySize,
bool trusted) {
try {
RoutableMessage msg(hdr,serializedMessageBody,serializedMessageBodySize);
MessageBundle sendState=DELIVER_TO_UNKNOWN;
bool deliverAllMessages=true;
int len=msg.body().message_size();
OpaqueMessageReturnValue obj_is_deleted=OBJECT_NOT_DESTROYED;
bool disconnection=false;
bool registration=false;
for (int i=0;i<len;++i) {
if (trusted||(hdr.has_source_object()&&hdr.source_object()==ObjectReference::spaceServiceID()&&hdr.source_port()==mRegistrationPort)) {
if(msg.body().message_names(i)=="DelObj") {
disconnection=true;
obj_is_deleted=OBJECT_DELETED;
}
if(msg.body().message_names(i)=="RetObj") {
registration=true;
Sirikata::Protocol::RetObj ro;
ro.ParseFromString(msg.body().message_arguments(i));
newObj(ro,msg.body().message_arguments(i).data(),msg.body().message_arguments(i).size());
}
}
if (!forwardThisName(disconnection,msg.body().message_names(i))) {
if (len==1) return obj_is_deleted;
deliverAllMessages=false;
}else {
if (msg.body().message_names(i)==proxCallbackName()) {
if (sendState==DELIVER_TO_UNKNOWN||sendState==DELIVER_TO_OBJECT)
sendState=DELIVER_TO_OBJECT;
else
sendState=DELIVER_TO_BOTH;
}else{
if (sendState==DELIVER_TO_UNKNOWN||sendState==DELIVER_TO_PROX)
sendState=DELIVER_TO_PROX;
else
sendState=DELIVER_TO_BOTH;
}
}
}
if (sendState==DELIVER_TO_UNKNOWN)
return obj_is_deleted;//no messages considered worth forwarding to the proximity system
if (sendState==DELIVER_TO_BOTH) {
SILOG(prox,info,"Message with recipients both proximity and object bundled into the same message: not delivering.");
return obj_is_deleted;
}
/* NOT SURE THIS IS NECESSARY -- do these messages already have addresses on them?*/
DidAlterMessage alteration;
if (sendState==DELIVER_TO_PROX)
alteration=addressMessage(msg,object,NULL);
else
alteration=addressMessage(msg,NULL,object);
if (deliverAllMessages&&sendState==DELIVER_TO_PROX) {
sendMessage(*object,msg,serializedMessageBody,serializedMessageBodySize);
} else if (deliverAllMessages&&sendState==DELIVER_TO_OBJECT) {
deliverMessage(*object,msg,serializedMessageBody,serializedMessageBodySize);
}else {
//some messages are not considered worth forwarding to the proximity system or there's a mishmash of destinations
if (msg.body().message_size()<len) {
len=msg.body().message_size();
}
RoutableMessage newMsg (msg);
newMsg.body().clear_message();
for (int i=0;i<len;++i) {
if (forwardThisName(registration||disconnection,msg.body().message_names(i))) {
newMsg.body().add_message(msg.body().message_names(i), msg.body().message_arguments(i));
}
}
if (sendState==DELIVER_TO_OBJECT)
deliverMessage(*object,newMsg,NULL,0);
if (sendState==DELIVER_TO_PROX)
sendMessage(*object,newMsg,NULL,0);
}
return obj_is_deleted;
}catch(std::invalid_argument&ia) {
SILOG(proximity,warning,"Could not parse message");
return OBJECT_NOT_DESTROYED;
}
}