Code

client: Added an EOF flag to the client object.
[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_close:
88  * Close the client connection.
89  */
90 void
91 sdb_client_close(sdb_client_t *client);
93 /*
94  * sdb_client_send:
95  * Send the specified command and accompanying data to through the client
96  * connection.
97  *
98  * Returns:
99  *  - 0 on success
100  *  - a negative value else.
101  */
102 ssize_t
103 sdb_client_send(sdb_client_t *client,
104                 uint32_t cmd, uint32_t data_len, const char *data);
106 /*
107  * sdb_client_recv:
108  * Receive data from the connection. All data is written to the specified
109  * buffer. If specified, the returned status code is written to the memory
110  * location pointed to by 'code'. In case of an error or an incomplete
111  * command, the status code is set to UINT32_MAX. The returned data does not
112  * include the status code and message len as received from the remote side
113  * but only the data associated with the message.
114  *
115  * Returns:
116  *  - the number of bytes read
117  *    (may be zero if the message did not include any data)
118  *  - a negative value on error
119  */
120 ssize_t
121 sdb_client_recv(sdb_client_t *client,
122                 uint32_t *code, sdb_strbuf_t *buf);
124 /*
125  * sdb_client_eof:
126  * Returns true if end of file on the client connection was reached, that is,
127  * if the remote side closed the connection.
128  */
129 _Bool
130 sdb_client_eof(sdb_client_t *client);
132 #ifdef __cplusplus
133 } /* extern "C" */
134 #endif
136 #endif /* ! SDB_CLIENT_SOCK_H */
138 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */