-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdebug.js
186 lines (164 loc) · 5.18 KB
/
debug.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/**
* @file
* @summary Provides a way to filter out console verbosity.
*
* @author WebItUp
* @version 0.4.0
*
* @license <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPL</a>.
* @copyright All rights reserved <a href="http://www.webitup.fr">copyright WebItUp</a>
* @name https://github.com/jsBoot/jsboot.js/blob/master/src/jsboot/debug/console.js#74-70c39446998be95596b03bc170b23bba337ce8b4
*/
/*jshint devel:true*/
jsBoot.add(console).as('nativeConsole');
jsBoot.pack('jsBoot.debug', function(api) {
'use strict';
// Verbosity controller
var e = {
'DEBUG': 1,
'LOG': 2,
'INFO': 4,
'WARN': 8,
'ERROR': 16,
'TRACE': 32,
'ALL': 63
};
this.console = {
VERBOSITY: e.ALL
};
// console.time('start');
Object.keys(e).forEach(function(i) {
var level = this.console[i] = e[i];
var nativeMeth = api.nativeConsole[i.toLowerCase()];
api.nativeConsole[i.toLowerCase()] = (function() {
if (this.console.VERBOSITY & level) {
// var args = Array.prototype.slice(arguments);
// args.push(Date.now());
// console.timeEnd('start');
// console.timeEnd('previous');
// console.time('previous');
// Might very well crash IE bitch
try {
nativeMeth.apply(api.nativeConsole, arguments);
}catch (e) {
Array.prototype.slice(arguments).forEach(function(arg) {
nativeMeth.apply(api.nativeConsole, [arg]);
});
}
}
}.bind(this));
}, this);
});
/**
* @file
* @summary A css-reloader/refresher debugging helper.
*
* @author WebItUp
* @version 0.4.0
*
* @license <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPL</a>.
* @copyright All rights reserved <a href="http://www.webitup.fr">copyright WebItUp</a>
* @name https://github.com/jsBoot/jsboot.js/blob/master/src/jsboot/debug/css.js#74-70c39446998be95596b03bc170b23bba337ce8b4
*/
jsBoot.pack('jsBoot.debug', function() {
/*jshint browser:true*/
'use strict';
var cssReload = function() {
Array.prototype.forEach.call(document.getElementsByTagName('link'), function(item) {
if (item.rel && item.rel.match(/style/)) {
var p = item.getAttribute('href').replace(/\?jsbootCacheBuster=[^&]+/, '') +
'?jsbootCacheBuster=' + Date.now();
item.setAttribute('href', p);
}
});
Array.prototype.forEach.call(document.getElementsByTagName('style'), function(item) {
if (item.type && item.type.match(/\/css$/) && item.innerHTML.match(/@import/)) {
var bef = item.nextSibling;
var pn = item.parentNode;
item.parentNode.removeChild(item);
if (bef)
bef.parentNode.insertBefore(item, bef);
else
pn.appendChild(item);
}
});
};
var cssPollerTout;
this.cssPoller = new (function() {
this.boot = function(time) {
this.shutdown();
cssPollerTout = setInterval(cssReload, (time || 1) * 1000);
};
this.shutdown = function() {
if (cssPollerTout) {
clearInterval(cssPollerTout);
cssPollerTout = null;
}
};
this.trigger = function() {
cssReload();
};
this.status = function() {
return !!cssPollerTout;
};
})();
});
/**
* @file
* @summary Declare a dummy debug default error handler
*
* @author WebItUp
* @version 0.4.0
*
* @license <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPL</a>.
* @copyright All rights reserved <a href="http://www.webitup.fr">copyright WebItUp</a>
* @name https://github.com/jsBoot/jsboot.js/blob/master/src/jsboot/debug/console.js#74-70c39446998be95596b03bc170b23bba337ce8b4
*/
jsBoot.use('jsBoot.core');
jsBoot.run(function(api) {
/*global console, location*/
'use strict';
// The default error handler is a stupid logger to console
var markee = ' ┌∩┐(◣_◢)┌∩┐ ';
api.core.registerErrorHandler(function(str, fileName, lineNumber) {
console.error(markee, markee, markee);
console.warn('File:', fileName);
console.warn('Number:', lineNumber);
console.warn('Date', new Date());
console.warn('Location', location.href);
console.error('Exception:', str);
console.error(markee, markee, markee);
return false;
});
});
/**
* @file
* @summary Debug core providing a tick method for perf measurements
*
* @author WebItUp
* @version 0.4.0
*
* @license <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPL</a>.
* @copyright All rights reserved <a href="http://www.webitup.fr">copyright WebItUp</a>
* @name https://github.com/jsBoot/jsboot.js/blob/master/src/jsboot/debug/tick.js#74-70c39446998be95596b03bc170b23bba337ce8b4
*/
jsBoot.pack('jsBoot.debug', function() {
/*global console*/
'use strict';
var started = false;
this.tick = function(message, end) {
console.info(' [jsBoot.debug.tick]', message);
if (started) {
console.timeEnd('Time since last tick');
}else {
started = console.time('Total time') || true;
}
console.time('Time since last tick');
if (end) {
started = false;
console.info(' [jsBoot.debug.tick]', 'Ending measurement! Total boot time:');
console.timeEnd('Total time');
}
};
this.tick('Debug module fully loaded. Starting time measurement');
});