2017-03-17 11 views
0

com/crossbario/autobahn-cpp가 서버의 이벤트를 구독합니다. 서버가 내 자신이 아니야, 나는 그것으로부터 정보를 수집 할 필요가있다. 그러나 나는 포맷에 문제가있다.autobahn msgmapck 복잡한 유형의 C++을 풀어줍니다.

나는이 이벤트를 가지고 같은 복잡한 사건에 대한 올바른 유형을 알아낼 수 없습니다 :

RX 메시지 : 이벤트 [2934398464921086, 7994968764510011, {}, [{ "유형": "이벤트", "데이터 ": {"유형 ":"순서 ","무게 ":"1141.13200000 ","값 ":"0.09000000 "}}, {"포인트 ": 81632796}]

   auto s1 = session->subscribe("topic", 
        [](const autobahn::wamp_event& event) { 
       for(int i = 0; i< event.number_of_arguments(); i++) 
         { 
          try { 
           typedef /*some type*/ ARGS; 
           ARGS arguments; 
          arguments = event.argument<ARGS>(i); 
          } 
          catch (const std::bad_cast& e) { 
           std::cerr << "Casting exception: " << e.what() << std::endl; 

          } 
          std::cout << "Got event: " << event.number_of_arguments() << std::endl; 
         } 

        }) 
        .then([](boost::future<autobahn::wamp_subscription> sub) { 
         std::cout << "Subscribed with ID " << sub.get().id() << std::endl; 
        }); 

누군가가 나를 도울 수 있습니까?

답변

0

문제가 해결되었습니다.

void check_type(const msgpack::object& obj, int identSize=0) 
    { 

     std::string ident = ""; 
     for(int i=1;i<=identSize; i++) 
      ident += " "; 

     if(obj.type == msgpack::type::ARRAY) 
      std::cout << ident << "ARRAY" << std::endl; 
     else if(obj.type == msgpack::type::NIL) 
      std::cout << ident << "NIL" << std::endl; 
     else if(obj.type == msgpack::type::BOOLEAN) 
      std::cout << ident << "BOOLEAN" << std::endl; 
     else if(obj.type == msgpack::type::POSITIVE_INTEGER) 
      std::cout << ident << "POSITIVE_INTEGER" << std::endl; 
     else if(obj.type == msgpack::type::NEGATIVE_INTEGER) 
      std::cout << ident << "NEGATIVE_INTEGER" << std::endl; 
     else if(obj.type == msgpack::type::STR) 
     { 
      std::string v = obj.as<std::string>(); 
      std::cout << ident << "STR: "<< v << std::endl; 
     } 
     else if(obj.type == msgpack::type::BIN) 
      std::cout << ident << "BIN" << std::endl; 
     else if(obj.type == msgpack::type::EXT) 
      std::cout << ident << "EXT" << std::endl; 
     else if(obj.type == msgpack::type::MAP) 
     { 
      std::cout << ident << "MAP size:" << obj.via.map.size << std::endl; 
      for(int i = 0; i< obj.via.map.size; i++) 
      { 
       std::cout << ident+" " << "Key:" << i << std::endl; 
       check_type(obj.via.map.ptr[i].key, identSize+2); 
       std::cout << ident+" " << "Value:" << i << std::endl; 
       check_type(obj.via.map.ptr[i].val, identSize+2); 
      } 

     } 
     else 
      std::cout<< "Udefined" << std::endl; 
    } 

    msgpack::object argument = event.argument<msgpack::object>(i); 
    check_type(argument); 

나는 단지 autobahn에서 이벤트 인수를 msgpack :: object로 변환 한 다음 유형을 확인하면서 처리합니다.