Files
sdk/utils/pub/utils.dart
T
nweiz@google.com 3085912d01 Add support for pub install.
This CL does several things:

* Adds explicit infrastructure for package sources.
* Adds the Dart SDK as such a source.
* Adds an explicit class for managing the packages/ directory (AppCache, as
  opposed to SystemCache).
* Adds an "install" command that installs to packages/, backed up by the system
  cache.

Review URL: https://chromiumcodereview.appspot.com//10340005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7398 260f80e4-7a28-3924-810f-c04153c831b5
2012-05-07 19:58:32 +00:00

53 lines
1.2 KiB
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* Generic utility functions. Stuff that should possibly be in core.
*/
#library('pub_utils');
// TODO(rnystrom): Move into String?
/** Pads [source] to [length] by adding spaces at the end. */
String padRight(String source, int length) {
final result = new StringBuffer();
result.add(source);
while (result.length < length) {
result.add(' ');
}
return result.toString();
}
/**
* Runs [fn] after [future] completes, whether it completes successfully or not.
* Essentially an asynchronous `finally` block.
*/
always(Future future, fn()) {
var completer = new Completer();
future.then((_) => fn());
future.handleException((_) {
fn();
return false;
});
}
/**
* Flattens nested lists into a single list containing only non-list elements.
*/
List flatten(List nested) {
var result = [];
helper(list) {
for (var element in list) {
if (element is List) {
helper(element);
} else {
result.add(element);
}
}
}
helper(nested);
return result;
}