blob: 1adc883093675f7e8887f0e2a76c069e988c2e4a [file] [log] [blame]
// Copyright (c) 2014, 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.
library analyzer.src.generated.utilities_general;
import 'dart:collection';
import 'dart:developer' show UserTag;
/**
* Test if the given [value] is `false` or the string "false" (case-insensitive).
*/
bool isFalse(Object value) =>
value is bool ? !value : toLowerCase(value) == 'false';
/**
* Test if the given [value] is `true` or the string "true" (case-insensitive).
*/
bool isTrue(Object value) =>
value is bool ? value : toLowerCase(value) == 'true';
/**
* Safely convert this [value] to lower case, returning `null` if [value] is
* null.
*/
String toLowerCase(Object value) => value?.toString()?.toLowerCase();
/**
* Safely convert this [value] to upper case, returning `null` if [value] is
* null.
*/
String toUpperCase(Object value) => value?.toString()?.toUpperCase();
/**
* Jenkins hash function, optimized for small integers.
* Borrowed from sdk/lib/math/jenkins_smi_hash.dart.
*/
class JenkinsSmiHash {
static int combine(int hash, int value) {
hash = 0x1fffffff & (hash + value);
hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10));
return hash ^ (hash >> 6);
}
static int finish(int hash) {
hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3));
hash = hash ^ (hash >> 11);
return 0x1fffffff & (hash + ((0x00003fff & hash) << 15));
}
static int hash2(a, b) => finish(combine(combine(0, a), b));
static int hash3(a, b, c) => finish(combine(combine(combine(0, a), b), c));
static int hash4(a, b, c, d) =>
finish(combine(combine(combine(combine(0, a), b), c), d));
}
/**
* A simple limited queue.
*/
class LimitedQueue<E> extends ListQueue<E> {
final int limit;
/**
* Create a queue with [limit] items.
*/
LimitedQueue(this.limit);
@override
void add(E o) {
super.add(o);
while (length > limit) {
remove(first);
}
}
}
/**
* Helper class for gathering performance statistics. This class is modeled on
* the UserTag class in dart:developer so that it can interoperate easily with
* it.
*/
abstract class PerformanceTag {
/**
* Return a list of all [PerformanceTag]s which have been created.
*/
static List<PerformanceTag> get all => _PerformanceTagImpl.all.toList();
/**
* Return the current [PerformanceTag] for the isolate.
*/
static PerformanceTag get current => _PerformanceTagImpl.current;
/**
* Return the [PerformanceTag] that is initially current. This is intended
* to track time when the system is performing unknown operations.
*/
static PerformanceTag get UNKNOWN => _PerformanceTagImpl.UNKNOWN;
/**
* Create a [PerformanceTag] having the given [label]. A [UserTag] will also
* be created, having the same [label], so that performance information can
* be queried using the observatory.
*/
factory PerformanceTag(String label) = _PerformanceTagImpl;
/**
* Return the total number of milliseconds that this [PerformanceTag] has
* been the current [PerformanceTag] for the isolate.
*
* This call is safe even if this [PerformanceTag] is current.
*/
int get elapsedMs;
/**
* Return the label for this [PerformanceTag].
*/
String get label;
/**
* Make this the current tag for the isolate, and return the previous tag.
*/
PerformanceTag makeCurrent();
/**
* Make this the current tag for the isolate, run [f], and restore the
* previous tag. Returns the result of invoking [f].
*/
makeCurrentWhile(f());
/**
* Reset the total time tracked by all [PerformanceTag]s to zero.
*/
static void reset() {
for (_PerformanceTagImpl tag in _PerformanceTagImpl.all) {
tag.stopwatch.reset();
}
}
}
class _PerformanceTagImpl implements PerformanceTag {
/**
* The current performance tag for the isolate.
*/
static _PerformanceTagImpl current = UNKNOWN;
static final _PerformanceTagImpl UNKNOWN = new _PerformanceTagImpl('unknown');
/**
* A list of all performance tags that have been created so far.
*/
static List<_PerformanceTagImpl> all = <_PerformanceTagImpl>[];
/**
* The [UserTag] associated with this [PerformanceTag].
*/
final UserTag userTag;
/**
* Stopwatch tracking the amount of time this [PerformanceTag] has been the
* current tag for the isolate.
*/
final Stopwatch stopwatch;
_PerformanceTagImpl(String label)
: userTag = new UserTag(label),
stopwatch = new Stopwatch() {
all.add(this);
}
@override
int get elapsedMs => stopwatch.elapsedMilliseconds;
@override
String get label => userTag.label;
@override
PerformanceTag makeCurrent() {
if (identical(this, current)) {
return current;
}
_PerformanceTagImpl previous = current;
previous.stopwatch.stop();
stopwatch.start();
current = this;
userTag.makeCurrent();
return previous;
}
makeCurrentWhile(f()) {
PerformanceTag prevTag = makeCurrent();
try {
return f();
} finally {
prevTag.makeCurrent();
}
}
}