本文整理汇总了C++中Procedure::GetProcedureName方法的典型用法代码示例。如果您正苦于以下问题:C++ Procedure::GetProcedureName方法的具体用法?C++ Procedure::GetProcedureName怎么用?C++ Procedure::GetProcedureName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Procedure
的用法示例。
在下文中一共展示了Procedure::GetProcedureName方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: JsonRpcException
vector<Procedure> SpecificationParser::GetProceduresFromString(const string &content) throw(JsonRpcException)
{
Json::Reader reader;
Json::Value val;
if(!reader.parse(content,val))
{
throw JsonRpcException(Errors::ERROR_RPC_JSON_PARSE_ERROR, " specification file contains syntax errors");
}
if (!val.isArray())
{
throw JsonRpcException(Errors::ERROR_SERVER_PROCEDURE_SPECIFICATION_SYNTAX, " top level json value is not an array");
}
vector<Procedure> result;
map<string, Procedure> procnames;
for (unsigned int i = 0; i < val.size(); i++)
{
Procedure proc;
GetProcedure(val[i], proc);
if (procnames.find(proc.GetProcedureName()) != procnames.end())
{
throw JsonRpcException(Errors::ERROR_SERVER_PROCEDURE_SPECIFICATION_SYNTAX, "Procedurename not uniqe: " + proc.GetProcedureName());
}
procnames[proc.GetProcedureName()] = proc;
result.push_back(proc);
}
return result;
}
示例2: generateProcCall
void CPPClientStubGenerator::generateProcCall(Procedure &proc)
{
string call;
if (proc.GetProcedureType() == RPC_METHOD)
{
call = TEMPLATE_METHODCALL;
cg.writeLine(replaceAll(call, "<name>", proc.GetProcedureName()));
call = TEMPLATE_RETURNCHECK;
replaceAll2(call,"<cast>", CPPHelper::isCppConversion(proc.GetReturnType()));
cg.writeLine(call);
cg.increaseIndentation();
call = TEMPLATE_RETURN;
replaceAll2(call,"<cast>", CPPHelper::toCppConversion(proc.GetReturnType()));
cg.writeLine(call);
cg.decreaseIndentation();
cg.writeLine("else");
cg.increaseIndentation();
cg.writeLine("throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());");
cg.decreaseIndentation();
}
else
{
call = TEMPLATE_NOTIFICATIONCALL;
replaceAll2(call, "<name>", proc.GetProcedureName());
cg.writeLine(call);
}
}
示例3: generateMethod
void CPPClientStubGenerator::generateMethod(Procedure &proc)
{
string procsignature = TEMPLATE_CPPCLIENT_SIGMETHOD;
string returntype = CPPHelper::toCppType(proc.GetReturnType());
if (proc.GetProcedureType() == RPC_NOTIFICATION)
returntype = "void";
replaceAll2(procsignature, "<returntype>", returntype);
replaceAll2(procsignature, "<methodname>", CPPHelper::normalizeString(proc.GetProcedureName()));
replaceAll2(procsignature, "<parameters>", CPPHelper::generateParameterDeclarationList(proc));
cg.writeLine(procsignature);
cg.writeLine("{");
cg.increaseIndentation();
cg.writeLine("Json::Value p;");
generateAssignments(proc);
generateProcCall(proc);
cg.decreaseIndentation();
cg.writeLine("}");
}
示例4: ValidateRequest
int RpcProtocolServer::ValidateRequest(const Json::Value& request)
{
int error = 0;
Procedure* proc;
if (!(request.isMember(KEY_REQUEST_METHODNAME)
&& request.isMember(KEY_REQUEST_VERSION)
&& request.isMember(KEY_REQUEST_PARAMETERS)))
{
error = Errors::ERROR_RPC_INVALID_REQUEST;
}
else
{
map<string, Procedure*>::iterator it = procedures->find(request[KEY_REQUEST_METHODNAME].asString());
if (it != this->procedures->end())
{
proc = (*this->procedures)[request[KEY_REQUEST_METHODNAME].asString()];
if(request.isMember(KEY_REQUEST_ID) && proc->GetProcedureType() == RPC_NOTIFICATION)
{
error = Errors::ERROR_SERVER_PROCEDURE_IS_NOTIFICATION;
}
else if(!request.isMember(KEY_REQUEST_ID) && proc->GetProcedureType() == RPC_METHOD)
{
error = Errors::ERROR_SERVER_PROCEDURE_IS_METHOD;
}
else if (proc->ValdiateParameters(request[KEY_REQUEST_PARAMETERS]))
{
if (this->authManager != NULL)
{
error = this->authManager->CheckPermission(
request[KEY_AUTHENTICATION],
proc->GetProcedureName());
}
}
else
{
error = Errors::ERROR_RPC_INVALID_PARAMS;
}
}
else
{
error = Errors::ERROR_RPC_METHOD_NOT_FOUND;
}
}
return error;
}
示例5: JsonRpcException
procedurelist_t *SpecificationParser::GetProceduresFromString(const string &content) throw(JsonRpcException)
{
Json::Reader reader;
Json::Value val;
if(!reader.parse(content,val)) {
throw JsonRpcException(Errors::ERROR_RPC_JSON_PARSE_ERROR, " specification file contains syntax errors");
}
procedurelist_t* procedures = new procedurelist_t();
Procedure* proc;
for (unsigned int i = 0; i < val.size(); i++)
{
proc = GetProcedure(val[i]);
(*procedures)[proc->GetProcedureName()] = proc;
}
return procedures;
}
示例6: toJsonLiteral
void SpecificationWriter::procedureToJsonValue (const Procedure &procedure, Json::Value &target)
{
target[KEY_SPEC_PROCEDURE_NAME] = procedure.GetProcedureName();
if(procedure.GetProcedureType() == RPC_METHOD)
{
target[KEY_SPEC_RETURN_TYPE] = toJsonLiteral(procedure.GetReturnType());
}
for(parameterNameList_t::const_iterator it = procedure.GetParameters().begin(); it != procedure.GetParameters().end(); ++it)
{
if(procedure.GetParameterDeclarationType() == PARAMS_BY_NAME)
{
target[KEY_SPEC_PROCEDURE_PARAMETERS][it->first] = toJsonLiteral(it->second);
}
else
{
target[KEY_SPEC_PROCEDURE_PARAMETERS].append(toJsonLiteral(it->second));
}
}
}