Package: headache / 1.03-26

02_skip_begin Patch series | download
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
Author: Sylvain Le Gall <gildor@debian.org>
Description: Allow to add pattern to skip begin of file (e.g. for XML files)


diff -urNad headache-1.03~/Depend headache-1.03/Depend
--- headache-1.03~/Depend	2004-03-29 11:16:22.000000000 +0200
+++ headache-1.03/Depend	2008-04-24 17:45:39.000000000 +0200
@@ -1,11 +1,11 @@
-config_lex.cmo: config.cmo config_parse.cmi 
-config_lex.cmx: config.cmx config_parse.cmx 
-config_parse.cmo: config.cmo model.cmo config_parse.cmi 
-config_parse.cmx: config.cmx model.cmx config_parse.cmi 
-main.cmo: config.cmo config_builtin.cmo config_lex.cmo config_parse.cmi \
-    info.cmo model.cmo 
-main.cmx: config.cmx config_builtin.cmx config_lex.cmx config_parse.cmx \
-    info.cmx model.cmx 
-mkconfig.cmo: config.cmo config_lex.cmo config_parse.cmi 
-mkconfig.cmx: config.cmx config_lex.cmx config_parse.cmx 
-config_parse.cmi: model.cmo 
+config_lex.cmo: config_parse.cmi config.cmo 
+config_lex.cmx: config_parse.cmx config.cmx 
+config_parse.cmo: skip.cmo model.cmo config.cmo config_parse.cmi 
+config_parse.cmx: skip.cmx model.cmx config.cmx config_parse.cmi 
+main.cmo: model.cmo info.cmo config_parse.cmi config_lex.cmo \
+    config_builtin.cmo config.cmo 
+main.cmx: model.cmx info.cmx config_parse.cmx config_lex.cmx \
+    config_builtin.cmx config.cmx 
+mkconfig.cmo: config_parse.cmi config_lex.cmo config.cmo 
+mkconfig.cmx: config_parse.cmx config_lex.cmx config.cmx 
+config_parse.cmi: skip.cmo model.cmo 
diff -urNad headache-1.03~/Makefile.in headache-1.03/Makefile.in
--- headache-1.03~/Makefile.in	2004-03-29 11:16:22.000000000 +0200
+++ headache-1.03/Makefile.in	2008-04-24 17:46:04.000000000 +0200
@@ -15,9 +15,9 @@
 
 GENERATED= config_parse.mli config_parse.ml config_lex.ml config_builtin.ml
 
-MKCONFIG.CU=model config config_parse config_lex mkconfig
+MKCONFIG.CU=skip model config config_parse config_lex mkconfig
 MKCONFIG.CMO=$(MKCONFIG.CU:%=%.cmo)
-CU=info model config config_parse config_lex config_builtin main
+CU=info skip model config config_parse config_lex config_builtin main
 CMO=$(CU:%=%.cmo)
 
 
@@ -81,4 +81,4 @@
 		$(OCAMLYACC) -v $<
 
 
-include Depend
+-include Depend
diff -urNad headache-1.03~/config_parse.mly headache-1.03/config_parse.mly
--- headache-1.03~/config_parse.mly	2004-03-29 11:16:22.000000000 +0200
+++ headache-1.03/config_parse.mly	2008-04-24 17:45:39.000000000 +0200
@@ -49,6 +49,29 @@
 
 %{
 open Printf
+
+type entry = 
+  | EntryModel of Model.generator 
+  | EntrySkip of Skip.regexp_skip list
+;;
+
+(* Dispatch entry considering if it is a skip or a model.
+ * List returned are reversed considering their initial order.
+ *)
+let rec dispatch_entry acc_model acc_skip lst =
+  match lst with
+  | (rg_filename, EntryModel mdl) :: tl ->
+      dispatch_entry ((rg_filename, mdl) :: acc_model) acc_skip tl
+  | (rg_filename, EntrySkip rg_skip_lst) :: tl ->
+      let nacc_skip =
+        List.fold_left 
+        (fun nacc_skip rg_skip -> (rg_filename, rg_skip) :: nacc_skip) 
+        acc_skip
+        rg_skip_lst
+      in
+      dispatch_entry acc_model nacc_skip tl
+  | [] ->
+      acc_model, acc_skip
 %}
 
 %token ARROW
@@ -58,14 +81,14 @@
 %token <string> STRING
 
 %start configfile
-%type <(Str.regexp * Model.generator) list > configfile
+%type <((Str.regexp * Model.generator) list) * ((Str.regexp * Skip.regexp_skip) list)> configfile
 %start boot
 %type <(string * string * (string * string) list) list> boot
 
 %%
 
 configfile:
-  opt_pipe item_list EOF                            { List.rev $2 }
+  opt_pipe item_list EOF                            { dispatch_entry [] [] $2 }
 ;
 
 opt_pipe:
@@ -89,23 +112,41 @@
 	  raise (Config.Error (sprintf "Illegal regexp: %s" msg,
 			       Parsing.rhs_start 1, Parsing.rhs_end 1))
     in
-    let model =
-      try
-	Model.find $3
-      with
-	Not_found ->
-	  raise (Config.Error (sprintf "Unknown model: %s" $3,
-			       Parsing.rhs_start 3, Parsing.rhs_end 3))
-    in
-    let generator =
-      try
-	model (List.rev $4)
-      with
-	Model.Error msg ->
-	  raise (Config.Error (msg,
-			       Parsing.rhs_start 3, Parsing.rhs_end 4))
-    in
-    regexp, generator
+    if $3 = "skip" then
+      let fun_parameters (id, str) =
+        if id = "match" then
+          try 
+            Str.regexp ("^" ^ str ^ "$")
+          with
+            Failure msg ->
+              raise (Config.Error (sprintf "Illegal regexp: %s" msg,
+                                   Parsing.rhs_start 1, Parsing.rhs_end 1))
+        else
+          raise (Config.Error (sprintf "Unkown option '%s' for skip" id,
+                                 Parsing.rhs_start 3, Parsing.rhs_end 3))
+      in
+      let skip_lst =
+        List.map fun_parameters (List.rev $4)
+      in
+      regexp, (EntrySkip skip_lst)
+    else
+      let model =
+        try
+          Model.find $3
+        with
+          Not_found ->
+            raise (Config.Error (sprintf "Unknown model: %s" $3,
+                                 Parsing.rhs_start 3, Parsing.rhs_end 3))
+      in
+      let generator =
+        try
+          model (List.rev $4)
+        with
+          Model.Error msg ->
+            raise (Config.Error (msg,
+                                 Parsing.rhs_start 3, Parsing.rhs_end 4))
+      in
+      regexp, (EntryModel generator)
   }
 ;
 
diff -urNad headache-1.03~/main.ml headache-1.03/main.ml
--- headache-1.03~/main.ml	2008-04-24 17:45:13.000000000 +0200
+++ headache-1.03/main.ml	2008-04-24 17:45:39.000000000 +0200
@@ -25,13 +25,17 @@
 
 let generators : (Str.regexp * Model.generator) list ref = ref []
 
+let skips : (Str.regexp * Skip.regexp_skip) list ref = ref []
+
 let read_configfile filename =
   let ic = open_in filename in
   let lexbuf = Lexing.from_channel ic in
   try
-    generators := 
+    let (config_generators, config_skips) =
       (Config_parse.configfile Config_lex.token lexbuf)
-      @ !generators;
+    in
+    skips := config_skips @ !skips;
+    generators := config_generators @ !generators;
     close_in ic
   with
     Config.Error (msg, loc1, loc2) ->
@@ -44,8 +48,6 @@
 	Sys.argv.(0)
 	filename (Lexing.lexeme_start lexbuf) (Lexing.lexeme_end lexbuf)
 
-
-
 let find_generator filename =
   let basename = Filename.basename filename in
   try
@@ -61,6 +63,11 @@
 	Sys.argv.(0) filename;
       exit 2
 
+let find_skips filename = 
+  List.filter
+    (fun (rg_filename, _) -> Str.string_match rg_filename filename 0)
+    !skips
+
 
 
 (***************************************************************************)
@@ -144,12 +151,13 @@
   in
   loop ()
 
-
-
 let create_header header filename =
   let generator = find_generator filename in
+  let skip_lst = find_skips filename in
   pipe_file (fun ic oc ->
+    let () = Skip.skip skip_lst ic oc in
     let line = generator.Model.remove ic in
+    let () = Skip.skip skip_lst ic oc in
     generator.Model.create oc header;
     output_string oc line;
     copy ic oc
@@ -159,8 +167,11 @@
 
 let remove_header filename =
   let generator = find_generator filename in
+  let skip_lst = find_skips filename in
   pipe_file (fun ic oc ->
+    let () = Skip.skip skip_lst ic oc in
     let line = generator.Model.remove ic in
+    let () = Skip.skip skip_lst ic oc in
     output_string oc line;
     copy ic oc
   ) filename
diff -urNad headache-1.03~/model.ml headache-1.03/model.ml
--- headache-1.03~/model.ml	2008-04-24 17:45:13.000000000 +0200
+++ headache-1.03/model.ml	2008-04-24 17:46:04.000000000 +0200
@@ -26,11 +26,9 @@
 
 type generator =
     { remove: in_channel -> string;
-      create: out_channel -> string list -> unit
+      create: out_channel -> string list -> unit;
     } 
 
-
-
 (***************************************************************************)
 (** {2 Models} *)
 
diff -urNad headache-1.03~/skip.ml headache-1.03/skip.ml
--- headache-1.03~/skip.ml	1970-01-01 01:00:00.000000000 +0100
+++ headache-1.03/skip.ml	2008-04-24 17:46:04.000000000 +0200
@@ -0,0 +1,36 @@
+
+
+type regexp_filename = Str.regexp
+;;
+
+type regexp_skip = Str.regexp
+;;
+
+let skip skip_lst ic oc =
+  let skip_aux () =
+    let initial_pos =
+      LargeFile.pos_in ic
+    in
+    try
+      let line = 
+        input_line ic
+      in
+      try
+        let _ =
+          List.find 
+            (fun (_, rg_skip) -> Str.string_match rg_skip line 0)
+            skip_lst
+        in
+          prerr_endline 
+            ("Line : "^line^" skipped");
+          output_string oc line;
+          output_string oc "\n"
+      with Not_found ->
+        LargeFile.seek_in ic initial_pos
+    with End_of_file ->
+      ()
+  in
+    skip_aux ()
+;; 
+
+