StressImp.cpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 "StressImp.h"
  17. #include "servant/Application.h"
  18. #include "TarsStressServer.h"
  19. using namespace std;
  20. //////////////////////////////////////////////////////
  21. void StressImp::initialize()
  22. {
  23. //initialize servant here:
  24. //...
  25. }
  26. //////////////////////////////////////////////////////
  27. void StressImp::destroy()
  28. {
  29. //destroy servant here:
  30. //...
  31. }
  32. int StressImp::test(tars::TarsCurrentPtr current)
  33. {
  34. return 0;
  35. }
  36. tars::Int32 StressImp::testStr(const std::string& in, std::string &out, tars::TarsCurrentPtr current)
  37. {
  38. out = in;
  39. ++_num;
  40. if(_num == 100000)
  41. {
  42. TLOGDEBUG("pthread id:"<<std::this_thread::get_id()<<"|time(ms):"<<TC_TimeProvider::getInstance()->getNowMs()-_time<<endl);
  43. _time=TC_TimeProvider::getInstance()->getNowMs();
  44. _num=0;
  45. }
  46. return 0;
  47. }