mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-23 11:49:50 +00:00
24baeafda7
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@612 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
183 lines
4.7 KiB
C
183 lines
4.7 KiB
C
/*
|
|
* Copyright (c) 2009 Mark Heily <mark@heily.com>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
void
|
|
test_kevent_timer_add(struct test_context *ctx)
|
|
{
|
|
struct kevent kev;
|
|
|
|
kevent_add(ctx->kqfd, &kev, 1, EVFILT_TIMER, EV_ADD, 0, 1000, NULL);
|
|
}
|
|
|
|
void
|
|
test_kevent_timer_del(struct test_context *ctx)
|
|
{
|
|
struct kevent kev;
|
|
|
|
kevent_add(ctx->kqfd, &kev, 1, EVFILT_TIMER, EV_DELETE, 0, 0, NULL);
|
|
|
|
test_no_kevents(ctx->kqfd);
|
|
}
|
|
|
|
void
|
|
test_kevent_timer_get(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
kevent_add(ctx->kqfd, &kev, 1, EVFILT_TIMER, EV_ADD, 0, 1000, NULL);
|
|
|
|
kev.flags |= EV_CLEAR;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
kevent_add(ctx->kqfd, &kev, 1, EVFILT_TIMER, EV_DELETE, 0, 0, NULL);
|
|
}
|
|
|
|
static void
|
|
test_kevent_timer_oneshot(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
kevent_add(ctx->kqfd, &kev, 2, EVFILT_TIMER, EV_ADD | EV_ONESHOT, 0, 500,NULL);
|
|
|
|
/* Retrieve the event */
|
|
kev.flags = EV_ADD | EV_CLEAR | EV_ONESHOT;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
/* Check if the event occurs again */
|
|
sleep(3);
|
|
test_no_kevents(ctx->kqfd);
|
|
}
|
|
|
|
static void
|
|
test_kevent_timer_periodic(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
kevent_add(ctx->kqfd, &kev, 3, EVFILT_TIMER, EV_ADD, 0, 1000,NULL);
|
|
|
|
/* Retrieve the event */
|
|
kev.flags = EV_ADD | EV_CLEAR;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
/* Check if the event occurs again */
|
|
sleep(1);
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
/* Delete the event */
|
|
kev.flags = EV_DELETE;
|
|
kevent_update(ctx->kqfd, &kev);
|
|
}
|
|
|
|
static void
|
|
test_kevent_timer_disable_and_enable(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
/* Add the watch and immediately disable it */
|
|
kevent_add(ctx->kqfd, &kev, 4, EVFILT_TIMER, EV_ADD | EV_ONESHOT, 0, 2000,NULL);
|
|
kev.flags = EV_DISABLE;
|
|
kevent_update(ctx->kqfd, &kev);
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
/* Re-enable and check again */
|
|
kev.flags = EV_ENABLE;
|
|
kevent_update(ctx->kqfd, &kev);
|
|
|
|
kev.flags = EV_ADD | EV_CLEAR | EV_ONESHOT;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
}
|
|
|
|
#ifdef EV_DISPATCH
|
|
void
|
|
test_kevent_timer_dispatch(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
kevent_add(ctx->kqfd, &kev, 4, EVFILT_TIMER, EV_ADD | EV_DISPATCH, 0, 800, NULL);
|
|
|
|
/* Get one event */
|
|
kev.flags = EV_ADD | EV_CLEAR | EV_DISPATCH;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
/* Confirm that the knote is disabled */
|
|
sleep(1);
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
/* Enable the knote and make sure no events are pending */
|
|
kevent_add(ctx->kqfd, &kev, 4, EVFILT_TIMER, EV_ENABLE | EV_DISPATCH, 0, 800, NULL);
|
|
test_no_kevents(ctx->kqfd);
|
|
|
|
/* Get the next event */
|
|
sleep(1);
|
|
kev.flags = EV_ADD | EV_CLEAR | EV_DISPATCH;
|
|
kev.data = 1;
|
|
kevent_get(&ret, ctx->kqfd);
|
|
kevent_cmp(&kev, &ret);
|
|
|
|
/* Remove the knote and ensure the event no longer fires */
|
|
kevent_add(ctx->kqfd, &kev, 4, EVFILT_TIMER, EV_DELETE, 0, 0, NULL);
|
|
sleep(1);
|
|
test_no_kevents(ctx->kqfd);
|
|
}
|
|
#endif /* EV_DISPATCH */
|
|
|
|
void
|
|
test_evfilt_timer(struct test_context *ctx)
|
|
{
|
|
test(kevent_timer_add, ctx);
|
|
test(kevent_timer_del, ctx);
|
|
test(kevent_timer_get, ctx);
|
|
test(kevent_timer_oneshot, ctx);
|
|
test(kevent_timer_periodic, ctx);
|
|
test(kevent_timer_disable_and_enable, ctx);
|
|
#ifdef EV_DISPATCH
|
|
test(kevent_timer_dispatch, ctx);
|
|
#endif
|
|
}
|
|
|
|
void
|
|
test_evfilt_timer_concurrent(struct test_context *ctx)
|
|
{
|
|
struct kevent kev, ret;
|
|
|
|
kevent_add(ctx->kqfd, &kev, ctx->iteration, EVFILT_TIMER, EV_ADD | EV_ONESHOT, 0, 100, NULL);
|
|
kevent_get(&ret, ctx->kqfd);
|
|
/* Do not compare ret and kev, because it may be triggered by a
|
|
different thread's kevent stucture */
|
|
|
|
}
|