| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // TODO(terry): Investigate common library for file I/O shared between frog and
tools. | 5 // TODO(terry): Investigate common library for file I/O shared between frog and
tools. |
| 6 | 6 |
| 7 /** Abstraction for file systems and utility functions to manipulate paths. */ | 7 /** Abstraction for file systems and utility functions to manipulate paths. */ |
| 8 library file_system; | 8 library file_system; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 if (piece == '..' && pieces.length > 0 && pieces.last != '.' | 40 if (piece == '..' && pieces.length > 0 && pieces.last != '.' |
| 41 && pieces.last != '..') { | 41 && pieces.last != '..') { |
| 42 pieces.removeLast(); | 42 pieces.removeLast(); |
| 43 } else if (piece != '') { | 43 } else if (piece != '') { |
| 44 if (pieces.length > 0 && pieces.last == '.') { | 44 if (pieces.length > 0 && pieces.last == '.') { |
| 45 pieces.removeLast(); | 45 pieces.removeLast(); |
| 46 } | 46 } |
| 47 pieces.add(piece); | 47 pieces.add(piece); |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 return Strings.join(pieces, '/'); | 50 return pieces.join('/'); |
| 51 } | 51 } |
| 52 | 52 |
| 53 /** Returns the directory name for the [path]. */ | 53 /** Returns the directory name for the [path]. */ |
| 54 String dirname(String path) { | 54 String dirname(String path) { |
| 55 path = canonicalizePath(path); | 55 path = canonicalizePath(path); |
| 56 | 56 |
| 57 int lastSlash = path.lastIndexOf('/', path.length); | 57 int lastSlash = path.lastIndexOf('/', path.length); |
| 58 if (lastSlash == -1) { | 58 if (lastSlash == -1) { |
| 59 return '.'; | 59 return '.'; |
| 60 } else { | 60 } else { |
| 61 return path.substring(0, lastSlash); | 61 return path.substring(0, lastSlash); |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 /** Returns the file name without directory for the [path]. */ | 65 /** Returns the file name without directory for the [path]. */ |
| 66 String basename(String path) { | 66 String basename(String path) { |
| 67 path = canonicalizePath(path); | 67 path = canonicalizePath(path); |
| 68 | 68 |
| 69 int lastSlash = path.lastIndexOf('/', path.length); | 69 int lastSlash = path.lastIndexOf('/', path.length); |
| 70 if (lastSlash == -1) { | 70 if (lastSlash == -1) { |
| 71 return path; | 71 return path; |
| 72 } else { | 72 } else { |
| 73 return path.substring(lastSlash + 1); | 73 return path.substring(lastSlash + 1); |
| 74 } | 74 } |
| 75 } | 75 } |
| OLD | NEW |