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 /// A simple library for rendering a list of files as a directory tree. | 5 /// A simple library for rendering a list of files as a directory tree. |
6 library pub.directory_tree; | 6 library pub.directory_tree; |
7 | 7 |
8 import 'package:path/path.dart' as path; | 8 import 'package:path/path.dart' as path; |
9 | 9 |
| 10 import 'utils.dart'; |
| 11 |
10 /// Draws a directory tree for the given list of files. Given a list of files | 12 /// Draws a directory tree for the given list of files. Given a list of files |
11 /// like: | 13 /// like: |
12 /// | 14 /// |
13 /// TODO | 15 /// TODO |
14 /// example/console_example.dart | 16 /// example/console_example.dart |
15 /// example/main.dart | 17 /// example/main.dart |
16 /// example/web copy/web_example.dart | 18 /// example/web copy/web_example.dart |
17 /// test/absolute_test.dart | 19 /// test/absolute_test.dart |
18 /// test/basename_test.dart | 20 /// test/basename_test.dart |
19 /// test/dirname_test.dart | 21 /// test/dirname_test.dart |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 if (isLast) return " "; | 96 if (isLast) return " "; |
95 return "| "; | 97 return "| "; |
96 } | 98 } |
97 | 99 |
98 void _draw(StringBuffer buffer, String prefix, bool isLast, | 100 void _draw(StringBuffer buffer, String prefix, bool isLast, |
99 String name, Map children) { | 101 String name, Map children) { |
100 // Don't draw a line for the root node. | 102 // Don't draw a line for the root node. |
101 if (name != null) _drawLine(buffer, prefix, isLast, name); | 103 if (name != null) _drawLine(buffer, prefix, isLast, name); |
102 | 104 |
103 // Recurse to the children. | 105 // Recurse to the children. |
104 var childNames = new List.from(children.keys); | 106 var childNames = ordered(children.keys); |
105 childNames.sort(); | |
106 | 107 |
107 _drawChild(bool isLastChild, String child) { | 108 _drawChild(bool isLastChild, String child) { |
108 var childPrefix = _getPrefix(name == null, isLast); | 109 var childPrefix = _getPrefix(name == null, isLast); |
109 _draw(buffer, '$prefix$childPrefix', isLastChild, child, children[child]); | 110 _draw(buffer, '$prefix$childPrefix', isLastChild, child, children[child]); |
110 } | 111 } |
111 | 112 |
112 if (name == null || childNames.length <= 10) { | 113 if (name == null || childNames.length <= 10) { |
113 // Not too many, so show all the children. | 114 // Not too many, so show all the children. |
114 for (var i = 0; i < childNames.length; i++) { | 115 for (var i = 0; i < childNames.length; i++) { |
115 _drawChild(i == childNames.length - 1, childNames[i]); | 116 _drawChild(i == childNames.length - 1, childNames[i]); |
116 } | 117 } |
117 } else { | 118 } else { |
118 // Show the first few. | 119 // Show the first few. |
119 _drawChild(false, childNames[0]); | 120 _drawChild(false, childNames[0]); |
120 _drawChild(false, childNames[1]); | 121 _drawChild(false, childNames[1]); |
121 _drawChild(false, childNames[2]); | 122 _drawChild(false, childNames[2]); |
122 | 123 |
123 // Elide the middle ones. | 124 // Elide the middle ones. |
124 buffer.write(prefix); | 125 buffer.write(prefix); |
125 buffer.write(_getPrefix(name == null, isLast)); | 126 buffer.write(_getPrefix(name == null, isLast)); |
126 buffer.writeln('| (${childNames.length - 6} more...)'); | 127 buffer.writeln('| (${childNames.length - 6} more...)'); |
127 | 128 |
128 // Show the last few. | 129 // Show the last few. |
129 _drawChild(false, childNames[childNames.length - 3]); | 130 _drawChild(false, childNames[childNames.length - 3]); |
130 _drawChild(false, childNames[childNames.length - 2]); | 131 _drawChild(false, childNames[childNames.length - 2]); |
131 _drawChild(true, childNames[childNames.length - 1]); | 132 _drawChild(true, childNames[childNames.length - 1]); |
132 } | 133 } |
133 } | 134 } |
OLD | NEW |