summaryrefslogtreecommitdiff
path: root/source4/build/pidl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-01-09 05:31:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:08:33 -0500
commit95b84ceeaa66ccca8eb543e0e2aa029c6b32781b (patch)
tree839f33c42d796a72aa7d118604a8eae1037df7d8 /source4/build/pidl
parent4e73b4b222f9977f006002b945c21fddc72a3b05 (diff)
downloadsamba-95b84ceeaa66ccca8eb543e0e2aa029c6b32781b.tar.gz
samba-95b84ceeaa66ccca8eb543e0e2aa029c6b32781b.tar.bz2
samba-95b84ceeaa66ccca8eb543e0e2aa029c6b32781b.zip
r4613: Fix stuff I broke in the last commit with the /x regexp flag.
(This used to be commit 20f9143221021ab050802d6aed359677bee978ed)
Diffstat (limited to 'source4/build/pidl')
-rw-r--r--source4/build/pidl/eparser.pm89
1 files changed, 45 insertions, 44 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm
index 3d0253e47b..d288a3b045 100644
--- a/source4/build/pidl/eparser.pm
+++ b/source4/build/pidl/eparser.pm
@@ -343,7 +343,8 @@ sub RewriteHeader($$$)
# Rewrite librpc includes
- s/^\#include \"librpc\/gen_ndr\/ndr_(.*?).h\"$/\#include \"packet-dcerpc-$1.h\"/smg;
+ s/^\#include\ \"librpc\/gen_ndr\/ndr_(.*?).h\"$
+ /\#include \"packet-dcerpc-$1.h\"/smgx;
# Convert samba fixed width types to stdint types
@@ -440,8 +441,7 @@ sub RewriteC($$$)
# they are also not very interesting.
s/^static const struct dcerpc_interface_call .*?^\};\n\n//smg;
- s/^static const char \* const
- ([a-z]+)_endpoint_strings.*?^\};\n\n//smgx;
+ s/^static const char \* const ([a-z]+)_endpoint_strings.*?^\};\n\n//smgx;
s/^static const struct dcerpc_endpoint_list .*?^\};\n\n\n//smg;
s/^const struct dcerpc_interface_table .*?^\};\n\n//smg;
s/^static NTSTATUS dcerpc_ndr_([a-z]+)_init.*?^\}\n\n//smg;
@@ -459,32 +459,32 @@ sub RewriteC($$$)
# Add proto tree and hf argument to ndr_pull_ptr() calls.
- s/(ndr_pull_ptr\(ndr, ([^\)]*?)\);)/
- ndr_pull_ptr(ndr, tree, hf_ptr, $2);/smgx;
+ s/(ndr_pull_ptr\(ndr,\ ([^\)]*?)\);)
+ /ndr_pull_ptr(ndr, tree, hf_ptr, $2);/smgx;
# Wrap ndr_pull_array_size() and ndr_pull_array_length()
# functions. Add leading space in front of first parameter so
# we won't get caught by later regexps.
- s/(ndr_pull_array_(size|length)\(ndr, ([^\)]*?)\);)/
- ndr_pull_array_$2( ndr, tree, $3);/smgx;
+ s/(ndr_pull_array_(size|length)\(ndr,\ ([^\)]*?)\);)
+ /ndr_pull_array_$2( ndr, tree, $3);/smgx;
# Add tree argument to ndr_pull_array() and
# ndr_pull_array_foo() calls.
s/(ndr_pull_array\(
- ndr,
- ([^,]*?), # NDR_SCALARS etc
- (\(void \*\*\)r->(in|out|)\.?([^,]*?)), # Pointer to array entries
- ([^\)].*?)\);)/ # All other arguments
- ndr_pull_array( ndr, $2, tree, $3, $6);/smgx;
-
- s/(ndr_pull_array_([^\(]*?)\(
- ndr,
- ([^,]*?), # NDR_SCALARS etc
- (r->((in|out).)?([^,]*?)), # Pointer to array elements
- (.*?)\);)/ # Number of elements
- ndr_pull_array_$2( ndr, $3, tree, hf_$7_$2_array, $4, $8);/smgx;
+ ndr,\
+ ([^,]*?),\ # NDR_SCALARS etc
+ (\(void\ \*\*\)r->(in|out|)\.?([^,]*?)),\ # Pointer to array entries
+ ([^\)].*?)\);) # All other arguments
+ /ndr_pull_array( ndr, $2, tree, $3, $6);/smgx;
+
+ s/(ndr_pull_array_([^\(]*?)\(
+ ndr,\
+ ([^,]*?),\ # NDR_SCALARS etc
+ (r->((in|out).)?([^,]*?)),\ # Pointer to array elements
+ (.*?)\);) # Number of elements
+ /ndr_pull_array_$2( ndr, $3, tree, hf_$7_$2_array, $4, $8);/smgx;
# Save ndr_pull_relative{1,2}() calls from being wrapped by the
# proceeding regexp by adding a leading space.
@@ -498,21 +498,21 @@ sub RewriteC($$$)
# ndr_pull_uint32(ndr, &r->in.access_mask);
# ndr_pull_uint32(ndr, &r->idx);
- s/(ndr_pull_([^\)]*?)\(
- ndr,
+ s/(ndr_pull_([^\)]*?)
+ \(ndr,\
(&?r->((in|out)\.)? # Function args contain leading junk
([^\)]*?)) # Element name
- \);)/
- ndr_pull_$2(ndr, tree, hf_$6_$2, $3);/smgx;
+ \);)
+ /ndr_pull_$2(ndr, tree, hf_$6_$2, $3);/smgx;
# Add tree and hf argument to pulls of "internal" scalars like
# array sizes, levels, etc.
s/(ndr_pull_(uint32|uint16)\(
- ndr,
+ ndr,\
(&_([^\)]*?)) # Internal arg names have leading underscore
- \);)/
- ndr_pull_$2(ndr, tree, hf_$4, $3);/smgx;
+ \);)
+ /ndr_pull_$2(ndr, tree, hf_$4, $3);/smgx;
# Add subtree argument to calls dissecting structures, e.g
#
@@ -520,20 +520,21 @@ sub RewriteC($$$)
# ndr_pull_atsvc_enum_ctr(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.ctr);
s/(ndr_pull_([^\)]*?)\(
- ndr,
- (NDR_[^,]*?),
- ([^\(].*?)\);)/
- ndr_pull_$2(ndr, $3, get_subtree(tree, \"$2\", ndr, ett_$2), $4);/smgx;
+ ndr,\
+ (NDR_[^,]*?),\
+ ([^\(].*?)\);)
+ /ndr_pull_$2(ndr, $3, get_subtree(tree, \"$2\", ndr, ett_$2), $4);
+ /smgx;
# Add proto_tree parameter to pull function prototypes, e.g
#
# static NTSTATUS ndr_pull_atsvc_JobInfo(struct ndr_pull *ndr,
# int ndr_flags, struct atsvc_JobInfo *r)
- s/^((static )?NTSTATUS ndr_pull_([^\(]*?)\(
- struct ndr_pull \*ndr,
- int (ndr_)?flags)/
- $1, proto_tree \*tree/smgx;
+ s/^((static\ )?NTSTATUS\ ndr_pull_([^\(]*?)\(
+ struct\ ndr_pull\ \*ndr,\
+ int\ (ndr_)?flags)
+ /$1, proto_tree \*tree/smgx;
# Add proto_tree parameter to ndr_pull_subcontext_flags_fn()
@@ -557,24 +558,24 @@ sub RewriteC($$$)
# Fix some internal variable declarations
s/uint(16|32) _level/uint$1_t _level/smg;
- s/ndr_pull_([^\(]*)\(ndr, tree, hf_level, &_level\);/
- ndr_pull_$1(ndr, tree, hf_level_$1, &_level);/smgx;
+ s/ndr_pull_([^\(]*)\(ndr,\ tree,\ hf_level,\ &_level\);
+ /ndr_pull_$1(ndr, tree, hf_level_$1, &_level);/smgx;
# Enums
- s/(^static NTSTATUS ndr_pull_(.+?), (enum .+?)\))/
- static NTSTATUS ndr_pull_$2, pidl_tree *tree, int hf, $3)/smgx;
+ s/(^static\ NTSTATUS\ ndr_pull_(.+?),\ (enum .+?)\))
+ /static NTSTATUS ndr_pull_$2, pidl_tree *tree, int hf, $3)/smgx;
s/uint(8|16|32) v;/uint$1_t v;/smg;
- s/(ndr_pull_([^\)]*?)\(ndr, &v\);)/
- ndr_pull_$2(ndr, tree, hf, &v);/smgx;
+ s/(ndr_pull_([^\)]*?)\(ndr,\ &v\);)
+ /ndr_pull_$2(ndr, tree, hf, &v);/smgx;
- s/(ndr_pull_([^\(]+?)\(ndr, &_level\);)/
- ndr_pull_$2(ndr, tree, hf_$2, &_level);/smgx;
+ s/(ndr_pull_([^\(]+?)\(ndr,\ &_level\);)
+ /ndr_pull_$2(ndr, tree, hf_$2, &_level);/smgx;
# Bitmaps
- s/(^NTSTATUS ndr_pull_(.+?), uint32 \*r\))/
- NTSTATUS ndr_pull_$2, pidl_tree *tree, int hf, uint32_t *r)/smgx;
+ s/(^NTSTATUS\ ndr_pull_(.+?),\ uint32\ \*r\))
+ /NTSTATUS ndr_pull_$2, pidl_tree *tree, int hf, uint32_t *r)/smgx;
pidl $_;
}