2013-01-07 11:23:16 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-10-05 14:05:50 +00:00
|
|
|
// part of "async_patch.dart";
|
2017-02-20 13:17:14 +00:00
|
|
|
|
2017-03-21 17:07:26 +00:00
|
|
|
@patch
|
|
|
|
class Timer {
|
|
|
|
@patch
|
|
|
|
static Timer _createTimer(Duration duration, void callback()) {
|
2015-01-28 00:39:35 +00:00
|
|
|
// TODO(iposva): Remove _TimerFactory and use VMLibraryHooks exclusively.
|
|
|
|
if (_TimerFactory._factory == null) {
|
|
|
|
_TimerFactory._factory = VMLibraryHooks.timerFactory;
|
|
|
|
}
|
2014-06-30 07:26:01 +00:00
|
|
|
if (_TimerFactory._factory == null) {
|
|
|
|
throw new UnsupportedError("Timer interface not supported.");
|
|
|
|
}
|
|
|
|
int milliseconds = duration.inMilliseconds;
|
|
|
|
if (milliseconds < 0) milliseconds = 0;
|
2017-03-21 17:07:26 +00:00
|
|
|
return _TimerFactory._factory(milliseconds, (_) {
|
|
|
|
callback();
|
|
|
|
}, false);
|
2013-01-07 11:23:16 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 17:07:26 +00:00
|
|
|
@patch
|
|
|
|
static Timer _createPeriodicTimer(
|
|
|
|
Duration duration, void callback(Timer timer)) {
|
2015-01-28 00:39:35 +00:00
|
|
|
// TODO(iposva): Remove _TimerFactory and use VMLibraryHooks exclusively.
|
2018-11-13 22:56:54 +00:00
|
|
|
_TimerFactory._factory ??= VMLibraryHooks.timerFactory;
|
2014-06-30 07:26:01 +00:00
|
|
|
if (_TimerFactory._factory == null) {
|
|
|
|
throw new UnsupportedError("Timer interface not supported.");
|
|
|
|
}
|
|
|
|
int milliseconds = duration.inMilliseconds;
|
|
|
|
if (milliseconds < 0) milliseconds = 0;
|
|
|
|
return _TimerFactory._factory(milliseconds, callback, true);
|
2013-01-07 11:23:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-21 17:07:26 +00:00
|
|
|
typedef Timer _TimerFactoryClosure(
|
|
|
|
int milliseconds, void callback(Timer timer), bool repeating);
|
2013-01-07 11:23:16 +00:00
|
|
|
|
|
|
|
class _TimerFactory {
|
|
|
|
static _TimerFactoryClosure _factory;
|
|
|
|
}
|