ProxyImp.cpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #include "ProxyImp.h"
  17. #include "ProxyServer.h"
  18. using namespace std;
  19. using namespace tars;
  20. class HelloCallback : public HelloPrxCallback
  21. {
  22. public:
  23. HelloCallback(TarsCurrentPtr &current)
  24. : _current(current)
  25. {}
  26. virtual void callback_testHello(tars::Int32 ret, const std::string& sOut)
  27. {
  28. Proxy::async_response_testProxy(_current, ret, sOut);
  29. }
  30. virtual void callback_testHello_exception(tars::Int32 ret)
  31. {
  32. TLOGERROR("HelloCallback callback_testHello_exception ret:" << ret << endl);
  33. Proxy::async_response_testProxy(_current, ret, "");
  34. }
  35. TarsCurrentPtr _current;
  36. };
  37. //////////////////////////////////////////////////////
  38. void ProxyImp::initialize()
  39. {
  40. //initialize servant here:
  41. //...
  42. _prx = Application::getCommunicator()->stringToProxy<HelloPrx>("TestApp.HelloServer.HelloObj@tcp -h 127.0.0.1 -p 8999");
  43. }
  44. //////////////////////////////////////////////////////
  45. void ProxyImp::destroy()
  46. {
  47. }
  48. //////////////////////////////////////////////////////
  49. tars::Int32 ProxyImp::test(tars::TarsCurrentPtr current) { return 0;}
  50. //////////////////////////////////////////////////////
  51. tars::Int32 ProxyImp::testProxy(const std::string& sIn, std::string &sOut, tars::TarsCurrentPtr current)
  52. {
  53. try
  54. {
  55. current->setResponse(false);
  56. TestApp::HelloPrxCallbackPtr cb = new HelloCallback(current);
  57. _prx->tars_set_timeout(3000)->async_testHello(cb,sIn);
  58. }
  59. catch(std::exception &ex)
  60. {
  61. current->setResponse(true);
  62. TLOGERROR("ProxyImp::testProxy ex:" << ex.what() << endl);
  63. }
  64. return 0;
  65. }