Code

plugin: Make sdb_plugin_info_t public.
[sysdb.git] / src / include / client / sock.h
1 /*
2  * SysDB - src/include/client/sock.h
3  * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
19  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
28 #ifndef SDB_CLIENT_SOCK_H
29 #define SDB_CLIENT_SOCK_H 1
31 #include "core/object.h"
32 #include "core/data.h"
34 #include "frontend/proto.h"
36 #include "utils/strbuf.h"
38 #include <sys/socket.h>
40 #include <stddef.h>
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
46 struct sdb_client;
47 typedef struct sdb_client sdb_client_t;
49 /*
50  * sdb_client_create:
51  * Allocates and initializes a client object to connect to the specified
52  * address.
53  *
54  * Returns:
55  *  - a new client object on success
56  *  - NULL in case of an error
57  */
58 sdb_client_t *
59 sdb_client_create(const char *address);
61 /*
62  * sdb_client_destroy:
63  * Destroyes the client connection and deallocates the client object.
64  */
65 void
66 sdb_client_destroy(sdb_client_t *client);
68 /*
69  * sdb_client_connect:
70  * Connect to the client's address using the specified username.
71  *
72  * Returns:
73  *  - 0 on success
74  *  - a negative value else
75  */
76 int
77 sdb_client_connect(sdb_client_t *client, const char *username);
79 /*
80  * sdb_client_sockfd:
81  * Return the client socket's file descriptor.
82  */
83 int
84 sdb_client_sockfd(sdb_client_t *client);
86 /*
87  * sdb_client_shutdown:
88  * Shut down the client's send and/or receive operations.
89  * See shutdown(3) for details.
90  */
91 int
92 sdb_client_shutdown(sdb_client_t *client, int how);
94 /*
95  * sdb_client_close:
96  * Close the client connection.
97  */
98 void
99 sdb_client_close(sdb_client_t *client);
101 /*
102  * sdb_client_send:
103  * Send the specified command and accompanying data to through the client
104  * connection.
105  *
106  * Returns:
107  *  - the number of bytes send
108  *  - a negative value else.
109  */
110 ssize_t
111 sdb_client_send(sdb_client_t *client,
112                 uint32_t cmd, uint32_t data_len, const char *data);
114 /*
115  * sdb_client_recv:
116  * Receive data from the connection. All data is written to the specified
117  * buffer. If specified, the returned status code is written to the memory
118  * location pointed to by 'code'. In case of an error or an incomplete
119  * command, the status code is set to UINT32_MAX. The returned data does not
120  * include the status code and message len as received from the remote side
121  * but only the data associated with the message.
122  *
123  * Returns:
124  *  - the number of bytes read
125  *    (may be zero if the message did not include any data)
126  *  - a negative value on error
127  */
128 ssize_t
129 sdb_client_recv(sdb_client_t *client,
130                 uint32_t *code, sdb_strbuf_t *buf);
132 /*
133  * sdb_client_eof:
134  * Returns true if end of file on the client connection was reached, that is,
135  * if the remote side closed the connection.
136  */
137 _Bool
138 sdb_client_eof(sdb_client_t *client);
140 #ifdef __cplusplus
141 } /* extern "C" */
142 #endif
144 #endif /* ! SDB_CLIENT_SOCK_H */
146 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */