event.c 6.6 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Server-side event management
 *
 * Copyright (C) 1998 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
19 20
 */

21 22 23
#include "config.h"
#include "wine/port.h"

Alexandre Julliard's avatar
Alexandre Julliard committed
24 25 26
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
27
#include <stdarg.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
28

29 30
#include "ntstatus.h"
#define WIN32_NO_STATUS
31
#include "windef.h"
32
#include "winternl.h"
33 34 35

#include "handle.h"
#include "thread.h"
36
#include "request.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
37 38 39 40 41 42 43 44

struct event
{
    struct object  obj;             /* object header */
    int            manual_reset;    /* is it a manual reset event? */
    int            signaled;        /* event has been signaled */
};

45
static void event_dump( struct object *obj, int verbose );
Alexandre Julliard's avatar
Alexandre Julliard committed
46 47
static int event_signaled( struct object *obj, struct thread *thread );
static int event_satisfied( struct object *obj, struct thread *thread );
48
static unsigned int event_map_access( struct object *obj, unsigned int access );
49
static int event_signal( struct object *obj, unsigned int access);
Alexandre Julliard's avatar
Alexandre Julliard committed
50 51 52

static const struct object_ops event_ops =
{
53 54 55 56 57 58
    sizeof(struct event),      /* size */
    event_dump,                /* dump */
    add_queue,                 /* add_queue */
    remove_queue,              /* remove_queue */
    event_signaled,            /* signaled */
    event_satisfied,           /* satisfied */
59
    event_signal,              /* signal */
60
    no_get_fd,                 /* get_fd */
61
    event_map_access,          /* map_access */
62
    no_lookup_name,            /* lookup_name */
63
    no_open_file,              /* open_file */
64
    no_close_handle,           /* close_handle */
65
    no_destroy                 /* destroy */
Alexandre Julliard's avatar
Alexandre Julliard committed
66 67 68
};


69 70
struct event *create_event( struct directory *root, const struct unicode_str *name,
                            unsigned int attr, int manual_reset, int initial_state )
Alexandre Julliard's avatar
Alexandre Julliard committed
71 72 73
{
    struct event *event;

74
    if ((event = create_named_object_dir( root, name, attr, &event_ops )))
Alexandre Julliard's avatar
Alexandre Julliard committed
75
    {
76
        if (get_error() != STATUS_OBJECT_NAME_EXISTS)
77 78 79 80 81
        {
            /* initialize it if it didn't already exist */
            event->manual_reset = manual_reset;
            event->signaled     = initial_state;
        }
Alexandre Julliard's avatar
Alexandre Julliard committed
82
    }
83
    return event;
Alexandre Julliard's avatar
Alexandre Julliard committed
84 85
}

86
struct event *get_event_obj( struct process *process, obj_handle_t handle, unsigned int access )
Alexandre Julliard's avatar
Alexandre Julliard committed
87
{
88
    return (struct event *)get_handle_obj( process, handle, access, &event_ops );
89
}
Alexandre Julliard's avatar
Alexandre Julliard committed
90

91 92
void pulse_event( struct event *event )
{
Alexandre Julliard's avatar
Alexandre Julliard committed
93 94 95 96 97 98
    event->signaled = 1;
    /* wake up all waiters if manual reset, a single one otherwise */
    wake_up( &event->obj, !event->manual_reset );
    event->signaled = 0;
}

99
void set_event( struct event *event )
Alexandre Julliard's avatar
Alexandre Julliard committed
100 101 102 103 104 105
{
    event->signaled = 1;
    /* wake up all waiters if manual reset, a single one otherwise */
    wake_up( &event->obj, !event->manual_reset );
}

106
void reset_event( struct event *event )
Alexandre Julliard's avatar
Alexandre Julliard committed
107 108 109 110
{
    event->signaled = 0;
}

111
static void event_dump( struct object *obj, int verbose )
Alexandre Julliard's avatar
Alexandre Julliard committed
112 113 114
{
    struct event *event = (struct event *)obj;
    assert( obj->ops == &event_ops );
115 116 117 118
    fprintf( stderr, "Event manual=%d signaled=%d ",
             event->manual_reset, event->signaled );
    dump_object_name( &event->obj );
    fputc( '\n', stderr );
Alexandre Julliard's avatar
Alexandre Julliard committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
}

static int event_signaled( struct object *obj, struct thread *thread )
{
    struct event *event = (struct event *)obj;
    assert( obj->ops == &event_ops );
    return event->signaled;
}

static int event_satisfied( struct object *obj, struct thread *thread )
{
    struct event *event = (struct event *)obj;
    assert( obj->ops == &event_ops );
    /* Reset if it's an auto-reset event */
    if (!event->manual_reset) event->signaled = 0;
    return 0;  /* Not abandoned */
}

137 138 139 140 141 142 143 144 145
static unsigned int event_map_access( struct object *obj, unsigned int access )
{
    if (access & GENERIC_READ)    access |= STANDARD_RIGHTS_READ | SYNCHRONIZE | EVENT_QUERY_STATE;
    if (access & GENERIC_WRITE)   access |= STANDARD_RIGHTS_WRITE;
    if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
    if (access & GENERIC_ALL)     access |= STANDARD_RIGHTS_ALL | EVENT_ALL_ACCESS;
    return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
}

146 147 148 149 150 151 152 153 154 155 156 157 158 159
static int event_signal( struct object *obj, unsigned int access )
{
    struct event *event = (struct event *)obj;
    assert( obj->ops == &event_ops );

    if (!(access & EVENT_MODIFY_STATE))
    {
        set_error( STATUS_ACCESS_DENIED );
        return 0;
    }
    set_event( event );
    return 1;
}

160 161 162
/* create an event */
DECL_HANDLER(create_event)
{
163
    struct event *event;
164
    struct unicode_str name;
165
    struct directory *root = NULL;
166

167
    reply->handle = 0;
168
    get_req_unicode_str( &name );
169 170 171 172
    if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
        return;

    if ((event = create_event( root, &name, req->attributes, req->manual_reset, req->initial_state )))
173
    {
174
        reply->handle = alloc_handle( current->process, event, req->access, req->attributes );
175
        release_object( event );
176
    }
177 178

    if (root) release_object( root );
179 180 181 182 183
}

/* open a handle to an event */
DECL_HANDLER(open_event)
{
184
    struct unicode_str name;
185
    struct directory *root = NULL;
186
    struct event *event;
187 188

    get_req_unicode_str( &name );
189 190 191
    if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 )))
        return;

192 193
    if ((event = open_object_dir( root, &name, req->attributes, &event_ops )))
    {
194
        reply->handle = alloc_handle( current->process, &event->obj, req->access, req->attributes );
195 196
        release_object( event );
    }
197 198

    if (root) release_object( root );
199 200 201 202 203
}

/* do an event operation */
DECL_HANDLER(event_op)
{
204 205 206
    struct event *event;

    if (!(event = get_event_obj( current->process, req->handle, EVENT_MODIFY_STATE ))) return;
207 208 209
    switch(req->op)
    {
    case PULSE_EVENT:
210
        pulse_event( event );
211 212
        break;
    case SET_EVENT:
213
        set_event( event );
214 215
        break;
    case RESET_EVENT:
216
        reset_event( event );
217 218
        break;
    default:
219 220
        set_error( STATUS_INVALID_PARAMETER );
        break;
221
    }
222
    release_object( event );
223
}