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

Side by Side Diff: lib/src/barback/barback_server.dart

Issue 1902993003: Upgrade pub to work with crypto 1.0.0 or later. (Closed) Base URL: https://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
« no previous file with comments | « no previous file | lib/src/utils.dart » ('j') | lib/src/utils.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:convert';
7 import 'dart:io'; 6 import 'dart:io';
8 7
9 import 'package:barback/barback.dart'; 8 import 'package:barback/barback.dart';
10 import "package:crypto/crypto.dart";
11 import 'package:mime/mime.dart'; 9 import 'package:mime/mime.dart';
12 import 'package:path/path.dart' as path; 10 import 'package:path/path.dart' as path;
13 import 'package:shelf/shelf.dart' as shelf; 11 import 'package:shelf/shelf.dart' as shelf;
14 import 'package:stack_trace/stack_trace.dart'; 12 import 'package:stack_trace/stack_trace.dart';
15 13
16 import '../barback.dart'; 14 import '../barback.dart';
17 import '../io.dart'; 15 import '../io.dart';
18 import '../log.dart' as log; 16 import '../log.dart' as log;
19 import '../utils.dart'; 17 import '../utils.dart';
20 import 'base_server.dart'; 18 import 'base_server.dart';
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 } 154 }
157 155
158 /// Returns the body of [asset] as a response to [request]. 156 /// Returns the body of [asset] as a response to [request].
159 Future<shelf.Response> _serveAsset(shelf.Request request, Asset asset) async { 157 Future<shelf.Response> _serveAsset(shelf.Request request, Asset asset) async {
160 try { 158 try {
161 var pair = tee(await validateStream(asset.read())); 159 var pair = tee(await validateStream(asset.read()));
162 var responseStream = pair.first; 160 var responseStream = pair.first;
163 var hashStream = pair.last; 161 var hashStream = pair.last;
164 162
165 // Allow the asset to be cached based on its content hash. 163 // Allow the asset to be cached based on its content hash.
166 var sha = new SHA1(); 164 var assetSha = await sha1Stream(hashStream);
167 await hashStream.forEach((chunk) {
168 sha.add(chunk);
169 });
170
171 var assetSha = BASE64.encode(sha.close());
172 var previousSha = request.headers["if-none-match"]; 165 var previousSha = request.headers["if-none-match"];
173 166
174 var headers = { 167 var headers = {
175 // Enable browser caching of the asset. 168 // Enable browser caching of the asset.
176 "ETag": assetSha 169 "ETag": assetSha
177 }; 170 };
178 171
179 if (assetSha == previousSha) { 172 if (assetSha == previousSha) {
180 // We're requesting an unchanged asset so don't push its body down the 173 // We're requesting an unchanged asset so don't push its body down the
181 // wire again. 174 // wire again.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 : error = null, 228 : error = null,
236 isCached = false; 229 isCached = false;
237 230
238 BarbackServerResult._cached(this.url, this.id) 231 BarbackServerResult._cached(this.url, this.id)
239 : error = null, 232 : error = null,
240 isCached = true; 233 isCached = true;
241 234
242 BarbackServerResult._failure(this.url, this.id, this.error) 235 BarbackServerResult._failure(this.url, this.id, this.error)
243 : isCached = false; 236 : isCached = false;
244 } 237 }
OLDNEW
« no previous file with comments | « no previous file | lib/src/utils.dart » ('j') | lib/src/utils.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698