release clipboard when owned by agent and active session changes
[vd_agent/hramrach.git] / udscs.h
blob2bb9bbac68b269080d257e776594f3ccf51ec5b5
1 /* udscs.h Unix Domain Socket Client Server framework header file
3 Copyright 2010 Red Hat, Inc.
5 Red Hat Authors:
6 Hans de Goede <hdegoede@redhat.com>
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef __UDSCS_H
23 #define __UDSCS_H
25 #include <stdio.h>
26 #include <stdint.h>
27 #include <sys/select.h>
28 #include <sys/socket.h>
30 struct udscs_connection;
31 struct udscs_server;
32 struct udscs_message_header {
33 uint32_t type;
34 uint32_t opaque;
35 uint32_t size;
38 /* Callbacks with this type will be called when a new connection to a
39 server is accepted. */
40 typedef void (*udscs_connect_callback)(struct udscs_connection *conn);
41 /* Callbacks with this type will be called when a complete message has been
42 received. The callback may call udscs_destroy_connection, in which case
43 *connp must be made NULL (which udscs_destroy_connection takes care of) */
44 typedef void (*udscs_read_callback)(struct udscs_connection **connp,
45 struct udscs_message_header *header, const uint8_t *data);
46 /* Callback type for udscs_server_for_all_clients. Clients can be disconnected
47 from this callback just like with a read callback. */
48 typedef int (*udscs_for_all_clients_callback)(struct udscs_connection **connp,
49 void *priv);
50 /* Callbacks with this type will be called when the connection is disconnected.
51 Note:
52 1) udscs will destroy the connection in question itself after
53 this callback has completed!
54 2) This callback is always called, even if the disconnect is initiated
55 by the udscs user through returning -1 from a read callback, or
56 by explictly calling udscs_destroy_connection */
57 typedef void (*udscs_disconnect_callback)(struct udscs_connection *conn);
59 /* Create a unix domain socket named name and start listening on it. */
60 struct udscs_server *udscs_create_server(const char *socketname,
61 udscs_connect_callback connect_callback,
62 udscs_read_callback read_callback,
63 udscs_disconnect_callback disconnect_callback,
64 const char * const type_to_string[], int no_types,
65 FILE *logfile, FILE *errfile);
67 void udscs_destroy_server(struct udscs_server *server);
69 /* Connect to a unix domain socket named name. */
70 struct udscs_connection *udscs_connect(const char *socketname,
71 udscs_read_callback read_callback,
72 udscs_disconnect_callback disconnect_callback,
73 const char * const type_to_string[], int no_types,
74 FILE *logfile, FILE *errfile);
76 /* The contents of connp will be made NULL */
77 void udscs_destroy_connection(struct udscs_connection **connp);
80 /* Given an udscs server or client fill the fd_sets pointed to by readfds and
81 writefds for select() usage.
83 Return value: value of the highest fd + 1 */
84 int udscs_server_fill_fds(struct udscs_server *server, fd_set *readfds,
85 fd_set *writefds);
87 int udscs_client_fill_fds(struct udscs_connection *conn, fd_set *readfds,
88 fd_set *writefds);
90 /* Handle any events flagged by select for the given udscs server or client. */
91 void udscs_server_handle_fds(struct udscs_server *server, fd_set *readfds,
92 fd_set *writefds);
94 /* Note the connection may be destroyed (when disconnected) by this call
95 in this case the disconnect calllback will get called before the
96 destruction and the contents of connp will be made NULL */
97 void udscs_client_handle_fds(struct udscs_connection **connp, fd_set *readfds,
98 fd_set *writefds);
101 /* Queue a message for delivery to the client connected through conn.
103 Returns 0 on success -1 on error (only happens when malloc fails) */
104 int udscs_write(struct udscs_connection *conn, uint32_t type, uint32_t opaque,
105 const uint8_t *data, uint32_t size);
107 /* Like udscs_write, but then send the message to all clients connected to
108 the server */
109 int udscs_server_write_all(struct udscs_server *server,
110 uint32_t type, uint32_t opaque,
111 const uint8_t *data, uint32_t size);
112 /* Call func for all clients connected to the server, passing through
113 priv to all func calls. Returns the total of the return values from all
114 calls to func */
115 int udscs_server_for_all_clients(struct udscs_server *server,
116 udscs_for_all_clients_callback func, void *priv);
119 struct ucred udscs_get_peer_cred(struct udscs_connection *conn);
121 /* For server use, to associate per connection data with a connection */
122 void udscs_set_user_data(struct udscs_connection *conn, void *data);
123 void *udscs_get_user_data(struct udscs_connection *conn);
125 #endif