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
|
/**********************************************************************
Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
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, 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.
***********************************************************************/
#ifndef FC__DATAIO_H
#define FC__DATAIO_H
#include "shared.h" /* bool type */
struct worklist;
struct player_diplstate;
struct requirement;
struct data_in {
const void *src;
size_t src_size, current;
bool too_short; /* set to 1 if try to read past end */
bool bad_string; /* set to 1 if received too-long string */
bool bad_bit_string; /* set to 1 if received bad bit-string */
};
struct data_out {
void *dest;
size_t dest_size, used, current;
bool too_short; /* set to 1 if try to read past end */
};
/* network string conversion */
typedef char *(*DIO_PUT_CONV_FUN) (const char *src, size_t *length);
void dio_set_put_conv_callback(DIO_PUT_CONV_FUN fun);
typedef bool(*DIO_GET_CONV_FUN) (char *dst, size_t ndst,
const char *src, size_t nsrc);
void dio_set_get_conv_callback(DIO_GET_CONV_FUN fun);
/* General functions */
void dio_output_init(struct data_out *dout, void *destination,
size_t dest_size);
void dio_output_rewind(struct data_out *dout);
size_t dio_output_used(struct data_out *dout);
void dio_input_init(struct data_in *dout, const void *src, size_t src_size);
void dio_input_rewind(struct data_in *din);
size_t dio_input_remaining(struct data_in *din);
/* gets */
void dio_get_uint8(struct data_in *din, int *dest);
void dio_get_uint16(struct data_in *din, int *dest);
void dio_get_uint32(struct data_in *din, int *dest);
void dio_get_sint8(struct data_in *din, int *dest);
void dio_get_sint16(struct data_in *din, int *dest);
#define dio_get_sint32(d,v) dio_get_uint32(d,v)
void dio_get_bool8(struct data_in *din, bool *dest);
void dio_get_bool32(struct data_in *din, bool *dest);
void dio_get_memory(struct data_in *din, void *dest, size_t dest_size);
void dio_get_string(struct data_in *din, char *dest, size_t max_dest_size);
void dio_get_bit_string(struct data_in *din, char *dest,
size_t max_dest_size);
void dio_get_tech_list(struct data_in *din, int *dest);
void dio_get_worklist(struct data_in *din, struct worklist *pwl);
void dio_get_diplstate(struct data_in *din, struct player_diplstate *pds);
void dio_get_requirement(struct data_in *din, struct requirement *preq);
void dio_get_uint8_vec8(struct data_in *din, int **values, int stop_value);
void dio_get_uint16_vec8(struct data_in *din, int **values, int stop_value);
/* Should be a function but we need some macro magic. */
#define DIO_BV_GET(pdin, bv) \
dio_get_memory((pdin), (bv).vec, sizeof((bv).vec))
/* puts */
void dio_put_uint8(struct data_out *dout, int value);
void dio_put_uint16(struct data_out *dout, int value);
void dio_put_uint32(struct data_out *dout, int value);
#define dio_put_sint8(d,v) dio_put_uint8(d,v)
#define dio_put_sint16(d,v) dio_put_uint16(d,v)
#define dio_put_sint32(d,v) dio_put_uint32(d,v)
void dio_put_bool8(struct data_out *dout, bool value);
void dio_put_bool32(struct data_out *dout, bool value);
void dio_put_memory(struct data_out *dout, const void *value, size_t size);
void dio_put_string(struct data_out *dout, const char *value);
void dio_put_bit_string(struct data_out *dout, const char *value);
void dio_put_city_map(struct data_out *dout, const char *value);
void dio_put_tech_list(struct data_out *dout, const int *value);
void dio_put_worklist(struct data_out *dout, const struct worklist *pwl);
void dio_put_diplstate(struct data_out *dout,
const struct player_diplstate *pds);
void dio_put_requirement(struct data_out *dout, const struct requirement *preq);
void dio_put_uint8_vec8(struct data_out *dout, int *values, int stop_value);
void dio_put_uint16_vec8(struct data_out *dout, int *values, int stop_value);
/* Should be a function but we need some macro magic. */
#define DIO_BV_PUT(pdout, bv) \
dio_put_memory((pdout), (bv).vec, sizeof((bv).vec))
#endif /* FC__PACKETS_H */
|