1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/** \file server/client.c
* Define all the client data and actions.
*/
/* This file is part of LCDd, the lcdproc server.
*
* This file is released under the GNU General Public License.
* Refer to the COPYING file distributed with this package.
*
* Copyright (c) 1999, William Ferrell, Selene Scriven
* 2002, Joris Robijn
*/
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "client.h"
#include "screen.h"
#include "screenlist.h"
#include "render.h"
#include "input.h"
#include "menuscreens.h"
#include "shared/report.h"
#include "shared/LL.h"
Client *client_create(int sock)
{
Client *c;
debug(RPT_DEBUG, "%s(sock=%i)", __FUNCTION__, sock);
/* Allocate new client...*/
c = malloc(sizeof(Client));
if (!c) {
report(RPT_ERR, "%s: Error allocating", __FUNCTION__);
return NULL;
}
/* Init struct members*/
c->sock = sock;
c->messages = NULL;
c->backlight = BACKLIGHT_OPEN;
c->heartbeat = HEARTBEAT_OPEN;
/*Set up message list...*/
c->messages = LL_new();
if (!c->messages) {
report(RPT_ERR, "%s: Error allocating", __FUNCTION__);
free(c);
return NULL;
}
c->state = NEW;
c->name = NULL;
c->menu = NULL;
c->screenlist = LL_new();
if (!c->screenlist) {
report(RPT_ERR, "%s: Error allocating", __FUNCTION__);
return NULL;
}
return c;
}
int
client_destroy(Client *c)
{
Screen *s;
Menu *m;
char *str;
if (!c)
return -1;
debug(RPT_DEBUG, "%s(c=[%d])", __FUNCTION__, c->sock);
/* Close the socket */
close(c->sock);
/* Eat messages */
while ((str = client_get_message(c))) {
free(str);
}
LL_Destroy(c->messages);
/* Clean up the screenlist...*/
debug(RPT_DEBUG, "%s: Cleaning screenlist", __FUNCTION__);
for (s = LL_GetFirst(c->screenlist); s; s = LL_GetNext(c->screenlist)) {
/* Free its memory...*/
screen_destroy(s);
/* Note that the screen is not removed from the list because
* the list will be destroyed anyway...
*/
}
LL_Destroy(c->screenlist);
m = (Menu *) c->menu;
/* Destroy the client's menu, if it exists */
if (m) {
menuscreen_inform_item_destruction(m);
menu_remove_item(m->parent, m);
menuscreen_inform_item_modified(m->parent);
menuitem_destroy(m);
}
/* Forget client's key reservations */
input_release_client_keys(c);
/* Free client's other data */
c->state = GONE;
/* Clean up the name...*/
if (c->name)
free(c->name);
/* Remove structure */
free(c);
debug(RPT_DEBUG, "%s: Client data removed", __FUNCTION__);
return 0;
}
/*Add and remove messages from the client's queue...*/
int
client_add_message(Client *c, char *message)
{
int err = 0;
if (!c)
return -1;
if (!message)
return -1;
if (strlen(message) > 0) {
debug(RPT_DEBUG, "%s(c=[%d], message=\"%s\")", __FUNCTION__,
c->sock, message);
err = LL_Enqueue(c->messages, (void *) message);
}
return err;
}
/* Woo-hoo! A simple function. :)*/
char *
client_get_message(Client *c)
{
char *str;
debug(RPT_DEBUG, "%s(c=[%d])", __FUNCTION__, c->sock);
if (!c)
return NULL;
str = (char *) LL_Dequeue(c->messages);
return str;
}
Screen *
client_find_screen(Client *c, char *id)
{
Screen *s;
if (!c)
return NULL;
if (!id)
return NULL;
debug(RPT_DEBUG, "%s(c=[%d], id=\"%s\")", __FUNCTION__, c->sock, id);
LL_Rewind(c->screenlist);
do {
s = LL_Get(c->screenlist);
if ((s) && (0 == strcmp(s->id, id))) {
debug(RPT_DEBUG, "%s: Found %s", __FUNCTION__, id);
return s;
}
} while (LL_Next(c->screenlist) == 0);
return NULL;
}
int
client_add_screen(Client *c, Screen *s)
{
if (!c)
return -1;
if (!s)
return -1;
debug(RPT_DEBUG, "%s(c=[%d], s=[%s])", __FUNCTION__, c->sock, s->id);
LL_Push(c->screenlist, (void *) s);
/* Now, add it to the screenlist...*/
screenlist_add(s);
return 0;
}
int
client_remove_screen(Client *c, Screen *s)
{
if (!c)
return -1;
if (!s)
return -1;
debug(RPT_DEBUG, "%s(c=[%d], s=[%s])", __FUNCTION__, c->sock, s->id);
/* TODO: Check for errors here?*/
LL_Remove(c->screenlist, (void *) s, NEXT);
/* Now, remove it from the screenlist...*/
screenlist_remove(s);
return 0;
}
int client_screen_count(Client *c)
{
return LL_Length(c->screenlist);
}
|