resources/RooUsage.txt
[app.Builder.js] / src / JsRender / NodeToVala.vala
1 /**
2  * 
3  * Code to convert node tree to Vala...
4  * 
5  * usage : x = (new JsRender.NodeToVala(node)).munge();
6  * 
7  * 
8  * 
9  * 
10  * 
11 */
12
13
14
15
16 public class JsRender.NodeToVala : Object {
17
18         Node node;
19
20         int depth;
21         string inpad;
22         string pad;
23         string ipad;
24         string cls;
25         string xcls;
26         
27         string ret;
28         
29         int cur_line;
30
31         Gee.ArrayList<string> ignoreList;
32         Gee.ArrayList<string> ignoreWrappedList; 
33         Gee.ArrayList<string> myvars;
34         Gee.ArrayList<Node> vitems; // top level items
35         NodeToVala top;
36         JsRender file;
37         
38         /* 
39          * ctor - just initializes things
40          * - wraps a render node 
41          */
42         public NodeToVala( Node node,  int depth, NodeToVala? parent) 
43         {
44
45                 
46                 this.node = node;
47                 this.depth = depth;
48                 this.inpad = string.nfill(depth > 0 ? 4 : 0, ' ');
49                 this.pad = this.inpad + "    ";
50                 this.ipad = this.inpad + "        ";
51                 this.cls = node.xvala_cls;
52                 this.xcls = node.xvala_xcls;
53                 this.ret = "";
54                 this.cur_line = parent == null ? 0 : parent.cur_line;
55                 
56                 
57                 this.top = parent == null ? this : parent.top;
58                 this.ignoreList = new Gee.ArrayList<string>();
59                 this.ignoreWrappedList  = new Gee.ArrayList<string>();
60                 this.myvars = new Gee.ArrayList<string>();
61                 this.vitems = new Gee.ArrayList<Node>();
62                 this.file = null;
63                 
64                 // initialize line data..
65                 node.line_start = this.cur_line;
66                 node.line_end  = this.cur_line;
67                 node.lines = new Gee.ArrayList<int>();
68                 node.line_map = new Gee.HashMap<int,string>();
69                 if (parent == null) {
70                         node.node_lines = new Gee.ArrayList<int>();
71                         node.node_lines_map = new Gee.HashMap<int,Node>();
72                  }
73                 
74         }
75
76         public int vcnt = 0;
77         string toValaNS(Node item)
78         {
79                 var ns = item.get("xns") ;
80                 if (ns == "GtkSource") {
81                         return "Gtk.Source";
82                 }
83                 return ns + ".";
84         }
85         public void  toValaName(Node item, int depth =0) 
86         {
87                 this.vcnt++;
88
89                 var ns =  this.toValaNS(item) ;
90                 var cls = ns + item.get("xtype");
91                 
92                 
93                 item.xvala_cls = cls;
94                 
95                 
96                 string id = item.get("id").length > 0 ?
97                         item.get("id") :  "%s%d".printf(item.get("xtype"), this.vcnt);
98
99                 
100                 
101                 
102                 if (id[0] == '*' || id[0] == '+') {
103                         item.xvala_xcls = "Xcls_" + id.substring(1);
104                 } else {
105                         item.xvala_xcls = "Xcls_" + id;
106                 }
107                         
108                 
109                 item.xvala_id =  id;
110                 if (depth > 0) {                        
111                         this.vitems.add(item);
112                 } else if (!item.props.has_key("id")) {
113                         // use the file name..
114                         item.xvala_xcls =  this.file.name;
115                         // is id used?
116                         item.xvala_id = this.file.name;
117
118                 }
119                 // loop children..
120                                                                                                                            
121                 if (item.items.size < 1) {
122                         return;
123                 }
124                 for(var i =0;i<item.items.size;i++) {
125                         this.toValaName(item.items.get(i), depth+1);
126                 }
127                                           
128         }
129         /**
130          *  Main entry point to convert a file into a string..
131          */
132         public static string mungeFile(JsRender file) 
133         {
134                 if (file.tree == null) {
135                         return "";
136                 }
137
138                 var n = new NodeToVala(file.tree, 0, null);
139                 n.file = file;
140                 n.vcnt = 0;
141                 
142                 n.toValaName(file.tree);
143                 
144                 
145                 GLib.debug("top cls %s / xlcs %s\n ",file.tree.xvala_cls,file.tree.xvala_cls); 
146                 n.cls = file.tree.xvala_cls;
147                 n.xcls = file.tree.xvala_xcls;
148                 return n.munge();
149                 
150
151         }
152         
153         public string munge ( )
154         {
155                 //return this.mungeToString(this.node);
156
157                 this.ignore("pack");
158                 this.ignore("init");
159                 this.ignore("xns");
160                 this.ignore("xtype");
161                 this.ignore("id");
162                 
163                 this.globalVars();
164                 this.classHeader();
165                 this.addSingleton();
166                 this.addTopProperties();
167                 this.addMyVars();
168                 this.addPlusProperties();
169                 this.addValaCtor();
170                 this.addUnderThis();
171                 this.addWrappedCtor();
172
173                 this.addInitMyVars();
174                 this.addWrappedProperties();
175                 this.addChildren();
176                 this.addInit();
177                 this.addListeners();
178                 this.addEndCtor();
179                 this.addUserMethods();
180                 this.iterChildren();
181                 
182                 return this.ret;
183                  
184                          
185         } 
186         public string mungeChild(  Node cnode)
187         {
188                 var x = new  NodeToVala(cnode,  this.depth+1, this);
189                 return x.munge();
190         }
191         public void addLine(string str= "")
192         {
193                 this.cur_line++;
194                 //this.ret += "/*%d*/ ".printf(this.cur_line-1) + str + "\n";
195                 this.ret += str + "\n";
196         }
197         public void addMultiLine(string str= "")
198         {
199                  
200                 this.cur_line += str.split("\n").length;
201                 //this.ret +=  "/*%d*/ ".printf(l) + str + "\n";
202                 this.ret +=   str + "\n";
203         }
204          
205         
206         public void globalVars()
207         {
208                 if (this.depth > 0) {
209                         return;
210                 }
211                 // Global Vars..??? when did this get removed..?
212                 //this.ret += this.inpad + "public static " + this.xcls + "  " + this.node.xvala_id+ ";\n\n";
213
214                 this.addLine(this.inpad + "static " + this.xcls + "  _" + this.node.xvala_id+ ";");
215                 this.addLine();
216                    
217         }
218
219         void classHeader()
220         {
221                            
222                 // class header..
223                 // class xxx {   WrappedGtk  el; }
224                 this.node.line_start = this.cur_line;
225                 
226                 this.top.node.setNodeLine(this.cur_line, this.node);
227                 
228                 this.addLine(inpad + "public class " + this.xcls + " : Object");
229                 this.addLine(this.inpad + "{");
230                 
231                  
232                 this.addLine(this.pad + "public " + this.cls + " el;");
233  
234                 this.addLine(this.pad + "private " + this.top.xcls + "  _this;");
235                 this.addLine();
236                         
237                         
238                         
239                         // singleton
240         }
241         void addSingleton() 
242         {
243                 if (depth > 0) {
244                         return;
245                 }
246                 this.addLine(pad + "public static " + xcls + " singleton()");
247                 this.addLine(this.pad + "{");
248                 this.addLine(this.ipad +    "if (_" + this.node.xvala_id  + " == null) {");
249                 this.addLine(this.ipad +    "    _" + this.node.xvala_id + "= new "+ this.xcls + "();");  // what about args?
250                 this.addLine(this.ipad +    "}");
251                 this.addLine(this.ipad +    "return _" + this.node.xvala_id +";");
252                 this.addLine(this.pad + "}");
253         }
254                         
255         /**
256          * when ID is used... on an element, it registeres a property on the top level...
257          * so that _this.ID always works..
258          * 
259          */
260         void addTopProperties()
261         {
262                 if (this.depth > 0) {
263                         return;
264                 }
265                 // properties - global..??
266
267                 var iter = this.vitems.list_iterator();
268                 while(iter.next()) {
269                         var n = iter.get();
270
271                          
272                         if (!n.props.has_key("id") || n.xvala_id.length < 0) {
273                                 continue;
274                                 
275                         }
276                         if (n.xvala_id[0] == '*') {
277                                 continue;
278                         }
279                         if (n.xvala_id[0] == '+') {
280                                 continue;
281                         }
282                         this.addLine(this.pad + "public " + n.xvala_xcls + " " + n.xvala_id + ";");
283                         
284                 }
285                                 
286         }
287         /**
288          * create properties that are not 'part of the wrapped element.
289          * 
290          * 
291          */
292         
293         void addMyVars()
294         {
295                 this.addLine();
296                 this.addLine(this.ipad + "// my vars (def)");
297                         
298
299  
300                 var cls = Palete.Gir.factoryFqn(this.node.fqn());
301                    
302                 if (cls == null) {
303                         return;
304                 }
305           
306                 
307                         // Key = TYPE:name
308                 var iter = this.node.props.map_iterator();
309                 while (iter.next()) {
310                         var k = iter.get_key();
311                         if (this.shouldIgnore(k)) {
312                                 continue;
313                         }
314                         var vv = k.strip().split(" ");
315                         // user defined method
316                         if (vv[0] == "|") {
317                                 continue;
318                         }
319                         if (vv[0] == "*") {
320                                 continue;
321                         }
322                                 
323                         if (vv[0] == "@") {
324                                 this.node.setLine(this.cur_line, "p", k);
325                                 this.addLine(this.pad + "public signal" + k.substring(1)  + " "  + iter.get_value() + ";");
326                                 
327                                 this.ignore(k);
328                                 continue;
329                         }
330                         var min = (vv[0] == "$" || vv[0] == "#") ? 3 : 2; 
331                         if (vv.length < min) {
332                                 // skip 'old js style properties without a type'
333                                 continue;
334                         }
335                         
336                         var kname = vv[vv.length-1];
337
338                         if (this.shouldIgnore(kname)) {
339                                 continue;
340                         }
341                         
342                         // is it a class property...
343                         if (cls.props.has_key(kname) && vv[0] != "#") {
344                                 continue;
345                         }
346                         
347                         this.myvars.add(k);
348                         this.node.setLine(this.cur_line, "p", k);
349                         
350                         this.addLine(this.pad + "public " + 
351                                 (k[0] == '$' || k[0] == '#' ? k.substring(2) : k ) + ";");
352                                 
353                         this.ignore(k);
354                         
355                                 
356                 }
357         }
358         
359         // if id of child is '+' then it's a property of this..
360         void addPlusProperties()
361         {
362                 if (this.node.items.size < 1) {
363                         return;
364                 }
365                 var iter = this.node.items.list_iterator();
366                 while (iter.next()) {
367                         var ci = iter.get();
368                                 
369                         if (ci.xvala_id[0] != '+') {
370                                 continue; // skip generation of children?
371                                 
372                         }
373                          
374                         this.addLine(this.pad + "public " + ci.xvala_xcls + " " + ci.xvala_id.substring(1) + ";");
375                                            
376                         
377                 }
378         }
379         /**
380          * add the constructor definition..
381          */
382         void addValaCtor()
383         {
384                         
385                 
386                 // .vala props.. 
387                 
388                 string[] cargs = {};
389                 var cargs_str = "";
390                 // ctor..
391                 this.addLine();
392                 this.addLine(this.pad + "// ctor");
393                 
394                 if (this.node.has("* args")) {
395                         // not sure what this is supposed to be ding..
396                 
397                         cargs_str = ", " + this.node.get("* args");
398                         //var ar = this.node.get("* args");.split(",");
399                         //for (var ari =0; ari < ar.length; ari++) {
400                                 //      cargs +=  (ar[ari].trim().split(" ").pop();
401                                   // }
402                         }
403         
404                 if (this.depth < 1) {
405                  
406                         // top level - does not pass the top level element..
407                         this.addLine(this.pad + "public " + this.xcls + "(" +  cargs_str +")");
408                         this.addLine(this.pad + "{");
409                 } else {
410                                 
411                         // for sub classes = we passs the top level as _owner
412                         this.addLine(this.pad + "public " + this.xcls + "(" +  this.top.xcls + " _owner " + cargs_str + ")");
413                         this.addLine(this.pad + "{");
414                 }
415                 
416
417         }
418         /**
419          *  make sure _this is defined..
420          */
421         void addUnderThis() 
422         {
423                 // public static?
424                 if (depth < 1) {
425                         this.addLine( this.ipad + "_this = this;");
426                         return;
427                 }
428                 // for non top level = _this point to owner, and _this.ID is set
429                 
430                 this.addLine( this.ipad + "_this = _owner;");
431
432                 if (this.node.props.has_key("id")
433                         &&
434                         this.node.xvala_id != "" 
435                         && 
436                         this.node.xvala_id[0] != '*' 
437                         && 
438                         this.node.xvala_id[0] != '+' 
439                         ) {
440                                 this.addLine( this.ipad + "_this." + node.xvala_id  + " = this;");
441                    
442                 }
443                          
444         }
445         /**
446          * Initialize this.el to point to the wrapped element.
447          * 
448          * 
449          */
450
451         void addWrappedCtor()
452         {
453                 // wrapped ctor..
454                 // this may need to look up properties to fill in the arguments..
455                 // introspection does not workk..... - as things like gtkmessagedialog
456                 /*
457                 if (cls == 'Gtk.Table') {
458
459                 var methods = this.palete.getPropertiesFor(cls, 'methods');
460
461                 print(JSON.stringify(this.palete.proplist[cls], null,4));
462                 Seed.quit();
463                 }
464                 */
465                 if (this.node.has("* ctor")) {
466                         this.node.setLine(this.cur_line, "p", "* ctor");
467                         this.addLine(this.ipad + "this.el = " + this.node.get("* ctor")+ ";");
468                         return;
469                 }
470                  
471                 var  default_ctor = Palete.Gir.factoryFqn(this.node.fqn() + ".new");
472
473                  
474                 if (default_ctor != null && default_ctor.paramset != null && default_ctor.paramset.params.size > 0) {
475                         string[] args  = {};
476                         var iter =default_ctor.paramset.params.list_iterator();
477                         while (iter.next()) {
478                                 var n = iter.get().name;
479                                 if (!this.node.has(n)) {
480
481                                         if (iter.get().type.contains("int")) {
482                                                 args += "0";
483                                                 continue;
484                                         }
485                                         if (iter.get().type.contains("float")) {
486                                                 args += "0f";
487                                                 continue;
488                                         }
489                                         if (iter.get().type.contains("bool")) {
490                                                 args += "true"; // always default to true?
491                                                 continue;
492                                         }
493                                         // any other types???
494                                         
495                                         args += "null";
496                                         continue;
497                                 }
498                                 this.ignoreWrapped(n);
499                                 this.ignore(n);
500                                 
501                                 var v = this.node.get(n);
502
503                                 if (iter.get().type == "string") {
504                                         v = "\"" +  v.escape("") + "\"";
505                                 }
506                                 if (v == "TRUE" || v == "FALSE") {
507                                         v = v.down();
508                                 }
509
510                                 
511                                 args += v;
512
513                         }
514                         this.node.setLine(this.cur_line, "p", "* xtype");
515                         
516                         this.addLine(this.ipad + "this.el = new " + cls + "( "+ string.joinv(", ",args) + " );") ;
517                         return;
518                         
519                 }
520                 this.node.setLine(this.cur_line, "p", "* xtype");;
521                 
522                 this.addLine(this.ipad + "this.el = new " + this.cls + "();");
523
524                         
525         }
526
527         void addInitMyVars()
528         {
529                         //var meths = this.palete.getPropertiesFor(item['|xns'] + '.' + item.xtype, 'methods');
530                         //print(JSON.stringify(meths,null,4));Seed.quit();
531                         
532                         
533                         
534                         // initialize.. my vars..
535                 this.addLine();
536                 this.addLine( this.ipad + "// my vars (dec)");
537                 
538                 var iter = this.myvars.list_iterator();
539                 while(iter.next()) {
540                         
541                         var k = iter.get();
542                         
543                         var ar  = k.strip().split(" ");
544                         var kname = ar[ar.length-1];
545                         
546                         var v = this.node.props.get(k);
547                         // ignore signals.. 
548                         if (v.length < 1) {
549                                 continue; 
550                         }
551                         if (v == "FALSE" || v == "TRUE") {
552                                 v = v.down();
553                         }
554                         //FIXME -- check for raw string.. "string XXXX"
555                         
556                         // if it's a string...
557                         
558                         
559                         this.addLine(this.ipad + "this." + kname + " = " +   v +";");
560                 }
561         }
562
563         
564
565
566         
567         void addWrappedProperties()
568         {
569                 var cls = Palete.Gir.factoryFqn(this.node.fqn());
570                 if (cls == null) {
571                         return;
572                 }
573                         // what are the properties of this class???
574                 this.addLine();
575                 this.addLine(this.ipad + "// set gobject values");
576                 
577
578                 var iter = cls.props.map_iterator();
579                 while (iter.next()) {
580                         var p = iter.get_key();
581                         //print("Check Write %s\n", p);
582                         if (!this.node.has(p)) {
583                                 continue;
584                         }
585                         if (this.shouldIgnoreWrapped(p)) {
586                                 continue;
587                         }
588                         
589                                 this.ignore(p);
590                         var v = this.node.get(p);
591
592                         var nodekey = this.node.get_key(p);
593
594                         // user defined properties.
595                         if (nodekey[0] == '#') {
596                                 continue;
597                         }
598                                 
599
600                         
601                         var is_raw = nodekey[0] == '$';
602                         
603                         // what's the type.. - if it's a string.. then we quote it..
604                         if (iter.get_value().type == "string" && !is_raw) {
605                                  v = "\"" +  v.escape("") + "\"";
606                         }
607                         if (v == "TRUE" || v == "FALSE") {
608                                 v = v.down();
609                         }
610                         if (iter.get_value().type == "float" && v[v.length-1] != 'f') {
611                                 v += "f";
612                         }
613                         
614                         
615                         this.addLine("%sthis.el.%s = %s;".printf(ipad,p,v)); // // %s,  iter.get_value().type);
616                                         
617                            // got a property..
618                            
619
620                 }
621                 
622         }
623         /**
624          *  pack the children into the parent.
625          * 
626          * if the child's id starts with '*' then it is not packed...
627          * - this allows you to define children and add them manually..
628          */
629
630         void addChildren()
631         {
632                                 //code
633                 if (this.node.items.size < 1) {
634                         return;
635                 }
636                          
637                 var iter = this.node.items.list_iterator();
638                 var i = -1;
639                 while (iter.next()) {
640                         i++;
641                                 
642                         var ci = iter.get();
643
644                         if (ci.xvala_id[0] == '*') {
645                                 continue; // skip generation of children?
646                         }
647                                         
648                         var xargs = "";
649                         if (ci.has("* args")) {
650                                 
651                                 var ar = ci.get("* args").split(",");
652                                 for (var ari = 0 ; ari < ar.length; ari++ ) {
653                                         var arg = ar[ari].split(" ");
654                                         xargs += "," + arg[arg.length -1];
655                                 }
656                         }
657                         // create the element..
658                         this.addLine(this.ipad + "var child_" + "%d".printf(i) + " = new " + ci.xvala_xcls +
659                                         "( _this " + xargs + ");" );
660                         
661                         // this is only needed if it does not have an ID???
662                         this.addLine(this.ipad + "child_" + "%d".printf(i) +".ref();"); // we need to reference increase unnamed children...
663                         
664                         if (ci.has("* prop")) {
665                                 this.addLine(ipad + "this.el." + ci.get("* prop") + " = child_" + "%d".printf(i) + ".el;");
666                                 continue;
667                         } 
668                                 
669
670         // not sure why we have 'true' in pack?!?
671                         if (!ci.has("pack") || ci.get("pack").down() == "false" || ci.get("pack").down() == "true") {
672                                 continue;
673                         }
674                         
675                         string[]  packing =  { "add" };
676                         if (ci.has("pack")) {
677                                 packing = ci.get("pack").split(",");
678                         }
679                         
680                         var pack = packing[0];
681                         this.addLine(this.ipad + "this.el." + pack.strip() + " (  child_" + "%d".printf(i) + ".el " +
682                                    (packing.length > 1 ? 
683                                                 (", " + string.joinv(",", packing).substring(pack.length+1))
684                                         :
685                                                         ""
686                                                 ) + " );");
687         
688                                           
689                         if (ci.xvala_id[0] != '+') {
690                                 continue; // skip generation of children?
691                                                 
692                         }
693                         // this.{id - without the '+'} = the element...
694                         this.addLine(this.ipad + "this." + ci.xvala_id.substring(1) + " =  child_" + "%d".printf(i) +  ";");
695                                   
696                 }
697         }
698
699         void addInit()
700         {
701
702                 
703                 if (!this.node.has("init")) {
704                                 return;
705                 }
706                 this.addLine();
707                 this.addLine(ipad + "// init method");
708                 this.addLine();
709                 this.node.setLine(this.cur_line, "p", "init");
710                 
711                 this.addMultiLine(ipad + this.padMultiline(ipad, this.node.get("init")) );
712
713          }
714          void addListeners()
715          {
716                 if (this.node.listeners.size < 1) {
717                         return;
718                 }
719                                 
720                 this.addLine();
721                 this.addLine(ipad + "//listeners");
722                         
723                          
724
725                 var iter = this.node.listeners.map_iterator();
726                 while (iter.next()) {
727                         var k = iter.get_key();
728                         var v = iter.get_value();
729                         
730                         this.node.setLine(this.cur_line, "l", k);
731                         this.addMultiLine(this.ipad + "this.el." + k + ".connect( " + 
732                                         this.padMultiline(this.ipad,v) +");"); 
733                                 
734                 }
735         }    
736         void addEndCtor()
737         {
738                          
739                         // end ctor..
740                         this.addLine(this.pad + "}");
741         }
742
743
744         /*
745  * Standardize this crap...
746  * 
747  * standard properties (use to set)
748  *          If they are long values show the dialog..
749  *
750  * someprop : ....
751  * bool is_xxx  :: can show a pulldown.. (true/false)
752  * string html  
753  * $ string html  = string with value interpolated eg. baseURL + ".." 
754  *  Clutter.ActorAlign x_align  (typed)  -- shows pulldowns if type is ENUM? 
755  * $ untypedvalue = javascript untyped value...  
756  * _ string html ... = translatable..
757
758  * 
759  * object properties (not part of the GOjbect being wrapped?
760  * # Gee.ArrayList<Xcls_fileitem> fileitems
761  * 
762  * signals
763  * @ void open 
764  * 
765  * methods -- always text editor..
766  * | void clearFiles
767  * | someJSmethod
768  * 
769  * specials
770  * * prop -- string
771  * * args  -- string
772  * * ctor -- string
773  * * init -- big string?
774  * 
775  * event handlers (listeners)
776  *   just shown 
777  * 
778  * -----------------
779  * special ID values
780  *  +XXXX -- indicates it's a instance property / not glob...
781  *  *XXXX -- skip writing glob property (used as classes that can be created...)
782  * 
783  * 
784  */
785          
786         void addUserMethods()
787         {
788                 this.addLine();
789                 this.addLine(this.pad + "// user defined functions");
790                         
791                         // user defined functions...
792                 var iter = this.node.props.map_iterator();
793                 while(iter.next()) {
794                         var k = iter.get_key();
795                         if (this.shouldIgnore(k)) {
796                                 continue;
797                         }
798                         // HOW TO DETERIME if its a method?            
799                         if (k[0] != '|') {
800                                         //strbuilder("\n" + pad + "// skip " + k + " - not pipe \n"); 
801                                         continue;
802                         }
803                         
804                         // function in the format of {type} (args) { .... }
805                         var kk = k.substring(2);
806                         var vv = iter.get_value();
807                         this.node.setLine(this.cur_line, "p", k);
808                         this.addMultiLine(this.pad + "public " + kk + " " + this.padMultiline(this.pad, vv));;
809                         
810                                 
811                 }
812         }
813
814         void iterChildren()
815         {
816                 this.node.line_end = this.cur_line;
817                 this.node.sortLines();
818                 
819                         
820                 if (this.depth > 0) {
821                         this.addLine(this.inpad + "}");
822                 }
823                 
824                 var iter = this.node.items.list_iterator();
825                  
826                 while (iter.next()) {
827                         this.addMultiLine(this.mungeChild(iter.get()));
828                 }
829                          
830                 if (this.depth < 1) {
831                         this.addLine(this.inpad + "}");
832                 }
833                         
834         }
835
836         string padMultiline(string pad, string str)
837         {
838                 var ar = str.strip().split("\n");
839                 return string.joinv("\n" + pad , ar);
840         }
841         
842         void ignore(string i) {
843                 this.ignoreList.add(i);
844                 
845         }
846         void ignoreWrapped(string i) {
847                 this.ignoreWrappedList.add(i);
848                 
849         }
850         bool shouldIgnore(string i)
851         {
852                 return ignoreList.contains(i);
853         }
854         bool shouldIgnoreWrapped(string i)
855         {
856                 return ignoreWrappedList.contains(i);
857         }
858         
859 }
860         
861          
862         
863         
864
865