r8213: I've started to understand the LEVELS stuff in pidl much better now,
[bbaumbach/samba-autobuild/.git] / source4 / scripting / ejs / ejsrpc.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    ejs <-> rpc interface definitions
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 struct ejs_rpc {
24         int eid;
25         const char *callname;
26         /* as ejs does only one pass, we can use a single var for switch 
27            handling */
28         uint32_t switch_var;
29 };
30
31 typedef NTSTATUS (*ejs_pull_t)(struct ejs_rpc *, struct MprVar *, const char *, void *);
32 typedef NTSTATUS (*ejs_push_t)(struct ejs_rpc *, struct MprVar *, const char *, const void *);
33 typedef NTSTATUS (*ejs_pull_function_t)(struct ejs_rpc *, struct MprVar *, void *);
34 typedef NTSTATUS (*ejs_push_function_t)(struct ejs_rpc *, struct MprVar *, const void *);
35
36 NTSTATUS ejs_panic(struct ejs_rpc *ejs, const char *why);
37 void ejs_set_switch(struct ejs_rpc *ejs, uint32_t switch_var);
38
39 int ejs_rpc_call(int eid, int argc, struct MprVar **argv, const char *callname,
40                  ejs_pull_function_t ejs_pull, ejs_push_function_t ejs_push);
41
42 NTSTATUS ejs_pull_rpc(int eid, const char *callname, struct MprVar *v, void *ptr, ejs_pull_function_t ejs_pull);
43 NTSTATUS ejs_push_rpc(int eid, const char *callname, struct MprVar *v, const void *ptr, ejs_push_function_t ejs_push);
44 NTSTATUS ejs_pull_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
45 NTSTATUS ejs_push_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
46
47 NTSTATUS ejs_pull_uint8(struct ejs_rpc *ejs, 
48                         struct MprVar *v, const char *name, uint8_t *r);
49 NTSTATUS ejs_push_uint8(struct ejs_rpc *ejs, 
50                         struct MprVar *v, const char *name, const uint8_t *r);
51 NTSTATUS ejs_pull_uint16(struct ejs_rpc *ejs, 
52                          struct MprVar *v, const char *name, uint16_t *r);
53 NTSTATUS ejs_push_uint16(struct ejs_rpc *ejs, 
54                          struct MprVar *v, const char *name, const uint16_t *r);
55 NTSTATUS ejs_pull_uint32(struct ejs_rpc *ejs, 
56                          struct MprVar *v, const char *name, uint32_t *r);
57 NTSTATUS ejs_push_uint32(struct ejs_rpc *ejs, 
58                          struct MprVar *v, const char *name, const uint32_t *r);
59 NTSTATUS ejs_pull_hyper(struct ejs_rpc *ejs, 
60                         struct MprVar *v, const char *name, uint64_t *r);
61 NTSTATUS ejs_push_hyper(struct ejs_rpc *ejs, 
62                         struct MprVar *v, const char *name, const uint64_t *r);
63 NTSTATUS ejs_pull_enum(struct ejs_rpc *ejs, 
64                        struct MprVar *v, const char *name, unsigned *r);
65 NTSTATUS ejs_push_enum(struct ejs_rpc *ejs, 
66                        struct MprVar *v, const char *name, const unsigned *r);
67 NTSTATUS ejs_pull_array(struct ejs_rpc *ejs, 
68                         struct MprVar *v, const char *name, uint32_t length,
69                         size_t elsize, void **r, ejs_pull_t ejs_pull);
70 NTSTATUS ejs_pull_string(struct ejs_rpc *ejs, 
71                          struct MprVar *v, const char *name, char **s);
72 NTSTATUS ejs_push_string(struct ejs_rpc *ejs, 
73                          struct MprVar *v, const char *name, const char *s);