OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Run with, e.g.: | 5 // Run with, e.g.: |
6 // mojo_shell "mojo:dart_wget http://www.google.com" | 6 // mojo_shell "mojo:dart_wget http://www.google.com" |
7 | 7 |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
10 import 'dart:mojo.application'; | 10 import 'dart:mojo.application'; |
(...skipping 17 matching lines...) Expand all Loading... |
28 if (args == null || args.length != 2) { | 28 if (args == null || args.length != 2) { |
29 throw "Expected URL argument"; | 29 throw "Expected URL argument"; |
30 } | 30 } |
31 | 31 |
32 ByteData bodyData = await _getUrl(args[1]); | 32 ByteData bodyData = await _getUrl(args[1]); |
33 print(">>> Body <<<"); | 33 print(">>> Body <<<"); |
34 print(new String.fromCharCodes(bodyData.buffer.asUint8List())); | 34 print(new String.fromCharCodes(bodyData.buffer.asUint8List())); |
35 print(">>> EOF <<<"); | 35 print(">>> EOF <<<"); |
36 | 36 |
37 _closeProxies(); | 37 _closeProxies(); |
38 close(); | 38 await close(); |
| 39 assert(MojoHandle.reportLeakedHandles()); |
39 } | 40 } |
40 | 41 |
41 Future<ByteData> _getUrl(String url) async { | 42 Future<ByteData> _getUrl(String url) async { |
42 _initProxiesIfNeeded(); | 43 _initProxiesIfNeeded(); |
43 | 44 |
44 var urlRequest = new UrlRequest() | 45 var urlRequest = new UrlRequest() |
45 ..url = url | 46 ..url = url |
46 ..autoFollowRedirects = true; | 47 ..autoFollowRedirects = true; |
47 | 48 |
48 var urlResponse = await _urlLoader.ptr.start(urlRequest); | 49 var urlResponse = await _urlLoader.ptr.start(urlRequest); |
49 print(">>> Headers <<<"); | 50 print(">>> Headers <<<"); |
50 print(urlResponse.response.headers.join('\n')); | 51 print(urlResponse.response.headers.join('\n')); |
51 | 52 |
52 return DataPipeDrainer.drainHandle(urlResponse.response.body); | 53 return DataPipeDrainer.drainHandle(urlResponse.response.body); |
53 } | 54 } |
54 | 55 |
55 void _initProxiesIfNeeded() { | 56 void _initProxiesIfNeeded() { |
56 if (_networkService == null) { | 57 if (_networkService == null) { |
(...skipping 11 matching lines...) Expand all Loading... |
68 _urlLoader = null; | 69 _urlLoader = null; |
69 _networkService.close(); | 70 _networkService.close(); |
70 _networkService = null; | 71 _networkService = null; |
71 } | 72 } |
72 } | 73 } |
73 | 74 |
74 main(List args) { | 75 main(List args) { |
75 MojoHandle appHandle = new MojoHandle(args[0]); | 76 MojoHandle appHandle = new MojoHandle(args[0]); |
76 new WGet.fromHandle(appHandle); | 77 new WGet.fromHandle(appHandle); |
77 } | 78 } |
OLD | NEW |