本文整理汇总了C++中ObjectWrapper::DebugString方法的典型用法代码示例。如果您正苦于以下问题:C++ ObjectWrapper::DebugString方法的具体用法?C++ ObjectWrapper::DebugString怎么用?C++ ObjectWrapper::DebugString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ObjectWrapper
的用法示例。
在下文中一共展示了ObjectWrapper::DebugString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: unwrap
void GridClientProtobufMarshaller::unwrap(const ObjectWrapper& objWrapper, GridClientMessageLogResult& logRslt) {
ProtoResponse resp;
GG_LOG_DEBUG("Unwrap: %s", objWrapper.DebugString().c_str());
unwrapResponse(objWrapper, resp);
GG_LOG_DEBUG("Unwrap result: %s", resp.DebugString().c_str());
fillResponseHeader(resp, logRslt);
std::vector<std::string> lines;
if (resp.has_resultbean()) {
assert(resp.resultbean().type() == COLLECTION);
const std::string& binary = resp.resultbean().binary();
::Collection coll;
unmarshalMsg((int8_t*) binary.c_str(), binary.size(), coll);
for (auto it = coll.item().begin(); it != coll.item().end(); ++it) {
const ObjectWrapper& el = (*it);
lines.push_back(el.binary());
}
}
logRslt.lines(lines);
}
示例2: doUnwrapSimpleType
static bool doUnwrapSimpleType(const ObjectWrapper& objWrapper, GridClientVariant& var) {
assert(objWrapper.has_binary());
GG_LOG_DEBUG("Unwrap simple type: %s", objWrapper.DebugString().c_str());
string binary = objWrapper.binary();
bool unwrapRes = false;
switch (objWrapper.type()) {
case NONE:
return true;
case BOOL:
return getBoolValue(binary, var);
case BYTE:
return getByteValue(binary, var);
case BYTES:
return getBytesValue(binary, var);
case INT32:
return getInt32Value(binary, var);
case INT64:
return getInt64Value(binary, var);
case SHORT:
return getInt16Value(binary, var);
case STRING:
var.set(binary);
return true;
case DOUBLE:
return getDoubleValue(binary, var);
case FLOAT:
return getFloatValue(binary, var);
case TASK_BEAN:
return getTaskTesult(binary, var);
default: // Non-simple type
break;
}
return unwrapRes;
}