~~~~~testfile.vala.c
[app.Builder.js] / src / 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                                 print ("Other file: Got error error: %d:  %s\n", source.begin.line, message);
27                                 return;
28                         }
29                         var pre = "";
30                         if (line_errors.has_key(source.begin.line)) {
31                                 pre = line_errors.get(source.begin.line) + "\n";
32                                 
33                         }
34                         line_errors.set(source.begin.line, pre +  message);
35                         print ("Test file: Got error error: %d: %s\n", source.begin.line, message);
36                 }
37                 public void dump()
38                 {
39                         var iter = this.line_errors.map_iterator();
40                         while (iter.next()) {
41                                 print ("%d : %s\n\n", iter.get_key(), iter.get_value());
42                         }
43                 }
44
45         }
46
47         public class ValaSource : Vala.CodeVisitor {
48
49                 Vala.CodeContext context;
50                 ValaSourceReport report;
51                 JsRender.JsRender file; 
52                 public ValaSource(JsRender.JsRender file) {
53                         base();
54                         this.file = file;
55                         
56
57                 }
58                 public void dumpCode(string str) {
59                         var ls = str.split("\n");
60                         for (var i=0;i < ls.length; i++) {
61                                 print("%d : %s\n", i+1, ls[i]);
62                         }
63                 }
64                 
65                 public Gee.HashMap<int,string> checkFile()
66                 {
67                         return this.checkString(JsRender.NodeToVala.mungeFile(this.file));
68                 }
69
70                 public async Gee.HashMap<int,string> checkFileWithNodePropChange(
71                            JsRender.Node node, 
72                            string prop,
73                            string ptype,
74                            string val)
75                 {
76                         Gee.HashMap<int,string> ret = new Gee.HashMap<int,string> ();
77                         var hash = ptype == "listener" ? node.listeners : node.props;
78                         
79                         // untill we get a smarter renderer..
80                         // we have some scenarios where changing the value does not work
81                         if (prop == "* xns" || prop == "xtype") {
82                                 return ret;
83                         }
84                                 
85                         
86                         var old = hash.get(prop);
87                         var newval = "/*--VALACHECK-START--*/ " + val ;
88                         
89                         hash.set(prop, newval);
90                         var tmpstring = JsRender.NodeToVala.mungeFile(this.file);
91                         var bits = tmpstring.split("/*--VALACHECK-START--*/");
92                         var offset =0;
93                         if (bits.length > 0) {
94                                 offset = bits[0].split("\n").length +1;
95                         }
96                         //this.dumpCode(tmpstring);
97                         //print("offset %d\n", offset);
98                         yield this.checkStringThread(tmpstring);
99                         hash.set(prop, old);
100                         // modify report
101                         
102                         var iter = this.report.line_errors.map_iterator();
103                         while (iter.next()) {
104                                 // print("%d : %s\n",iter.get_key() - offset, iter.get_value());
105                                 // we have to prefix the error with the fake line number 
106                                 // so that it's a unique mark..
107                                  ret.set(iter.get_key() - offset, 
108                                        "%d : %s".printf(iter.get_key() - offset,iter.get_value()));
109                         }
110                         return ret;
111                         
112                 }
113                 
114                 public async  Gee.HashMap<int,string> checkStringThread(string contents)
115                 {
116                         SourceFunc callback = checkStringThread.callback;
117                         var ret = new Gee.HashMap<int,string>();
118                         ThreadFunc<void*> run = () => {
119                                  
120                                 // Pass back result and schedule callback
121                                 ret = this.checkString(contents);
122                                 Idle.add((owned) callback);
123                                 return null;
124                         };
125                         Thread.create<void*>(run, false);
126
127                         // Wait for background thread to schedule our callback
128                         yield;
129                         return ret;
130                 }
131                 
132                 
133                 
134                 public Gee.HashMap<int,string> checkString(string contents)
135         {
136                         // init context:
137                         var valac = "valac " ;
138                         
139                         context = new Vala.CodeContext ();
140                         Vala.CodeContext.push (context);
141                 
142                         context.experimental = false;
143                         context.experimental_non_null = false;
144                         var vapidirs = ((Project.Gtk)this.file.project).vapidirs();
145                         // what's the current version of vala???
146                         
147                         
148                         vapidirs +=  Path.get_dirname (context.get_vapi_path("glib-2.0")) ;
149                         
150                         for(var i =0 ; i < vapidirs.length; i++) {
151                                 valac += " --vapidir=" + vapidirs[i];
152                         }
153                                 
154                         
155                         // or context.get_vapi_path("glib-2.0"); // should return path..
156                         context.vapi_directories = vapidirs;
157                         context.report.enable_warnings = true;
158                         context.metadata_directories = { };
159                         context.gir_directories = {};
160                         context.thread = true;
161                         
162                         
163                         this.report = new ValaSourceReport();;
164                         context.report = this.report;
165                         
166                         
167                         context.basedir = Posix.realpath (".");
168                 
169                         context.directory = context.basedir;
170                 
171
172                         // add default packages:
173                         //if (settings.profile == "gobject-2.0" || settings.profile == "gobject" || settings.profile == null) {
174                         context.profile = Vala.Profile.GOBJECT;
175                          
176                         var ns_ref = new Vala.UsingDirective (new Vala.UnresolvedSymbol (null, "GLib", null));
177                         context.root.add_using_directive (ns_ref);
178
179                         var source_file = new Vala.SourceFile (
180                                 context, 
181                                 Vala.SourceFileType.SOURCE, 
182                                         "~~~~~testfile.vala",
183                                         contents
184                         );
185                         source_file.add_using_directive (ns_ref);
186                         context.add_source_file (source_file);
187                         
188                 // add all the files (except the current one) - this.file.path
189                 var pr = ((Project.Gtk)this.file.project);
190                 if (this.file.build_module.length > 0) {
191                                 var cg =  pr.compilegroups.get(this.file.build_module);
192                                 for (var i = 0; i < cg.sources.size; i++) {
193                                         var path = pr.resolve_path(
194                                 pr.resolve_path_combine_path(pr.firstPath(),cg.sources.get(i)));
195                                 
196                         if (!FileUtils.test(path, FileTest.EXISTS)) {
197                                                 continue;
198                                         }       
199                          
200                                         if (path == this.file.path.replace(".bjs", ".vala")) {
201                                                 valac += " " + path;
202                                                 continue;
203                                         }
204                                         if (FileUtils.test(path, FileTest.IS_DIR)) {
205                                                 continue;
206                                         }
207                                         //print("Add source file %s\n", path);
208                                         valac += " " + path;
209                                         var xsf = new Vala.SourceFile (
210                                                 context,
211                                                 Vala.SourceFileType.SOURCE, 
212                                                 path
213                                         );
214                                         xsf.add_using_directive (ns_ref);
215                                 }
216                         }
217                         // default.. packages..
218                         context.add_external_package ("glib-2.0"); 
219                         context.add_external_package ("gobject-2.0");
220                         // user defined ones..
221                         
222                 var dcg = pr.compilegroups.get("_default_");
223                 for (var i = 0; i < dcg.packages.size; i++) {
224                                 valac += " --pkg " + dcg.packages.get(i);
225                                 context.add_external_package (dcg.packages.get(i));
226                         }
227                 
228                          //Vala.Config.PACKAGE_SUFFIX.substring (1)
229                         
230                         // add the modules...
231                         
232                         
233                         
234                         //context.add_external_package ("libvala-0.24");
235                         
236                         
237
238                 
239                         //add_documented_files (context, settings.source_files);
240                 
241                         Vala.Parser parser = new Vala.Parser ();
242                         parser.parse (context);
243                         //gir_parser.parse (context);
244                         if (context.report.get_errors () > 0) {
245                                 print("parse got errors");
246                                 ((ValaSourceReport)context.report).dump();
247                                 Vala.CodeContext.pop ();
248                                 return this.report.line_errors;
249                         }
250
251
252                         
253                         // check context:
254                         context.check ();
255                         if (context.report.get_errors () > 0) {
256                                 print("check got errors");
257                                 ((ValaSourceReport)context.report).dump();
258                                 Vala.CodeContext.pop ();
259                                 return this.report.line_errors;
260                                 
261                         }
262                         
263                         context.codegen = new Vala.GDBusServerModule ();
264                         
265                          
266                         context.output = "/tmp/testbuild";
267                         valac += " -o " +context.output;
268                         context.codegen.emit (context);
269                         
270                         var ccompiler = new Vala.CCodeCompiler ();
271                         var cc_command = Environment.get_variable ("CC");
272                         var pkg_config_command = Environment.get_variable ("PKG_CONFIG");
273                         ccompiler.compile (context, cc_command, new string[] { }, pkg_config_command);
274                         
275                         Vala.CodeContext.pop ();
276                         print("%s\n", valac);
277                         print("ALL OK?\n");
278                         return this.report.line_errors;
279                 }
280         //
281                 // startpoint:
282                 //
283          
284         }
285 }
286 /*
287 int main (string[] args) {
288
289         var a = new ValaSource(file);
290         a.create_valac_tree();
291         return 0;
292 }
293 */
294
295