X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=cloud%2Fsamples%2Fclient%2Fmessagequeue%2Fmq_publisher.cpp;h=743b794ad331bce1d77c7f596d4308967f82e81a;hb=b9b99474c02e9bd0cfe917c22bf96393b3e59d1a;hp=0fac651af98024bfe222900a219270c32ea20443;hpb=dc57a68c8a4eceb0efdf6786d48ce42f76305d8e;p=platform%2Fupstream%2Fiotivity.git diff --git a/cloud/samples/client/messagequeue/mq_publisher.cpp b/cloud/samples/client/messagequeue/mq_publisher.cpp index 0fac651..743b794 100644 --- a/cloud/samples/client/messagequeue/mq_publisher.cpp +++ b/cloud/samples/client/messagequeue/mq_publisher.cpp @@ -216,81 +216,89 @@ int main(int argc, char *argv[]) { cin >> cmd; - QueryParamsMap query; - OCRepresentation rep; - string topicType; - - switch (cmd[0]) + try { - case '0': - gTopicList.clear(); - cout << "Discovering topics" << endl; - result = g_mqBrokerResource->discoveryMQTopics(query, &discoverTopicCB, QualityOfService::LowQos); - break; - - case '1': - gTopicList.clear(); - cout << "Put topic type to discover: "; - cin >> cmd; - query["rt"] = cmd; - result = g_mqBrokerResource->discoveryMQTopics(query, &discoverTopicCB, QualityOfService::LowQos); - break; - - case '2': - cout << "Put discovered topic index to select: "; - cin >> cmd; - { - int index = atoi(cmd.c_str()); - if(index < 0 || (unsigned int) index >= gTopicList.size()) + + QueryParamsMap query; + OCRepresentation rep; + string topicType; + + switch (cmd[0]) + { + case '0': + gTopicList.clear(); + cout << "Discovering topics" << endl; + result = g_mqBrokerResource->discoveryMQTopics(query, &discoverTopicCB, QualityOfService::LowQos); + break; + + case '1': + gTopicList.clear(); + cout << "Put topic type to discover: "; + cin >> cmd; + query["rt"] = cmd; + result = g_mqBrokerResource->discoveryMQTopics(query, &discoverTopicCB, QualityOfService::LowQos); + break; + + case '2': + cout << "Put discovered topic index to select: "; + cin >> cmd; + { + int index = atoi(cmd.c_str()); + if (index < 0 || (unsigned int) index >= gTopicList.size()) + { + cout << "invalid topic index selected" << endl; + continue; + } + + g_mqSelectedTopicResource = gTopicList[index]; + cout << g_mqSelectedTopicResource->uri() << " selected" << endl; + } + break; + + case '3': + if (g_mqSelectedTopicResource == nullptr) { - cout << "invalid topic index selected" << endl; + cout << "Topic is not selected." << endl; continue; } - g_mqSelectedTopicResource = gTopicList[index]; - cout << g_mqSelectedTopicResource->uri() << " selected" << endl; - } - break; - - case '3': - if(g_mqSelectedTopicResource == nullptr) - { - cout << "Topic is not selected." << endl; - continue; - } - - cout << "Put message to selected topic: "; - cin >> cmd; - rep["message"] = cmd; - result = g_mqSelectedTopicResource->publishMQTopic(rep, query, &publishMessageCB, - QualityOfService::LowQos); - break; - - case '4': - cout << "Put topic uri to create: "; - cin >> cmd; - result = g_mqBrokerResource->createMQTopic(rep, cmd, query, &createTopicCB, - QualityOfService::LowQos); - break; - - case '5': - cout << "Put topic uri to create: "; - cin >> cmd; - cout << "Put topic type: "; - cin >> topicType; - query["rt"] = topicType; - result = g_mqBrokerResource->createMQTopic(rep, cmd, query, &createTopicCB, - QualityOfService::LowQos); - break; - - case 'q': - goto exit; - break; - } + cout << "Put message to selected topic: "; + cin >> cmd; + rep["message"] = cmd; + result = g_mqSelectedTopicResource->publishMQTopic(rep, query, &publishMessageCB, + QualityOfService::LowQos); + break; + + case '4': + cout << "Put topic uri to create: "; + cin >> cmd; + result = g_mqBrokerResource->createMQTopic(rep, cmd, query, &createTopicCB, + QualityOfService::LowQos); + break; + + case '5': + cout << "Put topic uri to create: "; + cin >> cmd; + cout << "Put topic type: "; + cin >> topicType; + query["rt"] = topicType; + result = g_mqBrokerResource->createMQTopic(rep, cmd, query, &createTopicCB, + QualityOfService::LowQos); + break; - if (result != OC_STACK_OK) + case 'q': + goto exit; + break; + } + + if (result != OC_STACK_OK) + { + cout << "Error, return code: " << result << endl; + } + } + catch (const exception &e) { - cout << "Error, return code: " << result << endl; + cout << "Precondition failed: " << e.what() << endl; } }