OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |