server.idl 8.03 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * A simple interface to test the RPC server.
 *
 * Copyright (C) Google 2007 (Dan Hipschman)
 *
 * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

21 22
#include "server_defines.h"

23 24 25 26 27 28 29
typedef struct tag_vector
{
  int x;
  int y;
  int z;
} vector_t;

30 31
typedef int fnprintf(const char *format, ...);

32 33 34 35 36 37
[
  uuid(00000000-4114-0704-2301-000000000000),
  implicit_handle(handle_t IServer_IfHandle)
]
interface IServer
{
38 39 40 41 42 43 44
cpp_quote("#if 0")
  typedef wchar_t WCHAR;
cpp_quote("#endif")

  typedef [string] char *str_t;
  typedef [string] WCHAR *wstr_t;

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
  typedef struct
  {
    int *pi;
    int **ppi;
    int ***pppi;
  } pints_t;

  typedef struct
  {
    char *pc;
    short *ps;
    long *pl;
    float *pf;
    double *pd;
  } ptypes_t;

61 62 63 64 65 66
  typedef struct
  {
    vector_t *pu;
    vector_t **pv;
  } pvectors_t;

67 68 69 70 71 72
  typedef struct
  {
    [switch_is(s)] union
    {
      [case(SUN_I)] int i;
      [case(SUN_F1, SUN_F2)] float f;
73
      [case(SUN_PI)] int *pi;
74 75 76 77 78
    } u;

    int s;
  } sun_t;

79 80 81
  int int_return(void);
  int square(int x);
  int sum(int x, int y);
82 83 84 85 86 87 88
  signed char sum_char(signed char x, signed char y);
  short sum_short(short x, short y);
  int sum_float(float x, float y);
  int sum_double_int(int x, double y);
  hyper sum_hyper(hyper x, hyper y);
  int sum_hyper_int(hyper x, hyper y);
  int sum_char_hyper(signed char x, hyper y);
89 90 91
  void square_out(int x, [out] int *y);
  void square_ref([in, out] int *x);
  int str_length([string] const char *s);
92
  int str_t_length(str_t s);
93
  int cstr_length([string, size_is(n)] const char *s, int n);
94 95 96 97
  int dot_self(vector_t *v);
  double square_half(double x, [out] double *y);
  float square_half_float(float x, [out] float *y);
  long square_half_long(long x, [out] long *y);
98
  int sum_fixed_array(int a[5]);
99 100
  int pints_sum(pints_t *pints);
  double ptypes_sum(ptypes_t *ptypes);
101
  int dot_pvectors(pvectors_t *pvectors);
102 103 104 105 106 107 108 109 110 111 112 113 114 115

  /* don't use this anywhere except in sp_t */
  typedef struct
  {
    int x;
  } sp_inner_t;

  typedef struct
  {
    int x;
    sp_inner_t *s;
  } sp_t;

  int sum_sp(sp_t *sp);
116
  double square_sun(sun_t *su);
117 118 119 120 121 122

  typedef struct test_list
  {
    int t;
    [switch_is(t)] union
    {
123
      [case(TL_NULL)] char x;  /* end of list */
124 125 126 127
      [case(TL_LIST)] struct test_list *tail;
    } u;
  } test_list_t;

128 129
  typedef [ref] int *refpint_t;

130
  int test_list_length(test_list_t *ls);
131 132
  int sum_fixed_int_3d(int m[2][3][4]);
  int sum_conf_array([size_is(n)] int x[], int n);
133
  int sum_conf_ptr_by_conf_ptr(int n1, [size_is(n1)] int *n2_then_x1, [size_is(*n2_then_x1)] int *x2);
134 135
  int sum_unique_conf_array([size_is(n), unique] int x[], int n);
  int sum_unique_conf_ptr([size_is(n), unique] int *x, int n);
136 137
  int sum_var_array([length_is(n)] int x[20], int n);
  int dot_two_vectors(vector_t vs[2]);
138
  void get_number_array([out, length_is(*n)] int x[20], [out] int *n);
139 140 141 142 143 144 145

  typedef struct
  {
    int n;
    [size_is(n)] int ca[];
  } cs_t;

146 147 148 149 150 151 152 153
  typedef struct
  {
    int *pn;
    [size_is(*pn)] int *ca1;
    [size_is(n * 2)] int *ca2;
    int n;
  } cps_t;

154 155 156 157 158 159 160 161
  typedef struct
  {
    [size_is(c ? a : b)] int *ca;
    int a;
    int b;
    int c;
  } cpsc_t;

162
  int sum_cs(cs_t *cs);
163
  int sum_cps(cps_t *cps);
164
  int sum_cpsc(cpsc_t *cpsc);
165
  int get_cpsc(int n, [out] cpsc_t *cpsc );
166
  int sum_complex_array(int n, [size_is(n)] refpint_t pi[]);
167

168 169
  typedef [wire_marshal(int)] void *puint_t;
  int square_puint(puint_t p);
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

  typedef struct
  {
    [size_is(n)] puint_t *ps;
    int n;
  } puints_t;

  /* Same thing as puints_t, but make it complex (needs padding).  */
  typedef struct
  {
    [size_is(n)] puint_t *ps;
    char n;
  } cpuints_t;

  int sum_puints(puints_t *p);
  int sum_cpuints(cpuints_t *p);
186
  int dot_copy_vectors(vector_t u, vector_t v);
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

  typedef struct wire_us *wire_us_t;
  typedef [wire_marshal(wire_us_t)] struct us us_t;
  struct us
  {
    void *x;
  };
  struct wire_us
  {
    int x;
  };
  typedef struct
  {
    us_t us;
  } test_us_t;

  int square_test_us(test_us_t *tus);
204 205 206 207 208 209 210

  typedef union encu switch (int t)
  {
  case ENCU_I: int i;
  case ENCU_F: float f;
  } encu_t;

211 212 213 214 215 216
  typedef [switch_type(int)] union unencu
  {
    [case (ENCU_I)] int i;
    [case (ENCU_F)] float f;
  } unencu_t;

217 218 219 220 221 222 223 224
  typedef enum
  {
    E1 = 23,
    E2 = 4,
    E3 = 0,
    E4 = 64
  } e_t;

225 226 227 228 229 230
  typedef union encue switch (e_t t)
  {
  case E1: int i1;
  case E2: float f2;
  } encue_t;

231 232 233 234 235
  typedef struct
  {
    e_t f;
  } se_t;

236
  double square_encu(encu_t *eu);
237
  double square_unencu(int t, [switch_is(t)] unencu_t *eu);
238 239
  int sum_parr(int *a[3]);
  int sum_pcarr([size_is(n)] int *a[], int n);
240
  int enum_ord(e_t e);
241
  double square_encue(encue_t *eue);
242
  void check_se2(se_t *s);
243 244 245 246

  int sum_toplev_conf_2n([size_is(n * 2)] int *x, int n);
  int sum_toplev_conf_cond([size_is(c ? a : b)] int *x, int a, int b, int c);

247 248 249 250 251 252 253 254 255 256
  typedef struct
  {
    char c;
    int i;
    short s;
    double d;
  } aligns_t;

  double sum_aligns(aligns_t *a);

257 258 259 260 261 262 263
  typedef struct
  {
    int i;
    char c;
  } padded_t;

  int sum_padded(padded_t *p);
264
  int sum_padded2(padded_t ps[2]);
265
  int sum_padded_conf([size_is(n)] padded_t *ps, int n);
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280
  typedef struct
  {
    int *p1;
  } bogus_helper_t;

  typedef struct
  {
    bogus_helper_t h;
    int *p2;
    int *p3;
    char c;
  } bogus_t;

  int sum_bogus(bogus_t *b);
281
  void check_null([unique] int *null);
282

283 284 285 286 287 288 289 290 291 292 293 294 295
  typedef struct
  {
    str_t s;
  } str_struct_t;

  typedef struct
  {
    wstr_t s;
  } wstr_struct_t;

  int str_struct_len(str_struct_t *s);
  int wstr_struct_len(wstr_struct_t *s);

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
  typedef struct
  {
    unsigned int n;
    [size_is(n)] byte a[];
  } doub_carr_1_t;

  typedef struct
  {
    int n;
    [size_is(n)] doub_carr_1_t *a[];
  } doub_carr_t;

  int sum_doub_carr(doub_carr_t *dc);
  void make_pyramid_doub_carr(unsigned char n, [out] doub_carr_t **dc);

311 312 313 314
  typedef struct
  {
    short n;
    [size_is(n)] short data[];
315
  } user_bstr_t;
316

317
  typedef [unique] user_bstr_t *wire_bstr_t;
318 319
  typedef [wire_marshal(wire_bstr_t)] short *bstr_t;
  unsigned hash_bstr(bstr_t s);
320
  void get_a_bstr([out]bstr_t *s);
321 322 323 324 325 326 327
  typedef struct
  {
    [string, size_is(size)] char *name;
    unsigned int size;
  } name_t;
  void get_name([in,out] name_t *name);

328
  int sum_pcarr2(int n, [size_is(, n)] int **pa);
329
  int sum_L1_norms(int n, [size_is(n)] vector_t *vs);
330

331 332 333 334 335 336 337 338 339 340 341 342
  /* Don't use this except in the get_s123 test.  */
  typedef struct
  {
    int f1;
    int f2;
    int f3;
  } s123_t;

  /* Make sure WIDL generates a type format string for a previously unseen
     type as a return value.  */
  s123_t *get_s123(void);

343 344 345 346 347 348 349
  typedef struct
  {
    unsigned int length;
    unsigned int size;
    [size_is(size), length_is(length)] pints_t numbers[];
  } numbers_struct_t;

350
  void get_numbers([in] int length, [in] int size, [out, length_is(length), size_is(size)] pints_t pn[]);
351 352
  void get_numbers_struct([out] numbers_struct_t **ns);

353
  str_t get_filename(void);
354 355 356 357 358 359 360 361 362 363 364 365

  enum renum
  {
    RE0,
    RE1,
    RE2,
    RE3,
  };
  const int RE_MIN = RE0;
  const int RE_MAX = RE3;
  typedef [range(RE_MIN, RE_MAX)] enum renum renum_t;
  typedef [range(0, 100)] int rint_t;
366 367
  rint_t echo_ranged_int([range(0, 10)] int i, [range(0, 20)] int j, [range(0, 100)] int k);
  rint_t echo_ranged_int2([range(0, 40)] int i);
368 369
  void get_ranged_enum([out] renum_t *re);

370
  void context_handle_test(void);
371 372 373 374

  void full_pointer_test([in, ptr] int *a, [in, ptr] int *b);
  void full_pointer_null_test([in, ptr] int *a, [in, ptr] int *b);

375 376
  void authinfo_test(unsigned int protseq, int secure);

377 378
  void stop(void);
}