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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/*
* Player - One Hell of a Robot Server
* Copyright (C) 2005 -
* Brian Gerkey
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/********************************************************************
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
********************************************************************/
/*
* $Id: functiontable.c 8030 2009-07-16 04:30:43Z thjc $
*
* Functions for looking up the appropriate XDR pack/unpack function for a
* given message type and subtype.
*/
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <stdio.h>
// Can't use libplayercommon here because of an unresolved circular build
// dependency
//#include <libplayercore/error.h>
#include "libplayerinterface/playerxdr.h"
#include "functiontable.h"
#ifndef HAVE_XDR_LONGLONG_T
#include <rpc/types.h>
#include <rpc/xdr.h>
bool_t xdr_longlong_t(XDR *xdrs, long long int *llp)
{
long int t1, t2;
if (xdrs->x_op == XDR_ENCODE)
{
t1 = (long) ((*llp) >> 32);
t2 = (long) (*llp);
return (XDR_PUTLONG(xdrs, &t1) && XDR_PUTLONG(xdrs, &t2));
}
if (xdrs->x_op == XDR_DECODE)
{
if (!XDR_GETLONG(xdrs, &t1) || !XDR_GETLONG(xdrs, &t2))
return FALSE;
*llp = ((long long int) t1) << 32;
*llp |= (uint32_t) t2;
return TRUE;
}
if (xdrs->x_op == XDR_FREE)
return TRUE;
return FALSE;
}
#endif
static playerxdr_function_t init_ftable[] =
{
/* This list is currently alphabetized, please keep it that way! */
/* universal messages */
{0, PLAYER_MSGTYPE_REQ, PLAYER_CAPABILTIES_REQ,
(player_pack_fn_t)player_capabilities_req_pack, NULL, NULL},
{0, PLAYER_MSGTYPE_REQ, PLAYER_GET_BOOLPROP_REQ,
(player_pack_fn_t)player_boolprop_req_pack, (player_copy_fn_t)player_boolprop_req_t_copy, (player_cleanup_fn_t)player_boolprop_req_t_cleanup,
(player_clone_fn_t)player_boolprop_req_t_clone,(player_free_fn_t)player_boolprop_req_t_free,(player_sizeof_fn_t)player_boolprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_SET_BOOLPROP_REQ,
(player_pack_fn_t)player_boolprop_req_pack, (player_copy_fn_t)player_boolprop_req_t_copy, (player_cleanup_fn_t)player_boolprop_req_t_cleanup,
(player_clone_fn_t)player_boolprop_req_t_clone,(player_free_fn_t)player_boolprop_req_t_free,(player_sizeof_fn_t)player_boolprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_GET_INTPROP_REQ,
(player_pack_fn_t)player_intprop_req_pack, (player_copy_fn_t)player_intprop_req_t_copy, (player_cleanup_fn_t)player_intprop_req_t_cleanup,
(player_clone_fn_t)player_intprop_req_t_clone,(player_free_fn_t)player_intprop_req_t_free,(player_sizeof_fn_t)player_intprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_SET_INTPROP_REQ,
(player_pack_fn_t)player_intprop_req_pack, (player_copy_fn_t)player_intprop_req_t_copy, (player_cleanup_fn_t)player_intprop_req_t_cleanup,
(player_clone_fn_t)player_intprop_req_t_clone,(player_free_fn_t)player_intprop_req_t_free,(player_sizeof_fn_t)player_intprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_GET_DBLPROP_REQ,
(player_pack_fn_t)player_dblprop_req_pack, (player_copy_fn_t)player_dblprop_req_t_copy, (player_cleanup_fn_t)player_dblprop_req_t_cleanup,
(player_clone_fn_t)player_dblprop_req_t_clone,(player_free_fn_t)player_dblprop_req_t_free,(player_sizeof_fn_t)player_dblprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_SET_DBLPROP_REQ,
(player_pack_fn_t)player_dblprop_req_pack, (player_copy_fn_t)player_dblprop_req_t_copy, (player_cleanup_fn_t)player_dblprop_req_t_cleanup,
(player_clone_fn_t)player_dblprop_req_t_clone,(player_free_fn_t)player_dblprop_req_t_free,(player_sizeof_fn_t)player_dblprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_GET_STRPROP_REQ,
(player_pack_fn_t)player_strprop_req_pack, (player_copy_fn_t)player_strprop_req_t_copy, (player_cleanup_fn_t)player_strprop_req_t_cleanup,
(player_clone_fn_t)player_strprop_req_t_clone,(player_free_fn_t)player_strprop_req_t_free,(player_sizeof_fn_t)player_strprop_req_t_sizeof},
{0, PLAYER_MSGTYPE_REQ, PLAYER_SET_STRPROP_REQ,
(player_pack_fn_t)player_strprop_req_pack, (player_copy_fn_t)player_strprop_req_t_copy, (player_cleanup_fn_t)player_strprop_req_t_cleanup,
(player_clone_fn_t)player_strprop_req_t_clone,(player_free_fn_t)player_strprop_req_t_free,(player_sizeof_fn_t)player_strprop_req_t_sizeof},
/* Special messages */
{PLAYER_PLAYER_CODE, PLAYER_MSGTYPE_SYNCH, 0,
(player_pack_fn_t)player_add_replace_rule_req_pack, NULL, NULL, NULL, NULL, NULL},
/* generated messages from the interface definitions */
#include "functiontable_gen.h"
/* This NULL element signals the end of the list; don't remove it */
{0,0,0,NULL,NULL,NULL}
};
static playerxdr_function_t* ftable=NULL;
static int ftable_len=0;
void
playerxdr_ftable_init()
{
playerxdr_function_t* f;
// if for some reason this method gets called more than once just ignore the call
if (ftable)
return;
ftable_len = 0;
for(f = init_ftable; f->packfunc; f++)
ftable_len++;
ftable = (playerxdr_function_t*)calloc(ftable_len,
sizeof(playerxdr_function_t));
assert(ftable);
memcpy(ftable,init_ftable,ftable_len*sizeof(playerxdr_function_t));
}
int
playerxdr_ftable_add(playerxdr_function_t f, int replace)
{
if(playerxdr_get_packfunc(f.interf, f.type, f.subtype))
{
// It's already in the table. Did the caller say to replace?
if(!replace)
{
// Nope; return an error
return(-1);
}
else
{
// Yes; replace (it's clearly inefficient to iterate through the
// table again to find the entry to replace, but the table is pretty
// small and this doesn't happen very often)
int i;
playerxdr_function_t* curr;
for(i=0;i<ftable_len;i++)
{
curr = ftable + i;
// Make sure the interface, type, and subtype match exactly
if((curr->interf == f.interf) &&
(curr->subtype == f.subtype) &&
(curr->type == f.type))
{
*curr = f;
return(0);
}
}
// Can't use libplayercommon here because of an unresolved circular build
// dependency
//PLAYER_ERROR("unable to find entry to replace");
puts("playerxdr_ftable_add: unable to find entry to replace");
return(-1);
}
}
else
{
// Not in the table; add it
ftable = (playerxdr_function_t*)realloc(ftable,
((ftable_len+1)*
sizeof(playerxdr_function_t)));
assert(ftable);
ftable[ftable_len++] = f;
return(0);
}
}
int
playerxdr_ftable_add_multi(playerxdr_function_t *flist, int replace)
{
playerxdr_function_t* f;
for (f = flist; f->packfunc; f++)
{
if (playerxdr_ftable_add (*f, replace) < 0)
{
puts("Failed to add new function to XDR function table");
return(-1);
}
}
return(0);
}
playerxdr_function_t*
playerxdr_get_ftrow(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* curr=NULL;
int i;
if(!ftable_len)
return(NULL);
for(i=0;i<ftable_len;i++)
{
curr = ftable + i;
// Make sure the interface and subtype match exactly.
// match anyway if interface = 0 (universal data types)
if((curr->interf == interf || curr->interf == 0) &&
curr->type == type &&
curr->subtype == subtype)
return(curr);
}
// The supplied type can be RESP_ACK if the registered type is REQ.
if (type == PLAYER_MSGTYPE_RESP_ACK || type == PLAYER_MSGTYPE_RESP_NACK)
type = PLAYER_MSGTYPE_REQ;
for(i=0;i<ftable_len;i++)
{
curr = ftable + i;
// Make sure the interface and subtype match exactly.
// match anyway if interface = 0 (universal data types)
if((curr->interf == interf || curr->interf == 0) &&
curr->type == type &&
curr->subtype == subtype)
return(curr);
}
return(NULL);
}
player_pack_fn_t
playerxdr_get_packfunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->packfunc);
return(NULL);
}
player_copy_fn_t
playerxdr_get_copyfunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->copyfunc);
return(NULL);
}
player_cleanup_fn_t
playerxdr_get_cleanupfunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->cleanupfunc);
return(NULL);
}
player_clone_fn_t
playerxdr_get_clonefunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->clonefunc);
return(NULL);
}
player_free_fn_t
playerxdr_get_freefunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->freefunc);
return(NULL);
}
player_sizeof_fn_t
playerxdr_get_sizeoffunc(uint16_t interf, uint8_t type, uint8_t subtype)
{
playerxdr_function_t* row=NULL;
if ((row = playerxdr_get_ftrow (interf, type, subtype)) != NULL)
return(row->sizeoffunc);
return(NULL);
}
// Deep copy a message structure
unsigned int
playerxdr_deepcopy_message(void* src, void* dest, uint16_t interf, uint8_t type, uint8_t subtype)
{
player_copy_fn_t copyfunc = NULL;
if ((copyfunc = playerxdr_get_copyfunc(interf, type, subtype)) == NULL)
return 0;
return (*copyfunc)(dest, src);
}
void *
playerxdr_clone_message(void* msg, uint16_t interf, uint8_t type, uint8_t subtype)
{
player_clone_fn_t clonefunc = NULL;
if ((clonefunc = playerxdr_get_clonefunc(interf, type, subtype)) == NULL)
return NULL;
return (*clonefunc)(msg);
}
void
playerxdr_free_message(void* msg, uint16_t interf, uint8_t type, uint8_t subtype)
{
player_free_fn_t freefunc = NULL;
if ((freefunc = playerxdr_get_freefunc(interf, type, subtype)) == NULL)
return;
(*freefunc)(msg);
}
void
playerxdr_cleanup_message(void* msg, uint16_t interf, uint8_t type, uint8_t subtype)
{
player_cleanup_fn_t cleanupfunc = NULL;
if ((cleanupfunc = playerxdr_get_cleanupfunc(interf, type, subtype)) == NULL)
return;
(*cleanupfunc)(msg);
}
|