r8195: - fixed handling of simple arrays. To keep the logic simple, I moved to making...
[tprouty/samba.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
25 };
26
27 typedef NTSTATUS (*ejs_pull_t)(struct ejs_rpc *, struct MprVar *, const char *, void *);
28 typedef NTSTATUS (*ejs_push_t)(struct ejs_rpc *, struct MprVar *, const char *, const void *);
29 typedef NTSTATUS (*ejs_pull_function_t)(struct ejs_rpc *, struct MprVar *, void *);
30 typedef NTSTATUS (*ejs_push_function_t)(struct ejs_rpc *, struct MprVar *, const void *);
31
32 int ejs_rpc_call(int eid, int argc, struct MprVar **argv, const char *callname,
33                  ejs_pull_function_t ejs_pull, ejs_push_function_t ejs_push);
34
35 NTSTATUS ejs_pull_rpc(struct MprVar *v, void *ptr, ejs_pull_function_t ejs_pull);
36 NTSTATUS ejs_push_rpc(struct MprVar *v, const void *ptr, ejs_push_function_t ejs_push);
37 NTSTATUS ejs_pull_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
38 NTSTATUS ejs_push_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
39
40 NTSTATUS ejs_pull_uint8(struct ejs_rpc *ejs, 
41                         struct MprVar *v, const char *name, uint8_t *r);
42 NTSTATUS ejs_push_uint8(struct ejs_rpc *ejs, 
43                         struct MprVar *v, const char *name, const uint8_t *r);
44 NTSTATUS ejs_pull_uint16(struct ejs_rpc *ejs, 
45                          struct MprVar *v, const char *name, uint16_t *r);
46 NTSTATUS ejs_push_uint16(struct ejs_rpc *ejs, 
47                          struct MprVar *v, const char *name, const uint16_t *r);
48 NTSTATUS ejs_pull_uint32(struct ejs_rpc *ejs, 
49                          struct MprVar *v, const char *name, uint32_t *r);
50 NTSTATUS ejs_push_uint32(struct ejs_rpc *ejs, 
51                          struct MprVar *v, const char *name, const uint32_t *r);
52 NTSTATUS ejs_pull_hyper(struct ejs_rpc *ejs, 
53                         struct MprVar *v, const char *name, uint64_t *r);
54 NTSTATUS ejs_push_hyper(struct ejs_rpc *ejs, 
55                         struct MprVar *v, const char *name, const uint64_t *r);
56 NTSTATUS ejs_pull_enum(struct ejs_rpc *ejs, 
57                        struct MprVar *v, const char *name, unsigned *r);
58 NTSTATUS ejs_push_enum(struct ejs_rpc *ejs, 
59                        struct MprVar *v, const char *name, const unsigned *r);
60 NTSTATUS ejs_pull_array(struct ejs_rpc *ejs, 
61                         struct MprVar *v, const char *name, uint32_t length,
62                         size_t elsize, void **r, ejs_pull_t ejs_pull);
63 NTSTATUS ejs_push_array(struct ejs_rpc *ejs, 
64                         struct MprVar *v, const char *name, uint32_t length,
65                         size_t elsize, void *r, ejs_push_t ejs_push);
66