benchmark-getaddrinfo.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to
  5. * deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. * sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. * IN THE SOFTWARE.
  20. */
  21. #include "uv.h"
  22. #include "task.h"
  23. #include <stdlib.h>
  24. #define CONCURRENT_CALLS 10
  25. #define TOTAL_CALLS 10000
  26. static const char* name = "localhost";
  27. static uv_loop_t* loop;
  28. static uv_getaddrinfo_t handles[CONCURRENT_CALLS];
  29. static int calls_initiated = 0;
  30. static int calls_completed = 0;
  31. static int64_t start_time;
  32. static int64_t end_time;
  33. static void getaddrinfo_initiate(uv_getaddrinfo_t* handle);
  34. static void getaddrinfo_cb(uv_getaddrinfo_t* handle, int status,
  35. struct addrinfo* res) {
  36. ASSERT(status == 0);
  37. calls_completed++;
  38. if (calls_initiated < TOTAL_CALLS) {
  39. getaddrinfo_initiate(handle);
  40. }
  41. uv_freeaddrinfo(res);
  42. }
  43. static void getaddrinfo_initiate(uv_getaddrinfo_t* handle) {
  44. int r;
  45. calls_initiated++;
  46. r = uv_getaddrinfo(loop, handle, &getaddrinfo_cb, name, NULL, NULL);
  47. ASSERT(r == 0);
  48. }
  49. BENCHMARK_IMPL(getaddrinfo) {
  50. int i;
  51. loop = uv_default_loop();
  52. uv_update_time(loop);
  53. start_time = uv_now(loop);
  54. for (i = 0; i < CONCURRENT_CALLS; i++) {
  55. getaddrinfo_initiate(&handles[i]);
  56. }
  57. uv_run(loop, UV_RUN_DEFAULT);
  58. uv_update_time(loop);
  59. end_time = uv_now(loop);
  60. ASSERT(calls_initiated == TOTAL_CALLS);
  61. ASSERT(calls_completed == TOTAL_CALLS);
  62. LOGF("getaddrinfo: %.0f req/s\n",
  63. (double) calls_completed / (double) (end_time - start_time) * 1000.0);
  64. MAKE_VALGRIND_HAPPY();
  65. return 0;
  66. }