627aa5c568d2d6fa4d254958f37566c603221152
[app.Builder.js] / Palete / ValaSource.vala
1
2 // valac TreeBuilder.vala --pkg libvala-0.24 --pkg posix -o /tmp/treebuilder
3
4 namespace Palete {
5         
6         public class ValaSourceReport  : Vala.Report {
7
8
9                 
10
11                 public Gee.HashMap<int,string> line_errors;
12
13                 public ValaSourceReport()
14                 {
15                         base();
16                         this.line_errors = new Gee.HashMap<int,string> ();
17                 }
18                 
19                 public override void err (Vala.SourceReference? source, string message) {
20                         errors++;
21                         if (source == null) {
22                                 return;
23                                 //stderr.printf ("My error: %s\n", message);
24                         }
25                         if (source.file.filename != "~~~~~testfile.vala") {
26                                 return;
27                         }
28                         var pre = "";
29                         if (line_errors.has_key(source.begin.line)) {
30                                 pre = line_errors.get(source.begin.line) + "\n";
31                                 
32                         }
33                         line_errors.set(source.begin.line, pre +  message);
34                 }
35                 public void dump()
36                 {
37                         var iter = this.line_errors.map_iterator();
38                         while (iter.next()) {
39                                 print ("%d : %s\n\n", iter.get_key(), iter.get_value());
40                         }
41                 }
42
43         }
44
45         public class ValaSource : Vala.CodeVisitor {
46
47                 Vala.CodeContext context;
48                 ValaSourceReport report;
49                 JsRender.JsRender file; 
50                 public ValaSource(JsRender.JsRender file) {
51                         base();
52                         this.file = file;
53                         
54
55                 }
56                 public void dumpCode(string str) {
57                         var ls = str.split("\n");
58                         for (var i=0;i < ls.length; i++) {
59                                 print("%d : %s\n", i, ls[i]);
60                         }
61                 }
62                 
63                 public Gee.HashMap<int,string> checkFile()
64                 {
65                         return this.checkString(JsRender.NodeToVala.mungeFile(this.file));
66                 }
67
68                 public Gee.HashMap<int,string> checkFileWithNodePropChange(
69                            JsRender.Node node, 
70                            string prop,
71                            string ptype,
72                            string val)
73                 {
74
75                         var hash = ptype == "listener" ? node.listeners : node.props;
76                         var old = hash.get(prop);
77                         var newval = "/*--VALACHECK-START--*/ " + val + " /*--VALACHECK-END--*/";
78                         
79                         hash.set(prop, newval);
80                         var tmpstring = JsRender.NodeToVala.mungeFile(this.file);
81                         var bits = tmpstring.split(newval);
82                         var offset =0;
83                         if (bits.length > 1) {
84                                 offset = bits[0].split("\n").length;
85                         }
86                         this.dumpCode(tmpstring);
87                         print("offset %d\n", offset);
88                         this.checkString(tmpstring);
89                         hash.set(prop, old);
90                         // modify report
91                         Gee.HashMap<int,string> ret = new Gee.HashMap<int,string> ();
92                         var iter = this.report.line_errors.map_iterator();
93                         while (iter.next()) {
94                                  print("%d : %s\n",iter.get_key() - offset, iter.get_value());
95                                  ret.set(iter.get_key() - offset, iter.get_value());
96                         }
97                         return ret;
98                         
99                 }
100                 
101         public Gee.HashMap<int,string> checkString(string contents)
102        {
103                         // init context:
104
105                         context = new Vala.CodeContext ();
106                         Vala.CodeContext.push (context);
107                 
108                         context.experimental = false;
109                         context.experimental_non_null = false;
110                         context.vapi_directories = { "/usr/share/vala-0.24/vapi" };
111                         context.report.enable_warnings = true;
112                         context.metadata_directories = { };
113                         context.gir_directories = {};
114                         this.report = new ValaSourceReport();;
115                         context.report = this.report;
116                 
117                         context.basedir = Posix.realpath (".");
118                 
119                         context.directory = context.basedir;
120                 
121
122                         // add default packages:
123                         //if (settings.profile == "gobject-2.0" || settings.profile == "gobject" || settings.profile == null) {
124                                 context.profile = Vala.Profile.GOBJECT;
125                         //      context.add_define ("GOBJECT");
126                         //}
127                         //add_depencies (context, settings.packages);
128                         //if (reporter.errors > 0) {
129                         //      return context;
130                         //}
131
132                         var source_file = new Vala.SourceFile (
133                                 context, 
134                                 Vala.SourceFileType.SOURCE, 
135                                 "~~~~~testfile.vala",
136                                contents
137                         );
138                          
139                         context.add_external_package ("glib-2.0");
140                         context.add_external_package ("gobject-2.0");
141                         context.add_external_package ("libvala-0.24");
142                         var ns_ref = new Vala.UsingDirective (new Vala.UnresolvedSymbol (null, "GLib", null));
143                         source_file.add_using_directive (ns_ref);
144                         context.root.add_using_directive (ns_ref);
145                         context.add_source_file (source_file);
146
147                 
148                         //add_documented_files (context, settings.source_files);
149                 
150                         Vala.Parser parser = new Vala.Parser ();
151                         parser.parse (context);
152                         //gir_parser.parse (context);
153                         if (context.report.get_errors () > 0) {
154                                 print("parse got errors");
155                                 ((ValaSourceReport)context.report).dump();
156                                 Vala.CodeContext.pop ();
157                                 return this.report.line_errors;
158                         }
159
160
161                         /*
162                         // check context:
163                         context.check ();
164                         if (context.report.get_errors () > 0) {
165                                 print("check got errors");
166                                 ((ValaSourceReport)context.report).dump();
167                                 Vala.CodeContext.pop ();
168                                 return this.report.line_errors;
169                                 
170                         }
171                         */
172                         Vala.CodeContext.pop ();
173                         
174                         print("ALL OK?\n");
175                         return this.report.line_errors;
176                 }
177         //
178                 // startpoint:
179                 //
180          
181         }
182 }
183 /*
184 int main (string[] args) {
185
186         var a = new ValaSource(file);
187         a.create_valac_tree();
188         return 0;
189 }
190 */
191
192