piggly 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/README.markdown +84 -0
  2. data/Rakefile +19 -0
  3. data/bin/piggly +245 -0
  4. data/lib/piggly/compiler/cache.rb +151 -0
  5. data/lib/piggly/compiler/pretty.rb +67 -0
  6. data/lib/piggly/compiler/queue.rb +46 -0
  7. data/lib/piggly/compiler/tags.rb +244 -0
  8. data/lib/piggly/compiler/trace.rb +91 -0
  9. data/lib/piggly/compiler.rb +5 -0
  10. data/lib/piggly/config.rb +43 -0
  11. data/lib/piggly/filecache.rb +40 -0
  12. data/lib/piggly/installer.rb +95 -0
  13. data/lib/piggly/parser/grammar.tt +747 -0
  14. data/lib/piggly/parser/nodes.rb +319 -0
  15. data/lib/piggly/parser/parser.rb +11783 -0
  16. data/lib/piggly/parser/traversal.rb +48 -0
  17. data/lib/piggly/parser/treetop_ruby19_patch.rb +17 -0
  18. data/lib/piggly/parser.rb +67 -0
  19. data/lib/piggly/profile.rb +87 -0
  20. data/lib/piggly/reporter/html.rb +207 -0
  21. data/lib/piggly/reporter/piggly.css +187 -0
  22. data/lib/piggly/reporter/sortable.js +493 -0
  23. data/lib/piggly/reporter.rb +21 -0
  24. data/lib/piggly/task.rb +64 -0
  25. data/lib/piggly/util.rb +28 -0
  26. data/lib/piggly/version.rb +15 -0
  27. data/lib/piggly.rb +18 -0
  28. data/spec/compiler/cache_spec.rb +9 -0
  29. data/spec/compiler/pretty_spec.rb +9 -0
  30. data/spec/compiler/queue_spec.rb +3 -0
  31. data/spec/compiler/rewrite_spec.rb +3 -0
  32. data/spec/compiler/tags_spec.rb +285 -0
  33. data/spec/compiler/trace_spec.rb +173 -0
  34. data/spec/config_spec.rb +58 -0
  35. data/spec/filecache_spec.rb +70 -0
  36. data/spec/fixtures/snippets.sql +158 -0
  37. data/spec/grammar/expression_spec.rb +302 -0
  38. data/spec/grammar/statements/assignment_spec.rb +70 -0
  39. data/spec/grammar/statements/exception_spec.rb +52 -0
  40. data/spec/grammar/statements/if_spec.rb +178 -0
  41. data/spec/grammar/statements/loop_spec.rb +41 -0
  42. data/spec/grammar/statements/sql_spec.rb +71 -0
  43. data/spec/grammar/tokens/comment_spec.rb +58 -0
  44. data/spec/grammar/tokens/datatype_spec.rb +52 -0
  45. data/spec/grammar/tokens/identifier_spec.rb +58 -0
  46. data/spec/grammar/tokens/keyword_spec.rb +44 -0
  47. data/spec/grammar/tokens/label_spec.rb +40 -0
  48. data/spec/grammar/tokens/literal_spec.rb +30 -0
  49. data/spec/grammar/tokens/lval_spec.rb +50 -0
  50. data/spec/grammar/tokens/number_spec.rb +34 -0
  51. data/spec/grammar/tokens/sqlkeywords_spec.rb +45 -0
  52. data/spec/grammar/tokens/string_spec.rb +54 -0
  53. data/spec/grammar/tokens/whitespace_spec.rb +40 -0
  54. data/spec/parser_spec.rb +8 -0
  55. data/spec/profile_spec.rb +5 -0
  56. data/spec/reporter/html_spec.rb +0 -0
  57. data/spec/spec_helper.rb +61 -0
  58. data/spec/spec_suite.rb +5 -0
  59. metadata +121 -0
@@ -0,0 +1,493 @@
1
+ /*
2
+ SortTable
3
+ version 2
4
+ 7th April 2007
5
+ Stuart Langridge, http://www.kryogenix.org/code/browser/sorttable/
6
+
7
+ Instructions:
8
+ Download this file
9
+ Add <script src="sorttable.js"></script> to your HTML
10
+ Add class="sortable" to any table you'd like to make sortable
11
+ Click on the headers to sort
12
+
13
+ Thanks to many, many people for contributions and suggestions.
14
+ Licenced as X11: http://www.kryogenix.org/code/browser/licence.html
15
+ This basically means: do what you want with it.
16
+ */
17
+
18
+
19
+ var stIsIE = /*@cc_on!@*/false;
20
+
21
+ sorttable = {
22
+ init: function() {
23
+ // quit if this function has already been called
24
+ if (arguments.callee.done) return;
25
+ // flag this function so we don't do the same thing twice
26
+ arguments.callee.done = true;
27
+ // kill the timer
28
+ if (_timer) clearInterval(_timer);
29
+
30
+ if (!document.createElement || !document.getElementsByTagName) return;
31
+
32
+ sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/;
33
+
34
+ forEach(document.getElementsByTagName('table'), function(table) {
35
+ if (table.className.search(/\bsortable\b/) != -1) {
36
+ sorttable.makeSortable(table);
37
+ }
38
+ });
39
+
40
+ },
41
+
42
+ makeSortable: function(table) {
43
+ if (table.getElementsByTagName('thead').length == 0) {
44
+ // table doesn't have a tHead. Since it should have, create one and
45
+ // put the first table row in it.
46
+ the = document.createElement('thead');
47
+ the.appendChild(table.rows[0]);
48
+ table.insertBefore(the,table.firstChild);
49
+ }
50
+ // Safari doesn't support table.tHead, sigh
51
+ if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0];
52
+
53
+ if (table.tHead.rows.length != 1) return; // can't cope with two header rows
54
+
55
+ // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as
56
+ // "total" rows, for example). This is B&R, since what you're supposed
57
+ // to do is put them in a tfoot. So, if there are sortbottom rows,
58
+ // for backwards compatibility, move them to tfoot (creating it if needed).
59
+ sortbottomrows = [];
60
+ for (var i=0; i<table.rows.length; i++) {
61
+ if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
62
+ sortbottomrows[sortbottomrows.length] = table.rows[i];
63
+ }
64
+ }
65
+ if (sortbottomrows) {
66
+ if (table.tFoot == null) {
67
+ // table doesn't have a tfoot. Create one.
68
+ tfo = document.createElement('tfoot');
69
+ table.appendChild(tfo);
70
+ }
71
+ for (var i=0; i<sortbottomrows.length; i++) {
72
+ tfo.appendChild(sortbottomrows[i]);
73
+ }
74
+ delete sortbottomrows;
75
+ }
76
+
77
+ // work through each column and calculate its type
78
+ headrow = table.tHead.rows[0].cells;
79
+ for (var i=0; i<headrow.length; i++) {
80
+ // manually override the type with a sorttable_type attribute
81
+ if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
82
+ mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/);
83
+ if (mtch) { override = mtch[1]; }
84
+ if (mtch && typeof sorttable["sort_"+override] == 'function') {
85
+ headrow[i].sorttable_sortfunction = sorttable["sort_"+override];
86
+ } else {
87
+ headrow[i].sorttable_sortfunction = sorttable.guessType(table,i);
88
+ }
89
+ // make it clickable to sort
90
+ headrow[i].sorttable_columnindex = i;
91
+ headrow[i].sorttable_tbody = table.tBodies[0];
92
+ dean_addEvent(headrow[i],"click", function(e) {
93
+
94
+ if (this.className.search(/\bsorttable_sorted\b/) != -1) {
95
+ // if we're already sorted by this column, just
96
+ // reverse the table, which is quicker
97
+ sorttable.reverse(this.sorttable_tbody);
98
+ this.className = this.className.replace('sorttable_sorted',
99
+ 'sorttable_sorted_reverse');
100
+ this.removeChild(document.getElementById('sorttable_sortfwdind'));
101
+ sortrevind = document.createElement('span');
102
+ sortrevind.id = "sorttable_sortrevind";
103
+ sortrevind.innerHTML = stIsIE ? '&nbsp<font face="webdings">5</font>' : '&nbsp;&#x25B4;';
104
+ this.appendChild(sortrevind);
105
+ return;
106
+ }
107
+ if (this.className.search(/\bsorttable_sorted_reverse\b/) != -1) {
108
+ // if we're already sorted by this column in reverse, just
109
+ // re-reverse the table, which is quicker
110
+ sorttable.reverse(this.sorttable_tbody);
111
+ this.className = this.className.replace('sorttable_sorted_reverse',
112
+ 'sorttable_sorted');
113
+ this.removeChild(document.getElementById('sorttable_sortrevind'));
114
+ sortfwdind = document.createElement('span');
115
+ sortfwdind.id = "sorttable_sortfwdind";
116
+ sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;';
117
+ this.appendChild(sortfwdind);
118
+ return;
119
+ }
120
+
121
+ // remove sorttable_sorted classes
122
+ theadrow = this.parentNode;
123
+ forEach(theadrow.childNodes, function(cell) {
124
+ if (cell.nodeType == 1) { // an element
125
+ cell.className = cell.className.replace('sorttable_sorted_reverse','');
126
+ cell.className = cell.className.replace('sorttable_sorted','');
127
+ }
128
+ });
129
+ sortfwdind = document.getElementById('sorttable_sortfwdind');
130
+ if (sortfwdind) { sortfwdind.parentNode.removeChild(sortfwdind); }
131
+ sortrevind = document.getElementById('sorttable_sortrevind');
132
+ if (sortrevind) { sortrevind.parentNode.removeChild(sortrevind); }
133
+
134
+ this.className += ' sorttable_sorted';
135
+ sortfwdind = document.createElement('span');
136
+ sortfwdind.id = "sorttable_sortfwdind";
137
+ sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;';
138
+ this.appendChild(sortfwdind);
139
+
140
+ // build an array to sort. This is a Schwartzian transform thing,
141
+ // i.e., we "decorate" each row with the actual sort key,
142
+ // sort based on the sort keys, and then put the rows back in order
143
+ // which is a lot faster because you only do getInnerText once per row
144
+ row_array = [];
145
+ col = this.sorttable_columnindex;
146
+ rows = this.sorttable_tbody.rows;
147
+ for (var j=0; j<rows.length; j++) {
148
+ row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
149
+ }
150
+ /* If you want a stable sort, uncomment the following line */
151
+ //sorttable.shaker_sort(row_array, this.sorttable_sortfunction);
152
+ /* and comment out this one */
153
+ row_array.sort(this.sorttable_sortfunction);
154
+
155
+ tb = this.sorttable_tbody;
156
+ for (var j=0; j<row_array.length; j++) {
157
+ tb.appendChild(row_array[j][1]);
158
+ }
159
+
160
+ delete row_array;
161
+ });
162
+ }
163
+ }
164
+ },
165
+
166
+ guessType: function(table, column) {
167
+ // guess the type of a column based on its first non-blank row
168
+ sortfn = sorttable.sort_alpha;
169
+ for (var i=0; i<table.tBodies[0].rows.length; i++) {
170
+ text = sorttable.getInnerText(table.tBodies[0].rows[i].cells[column]);
171
+ if (text != '') {
172
+ if (text.match(/^-?[�$�]?[\d,.]+%?$/)) {
173
+ return sorttable.sort_numeric;
174
+ }
175
+ // check for a date: dd/mm/yyyy or dd/mm/yy
176
+ // can have / or . or - as separator
177
+ // can be mm/dd as well
178
+ possdate = text.match(sorttable.DATE_RE)
179
+ if (possdate) {
180
+ // looks like a date
181
+ first = parseInt(possdate[1]);
182
+ second = parseInt(possdate[2]);
183
+ if (first > 12) {
184
+ // definitely dd/mm
185
+ return sorttable.sort_ddmm;
186
+ } else if (second > 12) {
187
+ return sorttable.sort_mmdd;
188
+ } else {
189
+ // looks like a date, but we can't tell which, so assume
190
+ // that it's dd/mm (English imperialism!) and keep looking
191
+ sortfn = sorttable.sort_ddmm;
192
+ }
193
+ }
194
+ }
195
+ }
196
+ return sortfn;
197
+ },
198
+
199
+ getInnerText: function(node) {
200
+ // gets the text we want to use for sorting for a cell.
201
+ // strips leading and trailing whitespace.
202
+ // this is *not* a generic getInnerText function; it's special to sorttable.
203
+ // for example, you can override the cell text with a customkey attribute.
204
+ // it also gets .value for <input> fields.
205
+
206
+ hasInputs = (typeof node.getElementsByTagName == 'function') &&
207
+ node.getElementsByTagName('input').length;
208
+
209
+ if (node.getAttribute("sorttable_customkey") != null) {
210
+ return node.getAttribute("sorttable_customkey");
211
+ }
212
+ else if (typeof node.textContent != 'undefined' && !hasInputs) {
213
+ return node.textContent.replace(/^\s+|\s+$/g, '');
214
+ }
215
+ else if (typeof node.innerText != 'undefined' && !hasInputs) {
216
+ return node.innerText.replace(/^\s+|\s+$/g, '');
217
+ }
218
+ else if (typeof node.text != 'undefined' && !hasInputs) {
219
+ return node.text.replace(/^\s+|\s+$/g, '');
220
+ }
221
+ else {
222
+ switch (node.nodeType) {
223
+ case 3:
224
+ if (node.nodeName.toLowerCase() == 'input') {
225
+ return node.value.replace(/^\s+|\s+$/g, '');
226
+ }
227
+ case 4:
228
+ return node.nodeValue.replace(/^\s+|\s+$/g, '');
229
+ break;
230
+ case 1:
231
+ case 11:
232
+ var innerText = '';
233
+ for (var i = 0; i < node.childNodes.length; i++) {
234
+ innerText += sorttable.getInnerText(node.childNodes[i]);
235
+ }
236
+ return innerText.replace(/^\s+|\s+$/g, '');
237
+ break;
238
+ default:
239
+ return '';
240
+ }
241
+ }
242
+ },
243
+
244
+ reverse: function(tbody) {
245
+ // reverse the rows in a tbody
246
+ newrows = [];
247
+ for (var i=0; i<tbody.rows.length; i++) {
248
+ newrows[newrows.length] = tbody.rows[i];
249
+ }
250
+ for (var i=newrows.length-1; i>=0; i--) {
251
+ tbody.appendChild(newrows[i]);
252
+ }
253
+ delete newrows;
254
+ },
255
+
256
+ /* sort functions
257
+ each sort function takes two parameters, a and b
258
+ you are comparing a[0] and b[0] */
259
+ sort_numeric: function(a,b) {
260
+ aa = parseFloat(a[0].replace(/[^0-9.-]/g,''));
261
+ if (isNaN(aa)) aa = 0;
262
+ bb = parseFloat(b[0].replace(/[^0-9.-]/g,''));
263
+ if (isNaN(bb)) bb = 0;
264
+ return aa-bb;
265
+ },
266
+ sort_alpha: function(a,b) {
267
+ if (a[0]==b[0]) return 0;
268
+ if (a[0]<b[0]) return -1;
269
+ return 1;
270
+ },
271
+ sort_ddmm: function(a,b) {
272
+ mtch = a[0].match(sorttable.DATE_RE);
273
+ y = mtch[3]; m = mtch[2]; d = mtch[1];
274
+ if (m.length == 1) m = '0'+m;
275
+ if (d.length == 1) d = '0'+d;
276
+ dt1 = y+m+d;
277
+ mtch = b[0].match(sorttable.DATE_RE);
278
+ y = mtch[3]; m = mtch[2]; d = mtch[1];
279
+ if (m.length == 1) m = '0'+m;
280
+ if (d.length == 1) d = '0'+d;
281
+ dt2 = y+m+d;
282
+ if (dt1==dt2) return 0;
283
+ if (dt1<dt2) return -1;
284
+ return 1;
285
+ },
286
+ sort_mmdd: function(a,b) {
287
+ mtch = a[0].match(sorttable.DATE_RE);
288
+ y = mtch[3]; d = mtch[2]; m = mtch[1];
289
+ if (m.length == 1) m = '0'+m;
290
+ if (d.length == 1) d = '0'+d;
291
+ dt1 = y+m+d;
292
+ mtch = b[0].match(sorttable.DATE_RE);
293
+ y = mtch[3]; d = mtch[2]; m = mtch[1];
294
+ if (m.length == 1) m = '0'+m;
295
+ if (d.length == 1) d = '0'+d;
296
+ dt2 = y+m+d;
297
+ if (dt1==dt2) return 0;
298
+ if (dt1<dt2) return -1;
299
+ return 1;
300
+ },
301
+
302
+ shaker_sort: function(list, comp_func) {
303
+ // A stable sort function to allow multi-level sorting of data
304
+ // see: http://en.wikipedia.org/wiki/Cocktail_sort
305
+ // thanks to Joseph Nahmias
306
+ var b = 0;
307
+ var t = list.length - 1;
308
+ var swap = true;
309
+
310
+ while(swap) {
311
+ swap = false;
312
+ for(var i = b; i < t; ++i) {
313
+ if ( comp_func(list[i], list[i+1]) > 0 ) {
314
+ var q = list[i]; list[i] = list[i+1]; list[i+1] = q;
315
+ swap = true;
316
+ }
317
+ } // for
318
+ t--;
319
+
320
+ if (!swap) break;
321
+
322
+ for(var i = t; i > b; --i) {
323
+ if ( comp_func(list[i], list[i-1]) < 0 ) {
324
+ var q = list[i]; list[i] = list[i-1]; list[i-1] = q;
325
+ swap = true;
326
+ }
327
+ } // for
328
+ b++;
329
+
330
+ } // while(swap)
331
+ }
332
+ }
333
+
334
+ /* ******************************************************************
335
+ Supporting functions: bundled here to avoid depending on a library
336
+ ****************************************************************** */
337
+
338
+ // Dean Edwards/Matthias Miller/John Resig
339
+
340
+ /* for Mozilla/Opera9 */
341
+ if (document.addEventListener) {
342
+ document.addEventListener("DOMContentLoaded", sorttable.init, false);
343
+ }
344
+
345
+ /* for Internet Explorer */
346
+ /*@cc_on @*/
347
+ /*@if (@_win32)
348
+ document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>");
349
+ var script = document.getElementById("__ie_onload");
350
+ script.onreadystatechange = function() {
351
+ if (this.readyState == "complete") {
352
+ sorttable.init(); // call the onload handler
353
+ }
354
+ };
355
+ /*@end @*/
356
+
357
+ /* for Safari */
358
+ if (/WebKit/i.test(navigator.userAgent)) { // sniff
359
+ var _timer = setInterval(function() {
360
+ if (/loaded|complete/.test(document.readyState)) {
361
+ sorttable.init(); // call the onload handler
362
+ }
363
+ }, 10);
364
+ }
365
+
366
+ /* for other browsers */
367
+ window.onload = sorttable.init;
368
+
369
+ // written by Dean Edwards, 2005
370
+ // with input from Tino Zijdel, Matthias Miller, Diego Perini
371
+
372
+ // http://dean.edwards.name/weblog/2005/10/add-event/
373
+
374
+ function dean_addEvent(element, type, handler) {
375
+ if (element.addEventListener) {
376
+ element.addEventListener(type, handler, false);
377
+ } else {
378
+ // assign each event handler a unique ID
379
+ if (!handler.$$guid) handler.$$guid = dean_addEvent.guid++;
380
+ // create a hash table of event types for the element
381
+ if (!element.events) element.events = {};
382
+ // create a hash table of event handlers for each element/event pair
383
+ var handlers = element.events[type];
384
+ if (!handlers) {
385
+ handlers = element.events[type] = {};
386
+ // store the existing event handler (if there is one)
387
+ if (element["on" + type]) {
388
+ handlers[0] = element["on" + type];
389
+ }
390
+ }
391
+ // store the event handler in the hash table
392
+ handlers[handler.$$guid] = handler;
393
+ // assign a global event handler to do all the work
394
+ element["on" + type] = handleEvent;
395
+ }
396
+ };
397
+ // a counter used to create unique IDs
398
+ dean_addEvent.guid = 1;
399
+
400
+ function removeEvent(element, type, handler) {
401
+ if (element.removeEventListener) {
402
+ element.removeEventListener(type, handler, false);
403
+ } else {
404
+ // delete the event handler from the hash table
405
+ if (element.events && element.events[type]) {
406
+ delete element.events[type][handler.$$guid];
407
+ }
408
+ }
409
+ };
410
+
411
+ function handleEvent(event) {
412
+ var returnValue = true;
413
+ // grab the event object (IE uses a global event object)
414
+ event = event || fixEvent(((this.ownerDocument || this.document || this).parentWindow || window).event);
415
+ // get a reference to the hash table of event handlers
416
+ var handlers = this.events[event.type];
417
+ // execute each event handler
418
+ for (var i in handlers) {
419
+ this.$$handleEvent = handlers[i];
420
+ if (this.$$handleEvent(event) === false) {
421
+ returnValue = false;
422
+ }
423
+ }
424
+ return returnValue;
425
+ };
426
+
427
+ function fixEvent(event) {
428
+ // add W3C standard event methods
429
+ event.preventDefault = fixEvent.preventDefault;
430
+ event.stopPropagation = fixEvent.stopPropagation;
431
+ return event;
432
+ };
433
+ fixEvent.preventDefault = function() {
434
+ this.returnValue = false;
435
+ };
436
+ fixEvent.stopPropagation = function() {
437
+ this.cancelBubble = true;
438
+ }
439
+
440
+ // Dean's forEach: http://dean.edwards.name/base/forEach.js
441
+ /*
442
+ forEach, version 1.0
443
+ Copyright 2006, Dean Edwards
444
+ License: http://www.opensource.org/licenses/mit-license.php
445
+ */
446
+
447
+ // array-like enumeration
448
+ if (!Array.forEach) { // mozilla already supports this
449
+ Array.forEach = function(array, block, context) {
450
+ for (var i = 0; i < array.length; i++) {
451
+ block.call(context, array[i], i, array);
452
+ }
453
+ };
454
+ }
455
+
456
+ // generic enumeration
457
+ Function.prototype.forEach = function(object, block, context) {
458
+ for (var key in object) {
459
+ if (typeof this.prototype[key] == "undefined") {
460
+ block.call(context, object[key], key, object);
461
+ }
462
+ }
463
+ };
464
+
465
+ // character enumeration
466
+ String.forEach = function(string, block, context) {
467
+ Array.forEach(string.split(""), function(chr, index) {
468
+ block.call(context, chr, index, string);
469
+ });
470
+ };
471
+
472
+ // globally resolve forEach enumeration
473
+ var forEach = function(object, block, context) {
474
+ if (object) {
475
+ var resolve = Object; // default
476
+ if (object instanceof Function) {
477
+ // functions have a "length" property
478
+ resolve = Function;
479
+ } else if (object.forEach instanceof Function) {
480
+ // the object implements a custom forEach method so use that
481
+ object.forEach(block, context);
482
+ return;
483
+ } else if (typeof object == "string") {
484
+ // the object is a string
485
+ resolve = String;
486
+ } else if (typeof object.length == "number") {
487
+ // the object is array-like
488
+ resolve = Array;
489
+ }
490
+ resolve.forEach(object, block, context);
491
+ }
492
+ };
493
+
@@ -0,0 +1,21 @@
1
+ module Piggly
2
+ class Reporter
3
+
4
+ def self.report_path(file=nil, ext=nil)
5
+ Piggly::Config.mkpath(Config.report_root, ext ? File.basename(file).sub(/\.[^.]+$/i, ext) : file)
6
+ end
7
+
8
+ # Copy each file to Config.report_root
9
+ def self.install(*files)
10
+ files.each do |file|
11
+ src = File.join(File.dirname(__FILE__), 'reporter', file)
12
+ dst = report_path(file)
13
+
14
+ File.open(dst, 'w') {|f| f.write File.read(src) }
15
+ end
16
+ end
17
+
18
+ end
19
+ end
20
+
21
+ require File.join(File.dirname(__FILE__), *%w[reporter html])
@@ -0,0 +1,64 @@
1
+ require 'rake'
2
+ require 'rake/tasklib'
3
+
4
+ module Piggly
5
+ class Task < Rake::TaskLib
6
+ attr_accessor :name, # Name of the test task
7
+ :libs, # List of paths added to $LOAD_PATH before running tests
8
+ :test_files, # List of ruby test files to load
9
+ :proc_files, # List of pl/pgsql stored procedures to compile
10
+ :verbose,
11
+ :warning, # Execute ruby -w if true
12
+ :report_dir, # Where to store reports (default piggly/report)
13
+ :cache_root, # Where to store compiler cache (default piggly/cache)
14
+ :aggregate, # Accumulate coverage from the previous run (default false)
15
+ :piggly_opts,
16
+ :piggly_path # Path to bin/piggly (default searches with ruby -S)
17
+
18
+ def initialize(name = :piggly)
19
+ @name = name
20
+ @libs = %w[]
21
+ @verbose = false
22
+ @warning = false
23
+ @test_files = []
24
+ @proc_files = []
25
+ @ruby_opts = []
26
+ @output_dir = 'piggly/output'
27
+ @cache_root = 'piggly/cache'
28
+ @piggly_path = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'bin', 'piggly'))
29
+ @piggly_opts = ''
30
+ @aggregate = false
31
+ yield self if block_given?
32
+ define
33
+ end
34
+
35
+ # create tasks defined by this task lib
36
+ def define
37
+ desc 'Run piggly tests' + (@name == :piggly ? '' : " for #{@name}")
38
+ task @name do
39
+ @piggly_opts << "--aggregate" if @aggregate
40
+
41
+ RakeFileUtils.verbose(@verbose) do
42
+ run_code = (piggly_path.nil?) ? '-S piggly' : quote(piggly_path)
43
+ opts = @ruby_opts.clone
44
+ opts.push "-I#{Array(@libs).join(File::PATH_SEPARATOR)}"
45
+ opts.push run_code
46
+ opts.push '-w' if @warning
47
+
48
+ ruby opts.join(' ') + ' ' +
49
+ @piggly_opts + ' ' +
50
+ %{-o #{quote @output_dir} } +
51
+ %{-c #{quote @cache_root} } +
52
+ proc_files.map{|s| %[-s "#{s}" ] }.join +
53
+ test_files.map{|f| quote(f) }.join(' ')
54
+ end
55
+
56
+ end
57
+ end
58
+
59
+ def quote(string)
60
+ %{"#{string}"}
61
+ end
62
+
63
+ end
64
+ end
@@ -0,0 +1,28 @@
1
+ module Enumerable
2
+
3
+ # Count number of elements, optionally filtered by a block
4
+ def count
5
+ if block_given?
6
+ inject(0){|count, x| count + (yield(x) ? 1 : 0) }
7
+ else
8
+ size
9
+ end
10
+ end unless method_defined?(:count)
11
+
12
+ # Sum elements, optionally transformed by a block
13
+ def sum(init = 0)
14
+ if block_given?
15
+ inject(init){|sum, e| sum + yield(e) }
16
+ else
17
+ inject(init){|sum, e| sum + e }
18
+ end
19
+ end unless method_defined?(:sum)
20
+
21
+ def group_by(collection = Hash.new{|h,k| h[k] = [] })
22
+ inject(collection) do |hash, item|
23
+ hash[yield(item)] << item
24
+ hash
25
+ end
26
+ end unless method_defined?(:group_by)
27
+
28
+ end
@@ -0,0 +1,15 @@
1
+ module Piggly
2
+ module VERSION
3
+ MAJOR = 1
4
+ MINOR = 2
5
+ TINY = 0
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+
9
+ RELEASE_DATE = '2010-04-19'
10
+
11
+ def self.to_s
12
+ STRING
13
+ end
14
+ end
15
+ end
data/lib/piggly.rb ADDED
@@ -0,0 +1,18 @@
1
+ unless defined?(PIGGLY_ROOT)
2
+ PIGGLY_ROOT = File.join(File.dirname(__FILE__), 'piggly')
3
+ end
4
+
5
+ require 'fileutils'
6
+ require 'digest/md5'
7
+ require File.join(PIGGLY_ROOT, 'version')
8
+ require File.join(PIGGLY_ROOT, 'config')
9
+ require File.join(PIGGLY_ROOT, 'filecache')
10
+ require File.join(PIGGLY_ROOT, 'compiler')
11
+ require File.join(PIGGLY_ROOT, 'parser')
12
+ require File.join(PIGGLY_ROOT, 'profile')
13
+ require File.join(PIGGLY_ROOT, 'installer')
14
+ require File.join(PIGGLY_ROOT, 'reporter')
15
+ require File.join(PIGGLY_ROOT, 'util')
16
+
17
+ # used to generate MD5 tags for AST nodes
18
+ $PIGGLY_GENTAG = 0
@@ -0,0 +1,9 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
2
+
3
+ module Piggly
4
+
5
+ describe CompilerCache do
6
+
7
+ end
8
+
9
+ end
@@ -0,0 +1,9 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
2
+
3
+ module Piggly
4
+
5
+ describe PrettyCompiler do
6
+
7
+ end
8
+
9
+ end
@@ -0,0 +1,3 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
2
+
3
+
@@ -0,0 +1,3 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
2
+
3
+