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 library path.context; | 5 library path.context; |
6 | 6 |
7 import 'style.dart'; | 7 import 'style.dart'; |
8 import 'parsed_path.dart'; | 8 import 'parsed_path.dart'; |
9 import 'path_exception.dart'; | 9 import 'path_exception.dart'; |
10 import '../path.dart' as p; | 10 import '../path.dart' as p; |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 for (var i = parsed.parts.length - 1; i >= 0; i--) { | 416 for (var i = parsed.parts.length - 1; i >= 0; i--) { |
417 if (!parsed.parts[i].isEmpty) { | 417 if (!parsed.parts[i].isEmpty) { |
418 parsed.parts[i] = parsed.basenameWithoutExtension; | 418 parsed.parts[i] = parsed.basenameWithoutExtension; |
419 break; | 419 break; |
420 } | 420 } |
421 } | 421 } |
422 | 422 |
423 return parsed.toString(); | 423 return parsed.toString(); |
424 } | 424 } |
425 | 425 |
426 /// Returns the path represented by [uri]. | 426 /// Returns the path represented by [uri], which may be a [String] or a [Uri]. |
427 /// | 427 /// |
428 /// For POSIX and Windows styles, [uri] must be a `file:` URI. For the URL | 428 /// For POSIX and Windows styles, [uri] must be a `file:` URI. For the URL |
429 /// style, this will just convert [uri] to a string. | 429 /// style, this will just convert [uri] to a string. |
430 /// | 430 /// |
431 /// // POSIX | 431 /// // POSIX |
432 /// context.fromUri(Uri.parse('file:///path/to/foo')) | 432 /// context.fromUri('file:///path/to/foo') |
433 /// // -> '/path/to/foo' | 433 /// // -> '/path/to/foo' |
434 /// | 434 /// |
435 /// // Windows | 435 /// // Windows |
436 /// context.fromUri(Uri.parse('file:///C:/path/to/foo')) | 436 /// context.fromUri('file:///C:/path/to/foo') |
437 /// // -> r'C:\path\to\foo' | 437 /// // -> r'C:\path\to\foo' |
438 /// | 438 /// |
439 /// // URL | 439 /// // URL |
440 /// context.fromUri(Uri.parse('http://dartlang.org/path/to/foo')) | 440 /// context.fromUri('http://dartlang.org/path/to/foo') |
441 /// // -> 'http://dartlang.org/path/to/foo' | 441 /// // -> 'http://dartlang.org/path/to/foo' |
442 String fromUri(Uri uri) => style.pathFromUri(uri); | 442 String fromUri(uri) { |
| 443 if (uri is String) uri = Uri.parse(uri); |
| 444 return style.pathFromUri(uri); |
| 445 } |
443 | 446 |
444 /// Returns the URI that represents [path]. | 447 /// Returns the URI that represents [path]. |
445 /// | 448 /// |
446 /// For POSIX and Windows styles, this will return a `file:` URI. For the URL | 449 /// For POSIX and Windows styles, this will return a `file:` URI. For the URL |
447 /// style, this will just convert [path] to a [Uri]. | 450 /// style, this will just convert [path] to a [Uri]. |
448 /// | 451 /// |
449 /// // POSIX | 452 /// // POSIX |
450 /// context.toUri('/path/to/foo') | 453 /// context.toUri('/path/to/foo') |
451 /// // -> Uri.parse('file:///path/to/foo') | 454 /// // -> Uri.parse('file:///path/to/foo') |
452 /// | 455 /// |
(...skipping 30 matching lines...) Expand all Loading... |
483 // Show the arguments. | 486 // Show the arguments. |
484 var message = new StringBuffer(); | 487 var message = new StringBuffer(); |
485 message.write("$method("); | 488 message.write("$method("); |
486 message.write(args.take(numArgs) | 489 message.write(args.take(numArgs) |
487 .map((arg) => arg == null ? "null" : '"$arg"') | 490 .map((arg) => arg == null ? "null" : '"$arg"') |
488 .join(", ")); | 491 .join(", ")); |
489 message.write("): part ${i - 1} was null, but part $i was not."); | 492 message.write("): part ${i - 1} was null, but part $i was not."); |
490 throw new ArgumentError(message.toString()); | 493 throw new ArgumentError(message.toString()); |
491 } | 494 } |
492 } | 495 } |
OLD | NEW |