]>
git.r.bdr.sh - rbdr/cologne/blob - lib/cobalt.js
4 // Load up dependencies
5 if (typeof require
=== 'function') {
6 var Ne
= require('neon');
9 var Microtime
= require('microtime');
11 Module
= global
.Module
;
16 Module(Cobalt
, 'Logger')({});
17 Module(Cobalt
, 'Formatter')({});
19 // Load up loggers + formatters
20 if (typeof require
=== 'function') {
22 Cobalt
.Formatter
.Token
= require('./formatters/token.js').Token
;
25 Cobalt
.Logger
.JsConsole
= require('./loggers/console.js').JsConsole
;
26 Cobalt
.Logger
.Socket
= require('./loggers/socket.js').Socket
;
29 Cobalt
.now = function () {
30 if (typeof performance
!== 'undefined' && performance
.timing
) {
31 return performance
.timing
.navigationStart
+ performance
.now();
34 if (typeof Microtime
!== 'undefined') {
35 return Microtime
.nowDouble() * 1000;
41 // Stringify with circular dereference.
42 Cobalt
.stringify = function (object
) {
43 var cache
= [], stringified
;
44 stringified
= JSON
.stringify(object
, function (key
, value
) {
45 if (typeof value
=== 'object' && value
!== null) {
46 if (cache
.indexOf(value
) !== -1) {
58 Cobalt
.Console
= Class(Cobalt
, 'Console')({
60 from : "Generic Cobalt Logger",
65 separatorLength : 120,
66 currentColor : "black",
68 // Initialize instance of cobalt console
69 // and extend configuration.
70 init : function (config
) {
75 for (property
in config
) {
76 co
[property
] = config
[property
];
81 addLogger : function (logger
) {
82 this.loggers
.push(logger
);
85 removeLogger : function (logger
) {
88 index
= this.loggers
.indexOf(logger
);
89 this.loggers
.splice(index
, 1);
92 // Builds a Cobalt Log Object
93 buildLog : function (item
, level
) {
94 var co
= this, oldItem
, logObject
= {};
96 if (typeof item
=== "undefined" || item
=== null || !item
._cobaltLog
) {
97 logObject
.message
= item
;
98 logObject
._cobaltLog
= true;
99 logObject
._from
= co
.from;
100 logObject
._level
= level
|| 6;
101 logObject
._levelString
= co
._levelString(logObject
._level
);
102 logObject
._version
= co
.version
;
103 logObject
._timestamp
= co
.now();
104 logObject
._indentLevel
= co
.currentIndent
;
105 logObject
._color
= co
.currentColor
;
106 logObject
._separator
= false;
113 extendLog : function (extendingObject
) {
114 var co
= this, logObject
,
117 logObject
= co
.buildLog(undefined, 6);
118 extendingObject
= extendingObject
|| {};
120 for (property
in extendingObject
) {
121 if (extendingObject
.hasOwnProperty(property
)) {
122 logObject
[property
] = extendingObject
[property
];
129 buildSeparator : function (type
) {
134 _version : co
.version
,
135 _timestamp : co
.now(),
136 _separatorType : type
,
137 _indentLevel : co
.currentIndent
,
138 _color : co
.currentColor
142 _log : function (severity
) {
148 for (i
= 1; i
< arguments
.length
; i
++) {
149 if (typeof arguments
[i
] === 'undefined') {
150 logObjectArray
.push(co
.buildLog("undefined", severity
));
152 logObjectArray
.push(co
.buildLog(arguments
[i
], severity
));
156 for (j
= 0; j
< co
.loggers
.length
; j
++) {
157 co
.loggers
[j
].log
.apply(co
.loggers
[j
], logObjectArray
);
162 this._log
.apply(this, [7].concat([].splice
.call(arguments
, 0)));
166 this._log
.apply(this, [6].concat([].splice
.call(arguments
, 0)));
169 notice : function () {
170 this._log
.apply(this, [5].concat([].splice
.call(arguments
, 0)));
174 this._log
.apply(this, [4].concat([].splice
.call(arguments
, 0)));
177 error : function () {
178 this._log
.apply(this, [3].concat([].splice
.call(arguments
, 0)));
181 separator : function (type
) {
184 co
._log(7, co
.buildSeparator(type
));
187 space : function (lines
) {
191 if (typeof lines
=== "undefined") {
195 for (i
= 0; i
< lines
; i
++) {
202 indent : function (callback
) {
205 if (typeof callback
=== "function") {
206 co
.currentIndent
= co
.currentIndent
+ co
.indentSize
;
208 co
.currentIndent
= co
.currentIndent
- co
.indentSize
;
210 co
.currentIndent
= co
.currentIndent
+ co
.indentSize
;
216 outdent : function (callback
) {
219 if (typeof callback
=== "function") {
220 co
.currentIndent
= co
.currentIndent
- co
.indentSize
;
221 if (co
.currentIndent
< 0) {
222 co
.currentIndent
= 0;
227 co
.currentIndent
= co
.currentIndent
+ co
.indentSize
;
229 co
.currentIndent
= co
.currentIndent
- co
.indentSize
;
230 if (co
.currentIndent
< 0) {
231 co
.currentIndent
= 0;
238 color : function (color
, callback
) {
240 oldColor
= co
.currentColor
;
242 if (typeof callback
=== "function") {
243 co
.currentColor
= color
;
245 co
.currentColor
= oldColor
;
247 co
.currentColor
= color
;
253 // Returns the current time in microseconds.
255 if (typeof performance
!== 'undefined' && performance
.timing
) {
256 return performance
.timing
.navigationStart
+ performance
.now();
259 if (typeof Microtime
!== 'undefined') {
260 return Microtime
.nowDouble() * 1000;
266 _levelString : function (level
) {
297 if (Cobalt
.Console
.__objectSpy
) {
298 Cobalt
.Console
.__objectSpy
.destroy();
301 if (typeof require
=== 'function') {
302 global
.Formatter
= Cobalt
.Formatter
;
303 global
.Logger
= Cobalt
.Logger
;
304 global
.Console
= Cobalt
.Console
;
305 global
.now
= Cobalt
.now
;
306 global
.stringify
= Cobalt
.stringify
;
308 global
.Cobalt
= Cobalt
;
311 }(typeof window
!== 'undefined' ? window : (typeof module
.exports
!== 'undefined' ? module
.exports : self
)));