/usr/lib/nodejs/grunt-legacy-log/index.js is in node-grunt-legacy-log 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | /*
* grunt
* http://gruntjs.com/
*
* Copyright (c) 2014 "Cowboy" Ben Alman
* Licensed under the MIT license.
* https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
*/
'use strict';
// Nodejs libs.
var util = require('util');
// External libs.
var hooker = require('hooker');
// Requiring this here modifies the String prototype!
var colors = require('colors');
// The upcoming lodash 2.5+ should remove the need for underscore.string.
var _ = require('lodash');
_.str = require('underscore.string');
_.mixin(_.str.exports());
// TODO: ADD CHALK
var logUtils = require('grunt-legacy-log-utils');
function Log(options) {
// This property always refers to the "base" logger.
this.always = this;
// Extend options.
this.options = _.extend({}, {
// Show colors in output?
color: true,
// Enable verbose-mode logging?
verbose: false,
// Enable debug logging statement?
debug: false,
// Where should messages be output?
outStream: process.stdout,
// NOTE: the color, verbose, debug options will be ignored if the
// "grunt" option is specified! See the Log.prototype.option and
// the Log.prototype.error methods for more info.
grunt: null,
// Where should output wrap? If null, use legacy Grunt defaults.
maxCols: null,
// Should logger start muted?
muted: false,
}, options);
// True once anything has actually been logged.
this.hasLogged = false;
// Related verbose / notverbose loggers.
this.verbose = new VerboseLog(this, true);
this.notverbose = new VerboseLog(this, false);
this.verbose.or = this.notverbose;
this.notverbose.or = this.verbose;
// Apparently, people have using grunt.log in interesting ways. Just bind
// all methods so that "this" is irrelevant.
if (this.options.grunt) {
_.bindAll(this);
_.bindAll(this.verbose);
_.bindAll(this.notverbose);
}
}
exports.Log = Log;
// Am I doing it wrong? :P
function VerboseLog(parentLog, verbose) {
// Keep track of the original, base "Log" instance.
this.always = parentLog;
// This logger is either verbose (true) or notverbose (false).
this._isVerbose = verbose;
}
util.inherits(VerboseLog, Log);
VerboseLog.prototype._write = function() {
// Abort if not in correct verbose mode.
if (Boolean(this.option('verbose')) !== this._isVerbose) { return; }
// Otherwise... log!
return VerboseLog.super_.prototype._write.apply(this, arguments);
};
// Create read/write accessors that prefer the parent log's properties (in
// the case of verbose/notverbose) to the current log's properties.
function makeSmartAccessor(name, isOption) {
Object.defineProperty(Log.prototype, name, {
enumerable: true,
configurable: true,
get: function() {
return isOption ? this.always._options[name] : this.always['_' + name];
},
set: function(value) {
if (isOption) {
this.always._options[name] = value;
} else {
this.always['_' + name] = value;
}
},
});
}
makeSmartAccessor('options');
makeSmartAccessor('hasLogged');
makeSmartAccessor('muted', true);
// Disable colors if --no-colors was passed.
Log.prototype.initColors = function() {
if (this.option('no-color')) {
// String color getters should just return the string.
colors.mode = 'none';
// Strip colors from strings passed to console.log.
hooker.hook(console, 'log', function() {
var args = _.toArray(arguments);
return hooker.filter(this, args.map(function(arg) {
return typeof arg === 'string' ? colors.stripColors(arg) : arg;
}));
});
}
};
// Check for color, verbose, debug options through Grunt if specified,
// otherwise defer to options object properties.
Log.prototype.option = function(name) {
if (this.options.grunt && this.options.grunt.option) {
return this.options.grunt.option(name);
}
var no = name.match(/^no-(.+)$/);
return no ? !this.options[no[1]] : this.options[name];
};
// Parse certain markup in strings to be logged.
Log.prototype._markup = function(str) {
str = str || '';
// Make _foo_ underline.
str = str.replace(/(\s|^)_(\S|\S[\s\S]+?\S)_(?=[\s,.!?]|$)/g, '$1' + '$2'.underline);
// Make *foo* bold.
str = str.replace(/(\s|^)\*(\S|\S[\s\S]+?\S)\*(?=[\s,.!?]|$)/g, '$1' + '$2'.bold);
return str;
};
// Similar to util.format in the standard library, however it'll always
// convert the first argument to a string and treat it as the format string.
Log.prototype._format = function(args) {
args = _.toArray(args);
if (args.length > 0) {
args[0] = String(args[0]);
}
return util.format.apply(util, args);
};
Log.prototype._write = function(msg) {
// Abort if muted.
if (this.muted) { return; }
// Actually write output.
this.hasLogged = true;
msg = msg || '';
// Users should probably use the colors-provided methods, but if they
// don't, this should strip extraneous color codes.
if (this.option('no-color')) { msg = colors.stripColors(msg); }
// Actually write to stdout.
this.options.outStream.write(this._markup(msg));
};
Log.prototype._writeln = function(msg) {
// Write blank line if no msg is passed in.
this._write((msg || '') + '\n');
};
// Write output.
Log.prototype.write = function() {
this._write(this._format(arguments));
return this;
};
// Write a line of output.
Log.prototype.writeln = function() {
this._writeln(this._format(arguments));
return this;
};
Log.prototype.warn = function() {
var msg = this._format(arguments);
if (arguments.length > 0) {
this._writeln('>> '.red + _.trim(msg).replace(/\n/g, '\n>> '.red));
} else {
this._writeln('ERROR'.red);
}
return this;
};
Log.prototype.error = function() {
if (this.options.grunt && this.options.grunt.fail) {
this.options.grunt.fail.errorcount++;
}
this.warn.apply(this, arguments);
return this;
};
Log.prototype.ok = function() {
var msg = this._format(arguments);
if (arguments.length > 0) {
this._writeln('>> '.green + _.trim(msg).replace(/\n/g, '\n>> '.green));
} else {
this._writeln('OK'.green);
}
return this;
};
Log.prototype.errorlns = function() {
var msg = this._format(arguments);
this.error(this.wraptext(this.options.maxCols || 77, msg));
return this;
};
Log.prototype.oklns = function() {
var msg = this._format(arguments);
this.ok(this.wraptext(this.options.maxCols || 77, msg));
return this;
};
Log.prototype.success = function() {
var msg = this._format(arguments);
this._writeln(msg.green);
return this;
};
Log.prototype.fail = function() {
var msg = this._format(arguments);
this._writeln(msg.red);
return this;
};
Log.prototype.header = function() {
var msg = this._format(arguments);
// Skip line before header, but not if header is the very first line output.
if (this.hasLogged) { this._writeln(); }
this._writeln(msg.underline);
return this;
};
Log.prototype.subhead = function() {
var msg = this._format(arguments);
// Skip line before subhead, but not if subhead is the very first line output.
if (this.hasLogged) { this._writeln(); }
this._writeln(msg.bold);
return this;
};
// For debugging.
Log.prototype.debug = function() {
var msg = this._format(arguments);
if (this.option('debug')) {
this._writeln('[D] ' + msg.magenta);
}
return this;
};
// Write a line of a table.
Log.prototype.writetableln = function(widths, texts) {
this._writeln(this.table(widths, texts));
return this;
};
// Wrap a long line of text.
Log.prototype.writelns = function() {
var msg = this._format(arguments);
this._writeln(this.wraptext(this.options.maxCols || 80, msg));
return this;
};
// Display flags in verbose mode.
Log.prototype.writeflags = function(obj, prefix) {
var wordlist;
if (Array.isArray(obj)) {
wordlist = this.wordlist(obj);
} else if (typeof obj === 'object' && obj) {
wordlist = this.wordlist(Object.keys(obj).map(function(key) {
var val = obj[key];
return key + (val === true ? '' : '=' + JSON.stringify(val));
}));
}
this._writeln((prefix || 'Flags') + ': ' + (wordlist || '(none)'.cyan));
return this;
};
// Add static methods.
[
'wordlist',
'uncolor',
'wraptext',
'table',
].forEach(function(prop) {
Log.prototype[prop] = exports[prop] = logUtils[prop];
});
|