Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright (C) 2014 Google, Inc. |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | ******************************************************************************/ |
| 18 | |
| 19 | #pragma once |
| 20 | |
| 21 | #include <stdbool.h> |
| 22 | #include <stdint.h> |
| 23 | |
Pavlin Radoslavov | c196f21 | 2015-09-23 20:39:53 -0700 | [diff] [blame] | 24 | #include "osi/include/osi.h" |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 25 | |
| 26 | // This module implements the Reactor pattern. |
| 27 | // See http://en.wikipedia.org/wiki/Reactor_pattern for details. |
| 28 | |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 29 | typedef struct reactor_t reactor_t; |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 30 | typedef struct reactor_object_t reactor_object_t; |
| 31 | |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 32 | // Enumerates the reasons a reactor has stopped. |
| 33 | typedef enum { |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 34 | REACTOR_STATUS_STOP, // |reactor_stop| was called. |
| 35 | REACTOR_STATUS_ERROR, // there was an error during the operation. |
| 36 | REACTOR_STATUS_DONE, // the reactor completed its work (for the _run_once* |
| 37 | // variants). |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 38 | } reactor_status_t; |
| 39 | |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 40 | // Creates a new reactor object. Returns NULL on failure. The returned object |
| 41 | // must be freed by calling |reactor_free|. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 42 | reactor_t* reactor_new(void); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 43 | |
| 44 | // Frees a reactor object created with |reactor_new|. |reactor| may be NULL. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 45 | void reactor_free(reactor_t* reactor); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 46 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 47 | // Starts the reactor. This function blocks the caller until |reactor_stop| is |
Myles Watson | 9ca0709 | 2016-11-28 16:41:53 -0800 | [diff] [blame] | 48 | // called from another thread or in a callback. |reactor| may not be NULL. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 49 | reactor_status_t reactor_start(reactor_t* reactor); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 50 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 51 | // Runs one iteration of the reactor. This function blocks until at least one |
Myles Watson | 9ca0709 | 2016-11-28 16:41:53 -0800 | [diff] [blame] | 52 | // registered object becomes ready. |reactor| may not be NULL. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 53 | reactor_status_t reactor_run_once(reactor_t* reactor); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 54 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 55 | // Immediately unblocks the reactor. This function is safe to call from any |
| 56 | // thread. |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 57 | // |reactor| may not be NULL. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 58 | void reactor_stop(reactor_t* reactor); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 59 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 60 | // Registers a file descriptor with the reactor. The file descriptor, |fd|, must |
Myles Watson | 9ca0709 | 2016-11-28 16:41:53 -0800 | [diff] [blame] | 61 | // be valid when this function is called and its ownership is not transferred |
| 62 | // to the reactor. The |context| variable is a user-defined opaque handle that |
| 63 | // is passed back to the |read_ready| and |write_ready| functions. It is not |
| 64 | // copied or even dereferenced by the reactor so it may contain any value |
| 65 | // including NULL. The |read_ready| and |write_ready| arguments are optional and |
| 66 | // may be NULL. This function returns an opaque object that represents the file |
| 67 | // descriptor's registration with the reactor. When the caller is no longer |
| 68 | // interested in events on the |fd|, it must free the returned object by calling |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 69 | // |reactor_unregister|. |
| 70 | reactor_object_t* reactor_register(reactor_t* reactor, int fd, void* context, |
| 71 | void (*read_ready)(void* context), |
| 72 | void (*write_ready)(void* context)); |
Sharvil Nanavati | 19084c6 | 2014-06-23 16:30:46 -0700 | [diff] [blame] | 73 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 74 | // Changes the subscription mode for the file descriptor represented by |
Myles Watson | 9ca0709 | 2016-11-28 16:41:53 -0800 | [diff] [blame] | 75 | // |object|. If the caller has already registered a file descriptor with a |
| 76 | // reactor, has a valid |object|, and decides to change the |read_ready| and/or |
| 77 | // |write_ready| callback routines, they can call this routine. Returns true if |
| 78 | // the subscription was changed, false otherwise. |
Sharvil Nanavati | fbf8908 | 2014-08-13 00:40:49 -0700 | [diff] [blame] | 79 | // |object| may not be NULL, |read_ready| and |write_ready| may be NULL. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 80 | bool reactor_change_registration(reactor_object_t* object, |
| 81 | void (*read_ready)(void* context), |
| 82 | void (*write_ready)(void* context)); |
Sharvil Nanavati | fbf8908 | 2014-08-13 00:40:49 -0700 | [diff] [blame] | 83 | |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 84 | // Unregisters a previously registered file descriptor with its reactor. |obj| |
Myles Watson | 9ca0709 | 2016-11-28 16:41:53 -0800 | [diff] [blame] | 85 | // may not be NULL. |obj| is invalid after calling this function so the caller |
| 86 | // must drop all references to it. |
Myles Watson | b55040c | 2016-10-19 13:15:34 -0700 | [diff] [blame] | 87 | void reactor_unregister(reactor_object_t* obj); |