| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * @build: make examples
- * @usage: bin/hloop_test
- * bin/nc 127.0.0.1 10514
- * nc 127.0.0.1 10514
- *
- */
- #include "hloop.h"
- #include "hbase.h"
- #include "hlog.h"
- #include "nlog.h"
- void mylogger(int loglevel, const char* buf, int len) {
- if (loglevel >= LOG_LEVEL_ERROR) {
- stderr_logger(loglevel, buf, len);
- }
- if (loglevel >= LOG_LEVEL_INFO) {
- file_logger(loglevel, buf, len);
- }
- network_logger(loglevel, buf, len);
- }
- void on_idle(hidle_t* idle) {
- printf("on_idle: event_id=%llu\tpriority=%d\tuserdata=%ld\n",
- LLU(hevent_id(idle)), hevent_priority(idle), (long)(intptr_t)(hevent_userdata(idle)));
- }
- void on_timer(htimer_t* timer) {
- hloop_t* loop = hevent_loop(timer);
- printf("on_timer: event_id=%llu\tpriority=%d\tuserdata=%ld\ttime=%llus\thrtime=%lluus\n",
- LLU(hevent_id(timer)), hevent_priority(timer), (long)(intptr_t)(hevent_userdata(timer)),
- LLU(hloop_now(loop)), LLU(hloop_now_hrtime(loop)));
- }
- void cron_minutely(htimer_t* timer) {
- time_t now = time(NULL);
- printf("cron_minutely: %s\n", ctime(&now));
- }
- void cron_hourly(htimer_t* timer) {
- time_t now = time(NULL);
- printf("cron_hourly: %s\n", ctime(&now));
- }
- void timer_write_log(htimer_t* timer) {
- static int cnt = 0;
- hlogd("[%d] Do you recv me?", ++cnt);
- hlogi("[%d] Do you recv me?", ++cnt);
- hloge("[%d] Do you recv me?", ++cnt);
- }
- void on_stdin(hio_t* io, void* buf, int readbytes) {
- printf("on_stdin fd=%d readbytes=%d\n", hio_fd(io), readbytes);
- printf("> %s\n", (char*)buf);
- if (strncmp((char*)buf, "quit", 4) == 0) {
- hloop_stop(hevent_loop(io));
- }
- }
- void on_custom_events(hevent_t* ev) {
- printf("on_custom_events event_type=%d userdata=%ld\n", (int)ev->event_type, (long)(intptr_t)ev->userdata);
- }
- int main() {
- // memcheck atexit
- HV_MEMCHECK;
- hloop_t* loop = hloop_new(0);
- // test idle and priority
- for (int i = HEVENT_LOWEST_PRIORITY; i <= HEVENT_HIGHEST_PRIORITY; ++i) {
- hidle_t* idle = hidle_add(loop, on_idle, 10);
- hevent_set_priority(idle, i);
- }
- // test timer timeout
- for (int i = 1; i <= 10; ++i) {
- htimer_t* timer = htimer_add(loop, on_timer, i*1000, 3);
- hevent_set_userdata(timer, (void*)(intptr_t)i);
- }
- // test timer period
- int minute = time(NULL)%3600/60;
- htimer_add_period(loop, cron_minutely, -1, -1, -1, -1, -1, INFINITE);
- htimer_add_period(loop, cron_hourly, minute+1, -1, -1, -1, -1, INFINITE);
- // test network_logger
- htimer_add(loop, timer_write_log, 1000, INFINITE);
- hlog_set_handler(mylogger);
- hlog_set_file("loop.log");
- hlog_set_format(DEFAULT_LOG_FORMAT);
- #ifndef _MSC_VER
- logger_enable_color(hlog, 1);
- #endif
- nlog_listen(loop, DEFAULT_LOG_PORT);
- // test nonblock stdin
- printf("input 'quit' to quit loop\n");
- char buf[64];
- hread(loop, 0, buf, sizeof(buf), on_stdin);
- // test custom_events
- for (int i = 0; i < 10; ++i) {
- hevent_t ev;
- memset(&ev, 0, sizeof(ev));
- ev.event_type = (hevent_type_e)(HEVENT_TYPE_CUSTOM + i);
- ev.cb = on_custom_events;
- ev.userdata = (void*)(intptr_t)i;
- hloop_post_event(loop, &ev);
- }
- hloop_run(loop);
- hloop_free(&loop);
- return 0;
- }
|