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

Unified Diff: pkg/polymer/lib/src/build/wrapped_logger.dart

Issue 427623002: Polymer transformer logs now show on the frontend for pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: dont wrap the logger in release mode Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/lib/src/build/wrapped_logger.dart
diff --git a/pkg/polymer/lib/src/build/wrapped_logger.dart b/pkg/polymer/lib/src/build/wrapped_logger.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c732b75b73c3978be79fc12817242c46e1c59bc4
--- /dev/null
+++ b/pkg/polymer/lib/src/build/wrapped_logger.dart
@@ -0,0 +1,106 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library polymer.src.build.wrapped_logger;
+
+import 'dart:async';
+import 'dart:convert';
+
+import 'package:barback/barback.dart';
+import 'package:source_span/source_span.dart';
+
+import 'common.dart' as common;
+
+/// A simple class to wrap one TransformLogger with another one that writes all
+/// logs to a file and then forwards the calls to the child.
+class WrappedLogger implements TransformLogger {
+ Transform _transform;
+ List<Map> _logs = new List<Map>();
+
+ bool convertErrorsToWarnings;
+
+ WrappedLogger(this._transform, {this.convertErrorsToWarnings: false});
+
+ void info(String message, {AssetId asset, SourceSpan span}) {
+ _transform.logger.info(message, asset: asset, span: span);
+ _addLog(asset, LogLevel.INFO, message, span);
+ }
+
+ void fine(String message, {AssetId asset, SourceSpan span}) {
+ _transform.logger.fine(message, asset: asset, span: span);
+ _addLog(asset, LogLevel.FINE, message, span);
+ }
+
+ void warning(String message, {AssetId asset, SourceSpan span}) {
+ _transform.logger.warning(message, asset: asset, span: span);
+ _addLog(asset, LogLevel.WARNING, message, span);
+ }
+
+ void error(String message, {AssetId asset, SourceSpan span}) {
+ if (convertErrorsToWarnings) {
+ _transform.logger.warning(message, asset: asset, span: span);
+ } else {
+ _transform.logger.error(message, asset: asset, span: span);
+ }
+ _addLog(asset, LogLevel.ERROR, message, span);
+ }
+
+ /// Outputs the log data to a JSON serialized file.
+ Future writeOutput() {
+ return getNextLogAssetPath().then((path) {
+ _transform.addOutput(new Asset.fromString(path, JSON.encode(_logs)));
+ });
+ }
+
+ // Each phase outputs a new log file with an incrementing # appended, this
+ // figures out the next # to use.
+ Future<String> getNextLogAssetPath([int nextNumber = 1]) {
+ var nextAssetPath = _transform.primaryInput.id.addExtension(
+ '${common.LOG_EXTENSION}.$nextNumber');
+ return _transform.hasInput(nextAssetPath).then((exists) {
+ if (!exists) return nextAssetPath;
+ return getNextLogAssetPath(++nextNumber);
+ });
+ }
+
+ // Combines all existing ._buildLogs.* files into a single ._buildLogs file.
+ static Future combineLogFiles(
+ Transform transform, [int nextNumber = 1, List<Map> logs]) {
+ if (logs == null) logs = new List<Map>();
+ var primaryInputId = transform.primaryInput.id;
+ var nextAssetPath =
+ primaryInputId.addExtension('${common.LOG_EXTENSION}.$nextNumber');
+ return transform.readInputAsString(nextAssetPath).then(
+ (data) {
+ logs.addAll(JSON.decode(data));
+ return combineLogFiles(transform, ++nextNumber, logs);
+ },
+ onError: (_) {
+ transform.addOutput(new Asset.fromString(
+ primaryInputId.addExtension(common.LOG_EXTENSION),
+ JSON.encode(logs)));
+ });
+ }
+
+ void _addLog(AssetId assetId, LogLevel level, String message,
+ SourceSpan span) {
+ var data = {
+ 'level': level.name,
+ 'message': message,
+ };
+ if (assetId != null) {
+ data['assetId'] = {
+ 'package': assetId.package,
+ 'path': assetId.path,
+ };
+ }
+ if (span != null) {
+ data['span'] = {
+ 'location': span.start.toolString,
+ 'text': new HtmlEscape().convert(span.text),
+ };
+ }
+ _logs.add(data);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698