summaryrefslogtreecommitdiff
path: root/source4/build/pidl/parser.pm
blob: 9ba5b4b66cc1e4e2c47695b62c244de13e1bce2f (plain)
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
###################################################
# Ethereal parser generator for IDL structures
# Copyright tpot@samba.org 2001
# Copyright tridge@samba.org 2000
# released under the GNU GPL

package IdlParser;

use Data::Dumper;

my($res);

#####################################################################
# parse a properties list
sub ParseProperties($)
{
    my($props) = shift;
    foreach my $d (@{$props}) {
	if (ref($d) ne "HASH") {
	    $res .= "[$d] ";
	} else {
	    foreach my $k (keys %{$d}) {
		$res .= "[$k($d->{$k})] ";
	    }
	}
    }
}

#####################################################################
# parse an array - called in buffers context
sub ParseArray($)
{
	die "arrays not done";
}


#####################################################################
# parse scalars in a structure element
sub ParseElementPushScalars($$)
{
	my($elt) = shift;
	my($var_prefix) = shift;

	if (defined $elt->{VALUE}) {
		$res .= "\tNDR_CHECK(ndr_push_$elt->{TYPE}(ndr, $elt->{VALUE}));\n";
	} elsif ($elt->{POINTERS} && 
		 !util::has_property($elt->{PROPERTIES}, "ref")) {
		$res .= "\tNDR_CHECK(ndr_push_ptr(ndr, $var_prefix$elt->{NAME}));\n";
	} else {
		$res .= "\tNDR_CHECK(ndr_push_$elt->{TYPE}(ndr, $var_prefix$elt->{NAME}));\n";
	}
}

#####################################################################
# parse buffers in a structure element
sub ParseElementPushBuffers($$)
{
	my($elt) = shift;
	my($var_prefix) = shift;

	if (util::has_property($elt->{PROPERTIES}, "ref")) {
		return;
	}

	if (util::is_scalar_type($elt->{TYPE}) && !$elt->{POINTERS}) {
		return;
	}

	if ($elt->{POINTERS}) {
		$res .= "\tif ($var_prefix$elt->{NAME}) {\n\t";
	}
	    
	if (util::has_property($elt->{PROPERTIES}, "size_is")) {
		ParseArray($elt);
	} else {
		if (util::is_scalar_type($elt->{TYPE})) {
			$res .= "\tNDR_CHECK(ndr_push_$elt->{TYPE}(ndr, *$var_prefix$elt->{NAME}));\n";
		} else {
			$res .= "\tNDR_CHECK(ndr_push_$elt->{TYPE}(ndr, $var_prefix$elt->{NAME}));\n";
		}
	}

	if ($elt->{POINTERS}) {
		$res .= "\t}\n";
	}	
}

#####################################################################
# parse a struct
sub ParseStructPush($)
{
	my($struct) = shift;
	my($struct_len);

	if (! defined $struct->{ELEMENTS}) {
		return;
	}

	# see if we have a structure length
	foreach my $e (@{$struct->{ELEMENTS}}) {
		if (util::has_property($e->{PROPERTIES}, "struct_len")) {
			$struct_len = $e;
			$e->{VALUE} = "0";
		}
	}	

	if (defined $struct_len) {
		$res .= "\tstruct ndr_push_save len_save1, len_save2, len_save3;\n";
		$res .= "\tndr_push_save(ndr, &len_save1);\n";
	}

	foreach my $e (@{$struct->{ELEMENTS}}) {
		if ($e == $struct_len) {
			$res .= "\tNDR_CHECK(ndr_push_align_$e->{TYPE}(ndr));\n";
			$res .= "\tndr_push_save(ndr, &len_save2);\n";
		}
		ParseElementPushScalars($e, "r->");
	}	

	foreach my $e (@{$struct->{ELEMENTS}}) {
		ParseElementPushBuffers($e, "r->");
	}

	if (defined $struct_len) {
		$res .= "\tndr_push_save(ndr, &len_save3);\n";
		$res .= "\tndr_push_restore(ndr, &len_save2);\n";
		$struct_len->{VALUE} = "len_save3.offset - len_save1.offset";
		ParseElementPushScalars($struct_len, "r->");
		$res .= "\tndr_push_restore(ndr, &len_save3);\n";
	}
}


#####################################################################
# parse a union element
sub ParseUnionElementPush($)
{
	die "unions not done";
}

#####################################################################
# parse a union
sub ParseUnionPush($)
{
	die "unions not done";	
}

#####################################################################
# parse a type
sub ParseTypePush($)
{
    my($data) = shift;

    if (ref($data) eq "HASH") {
	($data->{TYPE} eq "STRUCT") &&
	    ParseStructPush($data);
	($data->{TYPE} eq "UNION") &&
	    ParseUnionPush($data);
    } else {
	$res .= "$data";
    }
}

#####################################################################
# parse a typedef
sub ParseTypedefPush($)
{
    my($typedef) = shift;

    $res .= "static NTSTATUS ndr_push_$typedef->{NAME}(struct ndr_push *ndr, struct $typedef->{NAME} *r)";
    $res .= "\n{\n";
    ParseTypePush($typedef->{DATA});
    $res .= "\treturn NT_STATUS_OK;\n";
    $res .= "}\n\n";
}

#####################################################################
# parse a function
sub ParseFunctionPushArg($$)
{ 
	my($arg) = shift;
	my($io) = shift;		# "in" or "out"

	if (!util::has_property($arg->{PROPERTIES}, $io)) {
		return;
	}

	ParseElementPushScalars($arg, "r->in.");
	ParseElementPushBuffers($arg, "r->in.");
}
    
#####################################################################
# parse a function
sub ParseFunctionPush($)
{ 
    my($function) = shift;

    # Input function
    $res .= "NTSTATUS ndr_push_$function->{NAME}(struct ndr_push *ndr, struct $function->{NAME} *r)\n{\n";

    foreach my $arg (@{$function->{DATA}}) {
	ParseFunctionPushArg($arg, "in");
    }
    
    $res .= "\n\treturn NT_STATUS_OK;\n}\n\n";
}

#####################################################################
# parse a function
sub ParseFunctionPull($)
{ 
}

#####################################################################
# parse a function
sub ParseFunction($)
{
	my $i = shift;
	ParseFunctionPush($i);
	ParseFunctionPull($i);
}

#####################################################################
# parse the interface definitions
sub ParseInterface($)
{
    my($interface) = shift;
    my($data) = $interface->{DATA};
    foreach my $d (@{$data}) {
	($d->{TYPE} eq "TYPEDEF") &&
	    ParseTypedefPush($d);
	($d->{TYPE} eq "FUNCTION") && 
	    ParseFunction($d);
    }
}


#####################################################################
# parse a parsed IDL structure back into an IDL file
sub Parse($)
{
    my($idl) = shift;
    $res = "/* parser auto-generated by pidl */\n\n";
    foreach my $x (@{$idl}) {
	($x->{TYPE} eq "INTERFACE") && 
	    ParseInterface($x);
    }
    return $res;
}

1;