HelloServer.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 "HelloServer.h"
  17. #include "HelloImp.h"
  18. using namespace std;
  19. HelloServer g_app;
  20. /////////////////////////////////////////////////////////////////
  21. void
  22. HelloServer::initialize()
  23. {
  24. //initialize application here:
  25. //...
  26. addServant<HelloImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".UdpObj");
  27. addServant<HelloImp>(ServerConfig::Application + "." + ServerConfig::ServerName + ".Ipv6Obj");
  28. }
  29. /////////////////////////////////////////////////////////////////
  30. void
  31. HelloServer::destroyApp()
  32. {
  33. //destroy application here:
  34. //...
  35. }
  36. /////////////////////////////////////////////////////////////////
  37. int
  38. main(int argc, char* argv[])
  39. {
  40. try
  41. {
  42. g_app.main(argc, argv);
  43. g_app.waitForShutdown();
  44. }
  45. catch (std::exception& e)
  46. {
  47. cerr << "std::exception:" << e.what() << std::endl;
  48. }
  49. catch (...)
  50. {
  51. cerr << "unknown exception." << std::endl;
  52. }
  53. return -1;
  54. }
  55. /////////////////////////////////////////////////////////////////