| 37 | |
| 38 | protected: |
| 39 | void* run() |
| 40 | { |
| 41 | long long int n = 0; |
| 42 | |
| 43 | struct timeval begin; |
| 44 | gettimeofday(&begin, NULL); |
| 45 | |
| 46 | while (true) |
| 47 | { |
| 48 | queue_item* item = (queue_item*) queue_.pop(); |
| 49 | if (item == NULL) |
| 50 | break; |
| 51 | |
| 52 | n++; |
| 53 | |
| 54 | msg_t type = item->get_type(); |
| 55 | delete item; |
| 56 | |
| 57 | if (type == MSG_STOP) |
| 58 | { |
| 59 | printf("stop now, max: %lld\r\n", n); |
| 60 | break; |
| 61 | } |
| 62 | |
| 63 | switch (type) |
| 64 | { |
| 65 | case MSG_ECHO: |
| 66 | if (n <= 10) |
| 67 | printf("hello\r\n"); |
| 68 | if (n % 100000 == 0) |
| 69 | { |
| 70 | char tmp[256]; |
| 71 | acl::safe_snprintf(tmp, sizeof(tmp), |
| 72 | "n: %lld", n); |
| 73 | acl::meter_time(__FILE__, __LINE__, tmp); |
| 74 | } |
| 75 | break; |
| 76 | default: |
| 77 | printf("unknown msg type\r\n"); |
| 78 | break; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | struct timeval end; |
| 83 | gettimeofday(&end, NULL); |
| 84 | double spent = util::stamp_sub(&end, &begin); |
| 85 | |
| 86 | printf("queue item over, max: %lld\r\n", n); |
| 87 | printf("max: %lld, spent: %.2f, speed: %.2f\r\n", |
| 88 | n, spent, n * 1000 / (spent > 0 ? spent : 1)); |
| 89 | |
| 90 | return NULL; |
| 91 | } |
| 92 | |
| 93 | private: |
| 94 | acl::thread_queue& queue_; |
nothing calls this directly
no test coverage detected