Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1490)

Side by Side Diff: lib/src/log.dart

Issue 1852513004: Make life a little more sparkly. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Message logging. 5 /// Message logging.
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:convert'; 7 import 'dart:convert';
8 import 'dart:io'; 8 import 'dart:io';
9 9
10 import 'package:args/command_runner.dart'; 10 import 'package:args/command_runner.dart';
(...skipping 11 matching lines...) Expand all
22 /// 22 ///
23 /// log.json.error(...); 23 /// log.json.error(...);
24 final json = new _JsonLogger(); 24 final json = new _JsonLogger();
25 25
26 /// The current logging verbosity. 26 /// The current logging verbosity.
27 Verbosity verbosity = Verbosity.NORMAL; 27 Verbosity verbosity = Verbosity.NORMAL;
28 28
29 /// Whether or not to log entries with prejudice. 29 /// Whether or not to log entries with prejudice.
30 bool withPrejudice = false; 30 bool withPrejudice = false;
31 31
32 /// Whether or not to log entries sparklily.
33 bool sparkle = false;
34
32 /// In cases where there's a ton of log spew, make sure we don't eat infinite 35 /// In cases where there's a ton of log spew, make sure we don't eat infinite
33 /// memory. 36 /// memory.
34 /// 37 ///
35 /// This can occur when the backtracking solver stumbles into a pathological 38 /// This can occur when the backtracking solver stumbles into a pathological
36 /// dependency graph. It generally will find a solution, but it may log 39 /// dependency graph. It generally will find a solution, but it may log
37 /// thousands and thousands of entries to get there. 40 /// thousands and thousands of entries to get there.
38 const _MAX_TRANSCRIPT = 10000; 41 const _MAX_TRANSCRIPT = 10000;
39 42
40 /// The list of recorded log messages. Will only be recorded if 43 /// The list of recorded log messages. Will only be recorded if
41 /// [recordTranscript()] is called. 44 /// [recordTranscript()] is called.
42 Transcript<Entry> _transcript; 45 Transcript<Entry> _transcript;
43 46
44 /// The currently-animated progress indicator, if any. 47 /// The currently-animated progress indicator, if any.
45 /// 48 ///
46 /// This will also be in [_progresses]. 49 /// This will also be in [_progresses].
47 Progress _animatedProgress; 50 Progress _animatedProgress;
48 51
49 _Collapser _collapser; 52 _Collapser _collapser;
50 53
51 final _cyan = getSpecial('\u001b[36m'); 54 final _cyan = getSpecial('\u001b[36m');
52 final _green = getSpecial('\u001b[32m'); 55 final _green = getSpecial('\u001b[32m');
53 final _magenta = getSpecial('\u001b[35m'); 56 final _magenta = getSpecial('\u001b[35m');
54 final _red = getSpecial('\u001b[31m'); 57 final _red = getSpecial('\u001b[31m');
55 final _yellow = getSpecial('\u001b[33m'); 58 final _yellow = getSpecial('\u001b[33m');
59 final _blue = getSpecial('\u001b[34m');
56 final _gray = getSpecial('\u001b[1;30m'); 60 final _gray = getSpecial('\u001b[1;30m');
57 final _none = getSpecial('\u001b[0m'); 61 final _none = getSpecial('\u001b[0m');
58 final _noColor = getSpecial('\u001b[39m'); 62 final _noColor = getSpecial('\u001b[39m');
59 final _bold = getSpecial('\u001b[1m'); 63 final _bold = getSpecial('\u001b[1m');
60 64
65 /// All color codees.
66 var _allColors = [_cyan, _green, _magenta, _red, _yellow, _blue, ''];
67
61 /// An enum type for defining the different logging levels a given message can 68 /// An enum type for defining the different logging levels a given message can
62 /// be associated with. 69 /// be associated with.
63 /// 70 ///
64 /// By default, [ERROR] and [WARNING] messages are printed to sterr. [MESSAGE] 71 /// By default, [ERROR] and [WARNING] messages are printed to sterr. [MESSAGE]
65 /// messages are printed to stdout, and others are ignored. 72 /// messages are printed to stdout, and others are ignored.
66 class Level { 73 class Level {
67 /// An error occurred and an operation could not be completed. 74 /// An error occurred and an operation could not be completed.
68 /// 75 ///
69 /// Usually shown to the user on stderr. 76 /// Usually shown to the user on stderr.
70 static const ERROR = const Level._("ERR "); 77 static const ERROR = const Level._("ERR ");
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 var entry = new Entry(level, lines.map(format).toList()); 241 var entry = new Entry(level, lines.map(format).toList());
235 242
236 var logFn = verbosity._loggers[level]; 243 var logFn = verbosity._loggers[level];
237 if (logFn != null) logFn(entry); 244 if (logFn != null) logFn(entry);
238 245
239 if (_transcript != null) _transcript.add(entry); 246 if (_transcript != null) _transcript.add(entry);
240 } 247 }
241 248
242 final _capitalizedAnsiEscape = new RegExp(r'\u001b\[\d+(;\d+)?M'); 249 final _capitalizedAnsiEscape = new RegExp(r'\u001b\[\d+(;\d+)?M');
243 250
251 final _character = new RegExp(r'(\u001b\[\d+(?:;\d+)?m)|.');
252
244 /// Returns [string] formatted as it would be if it were logged. 253 /// Returns [string] formatted as it would be if it were logged.
245 String format(String string) { 254 String format(String string) {
246 if (!withPrejudice) return string; 255 if (sparkle) {
256 string = string.replaceAllMapped(_character, (match) {
257 if (match[1] != null) return match[0];
258 var char = "${choose(_allColors)}${match[0]}$_noColor";
259 return (withPrejudice || random.nextBool()) ? char : "$_bold$char$_none";
260 });
261 }
247 262
248 // [toUpperCase] can corrupt terminal colorings, so fix them up using 263 if (withPrejudice) {
249 // [replaceAllMapped]. 264 // [toUpperCase] can corrupt terminal colorings, so fix them up using
250 string = string.toUpperCase().replaceAllMapped(_capitalizedAnsiEscape, 265 // [replaceAllMapped].
251 (match) => match[0].toLowerCase()); 266 string = string.toUpperCase().replaceAllMapped(_capitalizedAnsiEscape,
267 (match) => match[0].toLowerCase());
252 268
253 // Don't use [bold] because it's disabled under [withPrejudice]. 269 // Don't use [bold] because it's disabled under [withPrejudice].
254 return "$_bold$string$_none"; 270 string = "$_bold$string$_none";
271 }
272
273 return string;
255 } 274 }
256 275
257 /// Logs an asynchronous IO operation. 276 /// Logs an asynchronous IO operation.
258 /// 277 ///
259 /// Logs [startMessage] before the operation starts, then when [operation] 278 /// Logs [startMessage] before the operation starts, then when [operation]
260 /// completes, invokes [endMessage] with the completion value and logs the 279 /// completes, invokes [endMessage] with the completion value and logs the
261 /// result of that. Returns a future that completes after the logging is done. 280 /// result of that. Returns a future that completes after the logging is done.
262 /// 281 ///
263 /// If [endMessage] is omitted, then logs "Begin [startMessage]" before the 282 /// If [endMessage] is omitted, then logs "Begin [startMessage]" before the
264 /// operation and "End [startMessage]" after it. 283 /// operation and "End [startMessage]" after it.
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 } 466 }
448 } 467 }
449 468
450 /// Wraps [text] in the ANSI escape codes to make it bold when on a platform 469 /// Wraps [text] in the ANSI escape codes to make it bold when on a platform
451 /// that supports that. 470 /// that supports that.
452 /// 471 ///
453 /// Use this to highlight the most important piece of a long chunk of text. 472 /// Use this to highlight the most important piece of a long chunk of text.
454 /// 473 ///
455 /// This is disabled under [withPrejudice] since all text is bold with 474 /// This is disabled under [withPrejudice] since all text is bold with
456 /// prejudice. 475 /// prejudice.
457 String bold(text) => withPrejudice ? text : "$_bold$text$_none"; 476 String bold(text) => (withPrejudice || sparkle) ? text : "$_bold$text$_none";
458 477
459 /// Wraps [text] in the ANSI escape codes to make it gray when on a platform 478 /// Wraps [text] in the ANSI escape codes to make it gray when on a platform
460 /// that supports that. 479 /// that supports that.
461 /// 480 ///
462 /// Use this for text that's less important than the text around it. 481 /// Use this for text that's less important than the text around it.
463 /// 482 ///
464 /// The gray marker also enables bold, so it needs to be handled specially with 483 /// The gray marker also enables bold, so it needs to be handled specially with
465 /// [withPrejudice] to avoid disabling bolding entirely. 484 /// [withPrejudice] to avoid disabling bolding entirely.
466 String gray(text) => 485 String gray(text) {
467 withPrejudice ? "$_gray$text$_noColor" : "$_gray$text$_none"; 486 if (sparkle) return text;
487 if (withPrejudice) return "$_gray$text$_noColor";
488 return "$_gray$text$_none";
489 }
468 490
469 /// Wraps [text] in the ANSI escape codes to color it cyan when on a platform 491 /// Wraps [text] in the ANSI escape codes to color it cyan when on a platform
470 /// that supports that. 492 /// that supports that.
471 /// 493 ///
472 /// Use this to highlight something interesting but neither good nor bad. 494 /// Use this to highlight something interesting but neither good nor bad.
473 String cyan(text) => "$_cyan$text$_noColor"; 495 String cyan(text) => sparkle ? text : "$_cyan$text$_noColor";
474 496
475 /// Wraps [text] in the ANSI escape codes to color it green when on a platform 497 /// Wraps [text] in the ANSI escape codes to color it green when on a platform
476 /// that supports that. 498 /// that supports that.
477 /// 499 ///
478 /// Use this to highlight something successful or otherwise positive. 500 /// Use this to highlight something successful or otherwise positive.
479 String green(text) => "$_green$text$_noColor"; 501 String green(text) => sparkle ? text : "$_green$text$_noColor";
480 502
481 /// Wraps [text] in the ANSI escape codes to color it magenta when on a 503 /// Wraps [text] in the ANSI escape codes to color it magenta when on a
482 /// platform that supports that. 504 /// platform that supports that.
483 /// 505 ///
484 /// Use this to highlight something risky that the user should be aware of but 506 /// Use this to highlight something risky that the user should be aware of but
485 /// may intend to do. 507 /// may intend to do.
486 String magenta(text) => "$_magenta$text$_noColor"; 508 String magenta(text) => sparkle ? text : "$_magenta$text$_noColor";
487 509
488 /// Wraps [text] in the ANSI escape codes to color it red when on a platform 510 /// Wraps [text] in the ANSI escape codes to color it red when on a platform
489 /// that supports that. 511 /// that supports that.
490 /// 512 ///
491 /// Use this to highlight unequivocal errors, problems, or failures. 513 /// Use this to highlight unequivocal errors, problems, or failures.
492 String red(text) => "$_red$text$_noColor"; 514 String red(text) => sparkle ? text : "$_red$text$_noColor";
493 515
494 /// Wraps [text] in the ANSI escape codes to color it yellow when on a platform 516 /// Wraps [text] in the ANSI escape codes to color it yellow when on a platform
495 /// that supports that. 517 /// that supports that.
496 /// 518 ///
497 /// Use this to highlight warnings, cautions or other things that are bad but 519 /// Use this to highlight warnings, cautions or other things that are bad but
498 /// do not prevent the user's goal from being reached. 520 /// do not prevent the user's goal from being reached.
499 String yellow(text) => "$_yellow$text$_noColor"; 521 String yellow(text) => sparkle ? text : "$_yellow$text$_noColor";
500 522
501 /// Log function that prints the message to stdout. 523 /// Log function that prints the message to stdout.
502 void _logToStdout(Entry entry) { 524 void _logToStdout(Entry entry) {
503 _logToStream(stdout, entry, showLabel: false); 525 _logToStream(stdout, entry, showLabel: false);
504 } 526 }
505 527
506 /// Log function that prints the message to stdout with the level name. 528 /// Log function that prints the message to stdout with the level name.
507 void _logToStdoutWithLabel(Entry entry) { 529 void _logToStdoutWithLabel(Entry entry) {
508 _logToStream(stdout, entry, showLabel: true); 530 _logToStream(stdout, entry, showLabel: true);
509 } 531 }
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 message(_firstMessage); 655 message(_firstMessage);
634 } else { 656 } else {
635 message(_template.replaceAll("##", _count.toString())); 657 message(_template.replaceAll("##", _count.toString()));
636 } 658 }
637 } 659 }
638 660
639 void _initTimer() { 661 void _initTimer() {
640 _timer = new Timer(_window, end); 662 _timer = new Timer(_window, end);
641 } 663 }
642 } 664 }
OLDNEW
« no previous file with comments | « lib/src/command_runner.dart ('k') | lib/src/utils.dart » ('j') | lib/src/utils.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698