26cc1684170f810f108925272efef763c884bd15
[roobuilder] / src / JsRender / JsRender.vala
1 //<Script type="text/javascript">
2
3 namespace JsRender {
4
5
6         public errordomain Error {
7                 INVALID_FORMAT,
8                 RENAME_FILE_EXISTS
9         }
10                 
11         public abstract class JsRender  : Object {
12                 /**
13                  * @cfg {Array} doubleStringProps list of properties that can be double quoted.
14                  */
15                 public Gee.ArrayList<string> doubleStringProps;
16                 
17                 public string id;
18                 public string name;   // is the JS name of the file.
19                 public string fullname;
20                 public string path;  // is the full path to the file.
21                 public string parent;  // JS parent.
22                 public string region;  // RooJS - insert region.
23         
24                 public string title;  // a title.. ?? nickname.. ??? -
25                 public string build_module; // module to build if we compile (or are running tests...)
26                 
27
28                 public string permname;
29                 public string language;
30                 public string content_type;
31                 public string modOrder;
32                 public string xtype;
33                 public uint64 webkit_page_id; // set by webkit view - used to extract extension/etc..
34                     
35                 public Project.Project project;
36                 //Project : false, // link to container project!
37                 
38                 public Node tree; // the tree of nodes.
39                 
40                 public GLib.List<JsRender> cn; // child files.. (used by project ... should move code here..)
41
42                 public bool hasParent; 
43                 
44                 public bool loaded;
45                 
46                 public Gee.HashMap<string,string> transStrings; // map of md5 -> string.
47                 public  Gee.HashMap<string,string> namedStrings;
48
49                 public signal void changed (Node? node, string source); 
50                 
51                  
52                 public signal void compile_notice(string type, string file, int line, string message);
53                 /**
54                  * UI componenets
55                  * 
56                  */
57                 //public Xcls_Editor editor;
58                 
59                 
60                 
61                 public JsRender(Project.Project project, string path) {
62                     
63                         this.cn = new GLib.List<JsRender>();
64                         this.path = path;
65                         this.project = project;
66                         this.hasParent = false;
67                         this.parent = "";
68                         this.tree = null;
69                         this.title = "";
70                         this.region = "";
71                         this.permname = "";
72                         this.modOrder = "";
73                         this.language = "";
74                         this.content_type = "";
75                         this.build_module = "";
76                         this.loaded = false;
77                         //print("JsRender.cto() - reset transStrings\n");
78                         this.transStrings = new Gee.HashMap<string,string>();
79                         this.namedStrings = new Gee.HashMap<string,string>();
80                         // should use basename reallly...
81                         
82                         var ar = this.path.split("/");
83                         // name is in theory filename without .bjs (or .js eventually...)
84                         try {
85                                 Regex regex = new Regex ("\\.(bjs|js)$");
86
87                                 this.name = ar.length > 0 ? regex.replace(ar[ar.length-1],ar[ar.length-1].length, 0 , "") : "";
88                         } catch (GLib.Error e) {
89                                 this.name = "???";
90                         }
91                         this.fullname = (this.parent.length > 0 ? (this.parent + ".") : "" ) + this.name;
92
93                         this.doubleStringProps = new Gee.ArrayList<string>();
94
95                 }
96                 
97                 public void renameTo(string name) throws  Error
98                 {
99                         if (this.xtype == "PlainFile") {
100                                 return;
101                         }
102                         var bjs = GLib.Path.get_dirname(this.path) +"/" +  name + ".bjs";
103                         if (FileUtils.test(bjs, FileTest.EXISTS)) {
104                                 throw new Error.RENAME_FILE_EXISTS("File exists %s\n",name);
105                         }
106                         GLib.FileUtils.remove(this.path);
107                         this.removeFiles();
108                         // remove other files?
109                         
110                         this.name = name;
111                         this.path = bjs;
112                         
113                 }
114                 
115
116                 
117                 // not sure why xt is needed... -> project contains xtype..
118                 
119                 public static JsRender factory(string xt, Project.Project project, string path) throws Error
120                 {
121          
122                         switch (xt) {
123                                 case "Gtk":
124                                         return new Gtk(project, path);
125                                 case "Roo":
126                                         return new Roo(project, path);
127                                 case "PlainFile":
128                                         return new PlainFile(project, path);
129                         }
130                         throw new Error.INVALID_FORMAT("JsRender Factory called with xtype=%s", xt);
131                         //return null;    
132                 }
133
134                 public string toJsonString()
135                 {
136                         if (this.xtype == "PlainFile") {
137                                 return "";
138                         }
139                         var generator = new Json.Generator ();
140                         generator.indent = 4;
141                         generator.pretty = true;
142                         var node = new Json.Node(Json.NodeType.OBJECT);
143                         node.set_object(this.toJsonObject());
144                         generator.set_root(node);
145                         return generator.to_data(null);
146                 }
147         
148                 public string nickType()
149                 {
150                         var ar = this.name.split(".");
151                         string[] ret = {};
152                         for (var i =0; i < ar.length -1; i++) {
153                                 ret += ar[i];
154                         }
155                         return string.joinv(".", ret);
156                         
157                 }
158                 public string nickName()
159                 {
160                         var ar = this.name.split(".");
161                         return ar[ar.length-1];
162                         
163                 }
164                 
165                 public string nickNameSplit()
166                 {
167                         var n = this.nickName();
168                         var ret = "";
169                         var len = 0;
170                         for (var i = 0; i < n.length; i++) {
171                                 if (i!=0 && n.get(i).isupper() && len > 10) {
172                                         ret +="\n";
173                                         len= 0;
174                                 }
175                                 ret += n.get(i).to_string();
176                                 len++;
177                         }
178                         
179
180                         
181                         return ret;
182                 
183                 }
184
185                 
186                 public string getIconFileName(bool return_default)
187                 {
188                          
189                         var m5 = GLib.Checksum.compute_for_string(GLib.ChecksumType.MD5,this.path); 
190
191                         var dir = GLib.Environment.get_home_dir() + "/.Builder/icons";
192                         try {
193                                 if (!FileUtils.test(dir, FileTest.IS_DIR)) {
194                                          File.new_for_path(dir).make_directory();
195                                 }
196                         } catch (GLib.Error e) {
197                                 // eakk.. what to do here...
198                         }
199                         var fname = dir + "/" + m5 + ".png";
200                         
201                         if (!return_default) {
202                                 print("getIconFileName return %s\n", fname);
203                                 return fname;
204                         }
205                         
206                         if (FileUtils.test(fname, FileTest.EXISTS)) {
207                                 print("getIconFileName return %s\n", fname);
208                                 return fname;
209                         }
210                         // we need to create this somehow...
211                         print("getIconFileName return %s\n", GLib.Environment.get_home_dir() + "/.Builder/test.jpg");
212                         return  GLib.Environment.get_home_dir() + "/.Builder/test.jpg";
213
214                 }
215                 
216
217                 public void saveBJS()
218                 {
219                     if (!this.loaded) {
220                             return;
221                     }
222                     if (this.xtype == "PlainFile") {
223                             return;
224                     }
225                     var generator = new Json.Generator ();
226                     generator.indent = 1;
227                     generator.pretty = true;
228                     var node = new Json.Node(Json.NodeType.OBJECT);
229                     node.set_object(this.toJsonObject());
230                     generator.set_root(node);
231                     
232                     print("WRITE :%s\n " , this.path);// + "\n" + JSON.stringify(write));
233                     try {
234                                 this.writeFile(this.path, generator.to_data(null));
235                         //generator.to_file(this.path);
236                     } catch(Error e) {
237                         print("Save failed");
238                     }
239                 }
240                  
241                  
242
243                 public abstract void loadItems() throws GLib.Error;
244                  
245                  
246                  
247                   
248                 public string jsonHasOrEmpty(Json.Object obj, string key) {
249                         return obj.has_member(key) ? 
250                                                 obj.get_string_member(key) : "";
251                 }
252
253                 
254                 public Json.Object toJsonObject ()
255                 {
256                     
257                     
258                         var ret = new Json.Object();
259                         if (this.xtype == "PlainFile") {
260                                 return ret;
261                         }
262                         
263                         //ret.set_string_member("id", this.id); // not relivant..
264                         ret.set_string_member("name", this.name);
265                         ret.set_string_member("parent", this.parent == null ? "" : this.parent);
266                         ret.set_string_member("title", this.title == null ? "" : this.title);
267                         ret.set_string_member("path", this.path);
268                         //ret.set_string_member("items", this.items);
269                         ret.set_string_member("permname", this.permname  == null ? "" : this.permname);
270                         ret.set_string_member("modOrder", this.modOrder  == null ? "" : this.modOrder);
271                         if (this.project.xtype == "Gtk") {
272                                 ret.set_string_member("build_module", this.build_module  == null ? "" : this.build_module);
273                         }
274                         
275                         if (this.transStrings.size > 0) {
276                                 var tr =  new Json.Object();
277                                 var iter = this.transStrings.map_iterator();
278                                 while (iter.next()) {
279                                         tr.set_string_member(iter.get_value(), iter.get_key());
280                                 }
281                                 ret.set_object_member("strings", tr);
282             }
283
284             
285             
286                         if (this.namedStrings.size > 0) {
287                                 var tr =  new Json.Object();
288                                 var iter = this.namedStrings.map_iterator();
289                                 while (iter.next()) {
290                                         tr.set_string_member(iter.get_key(), iter.get_value());
291                                 }
292                                 ret.set_object_member("named_strings", tr);
293             }
294                         
295                         var ar = new Json.Array();
296                         // empty files do not have a tree.
297                         if (this.tree != null) {
298                                 ar.add_object_element(this.tree.toJsonObject());
299                         }
300                         ret.set_array_member("items", ar);
301                 
302                     return ret;
303                 }
304                 
305                 
306
307                 public string getTitle ()
308                 {
309                     if (this.title.length > 0) {
310                         return this.title;
311                     }
312                     var a = this.path.split("/");
313                     return a[a.length-1];
314                 }
315                 public string getTitleTip()
316                 {
317                     if (this.title.length > 0) {
318                         return "<b>" + this.title + "</b> " + this.path;
319                     }
320                     return this.path;
321                 }
322                 /*
323                     sortCn: function()
324                     {
325                         this.cn.sort(function(a,b) {
326                             return a.path > b.path;// ? 1 : -1;
327                         });
328                     },
329                 */
330                     // should be in palete provider really..
331
332
333                 public Palete.Palete palete()
334                 {
335                         // error on plainfile?
336                         return this.project.palete;
337
338                 }
339                 
340                 public string guessName(Node ar) // turns the object into full name.
341                 {
342                      // eg. xns: Roo, xtype: XXX -> Roo.xxx
343                     if (!ar.hasXnsType()) {
344                        return "";
345                     }
346                     
347                     return ar.get("* xns") + "." + ar.get("* xtype");
348                                       
349                                         
350                 }
351                 /**
352                  *  non-atomic write (replacement for put contents, as it creates temporary files.
353                  */
354                 public void writeFile(string path, string contents) throws GLib.IOError, GLib.Error
355                 {
356
357                                  
358                         var f = GLib.File.new_for_path(path);
359                         var data_out = new GLib.DataOutputStream(
360                                           f.replace(null, false, GLib.FileCreateFlags.NONE, null)
361                        );
362                         data_out.put_string(contents, null);
363                         data_out.close(null);
364                 }
365                  
366                 
367                 
368                 public  Node? lineToNode(int line)
369                 {
370                         if (this.tree == null) {
371                                 return null;
372                         }
373                         return this.tree.lineToNode(line);
374                         
375                         
376                 }
377                 
378                 
379                 public abstract void save();
380                 public abstract void saveHTML(string html);
381                 public abstract string toSource() ;
382                 public abstract string toSourceCode() ; // used by commandline tester..
383                 public abstract void setSource(string str);
384                 public abstract string toSourcePreview() ;
385                 public abstract void removeFiles() ;
386                  public abstract void  findTransStrings(Node? node );
387         } 
388
389 }
390