2018-08-27 07:21:06 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-08-27 07:21:06 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
2018-11-06 10:58:49 -08:00
|
|
|
#include "RuntimeEventBeat.h"
|
2018-08-27 07:21:06 -07:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
2018-11-06 10:58:49 -08:00
|
|
|
RuntimeEventBeat::RuntimeEventBeat(RuntimeExecutor runtimeExecutor):
|
|
|
|
runtimeExecutor_(std::move(runtimeExecutor)) {
|
2018-08-27 07:21:06 -07:00
|
|
|
|
|
|
|
mainRunLoopObserver_ =
|
|
|
|
CFRunLoopObserverCreateWithHandler(
|
|
|
|
NULL /* allocator */,
|
|
|
|
kCFRunLoopBeforeWaiting /* activities */,
|
|
|
|
true /* repeats */,
|
|
|
|
0 /* order */,
|
|
|
|
^(CFRunLoopObserverRef observer, CFRunLoopActivity activity) {
|
|
|
|
// Note: We only `induce` beat here; actual beat will be performed on
|
|
|
|
// a different thread.
|
|
|
|
this->induce();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
assert(mainRunLoopObserver_);
|
|
|
|
|
|
|
|
CFRunLoopAddObserver(CFRunLoopGetMain(), mainRunLoopObserver_, kCFRunLoopCommonModes);
|
|
|
|
}
|
|
|
|
|
2018-11-06 10:58:49 -08:00
|
|
|
RuntimeEventBeat::~RuntimeEventBeat() {
|
2018-08-27 07:21:06 -07:00
|
|
|
CFRunLoopRemoveObserver(CFRunLoopGetMain(), mainRunLoopObserver_, kCFRunLoopCommonModes);
|
|
|
|
CFRelease(mainRunLoopObserver_);
|
|
|
|
}
|
|
|
|
|
2018-11-06 10:58:49 -08:00
|
|
|
void RuntimeEventBeat::induce() const {
|
2018-08-27 07:21:06 -07:00
|
|
|
if (!isRequested_ || isBusy_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-08 14:34:22 -07:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// We do a trick here.
|
|
|
|
// If `wasExecuted` was destroyed before set to `true`,
|
|
|
|
// it means that the execution block was deallocated not being executed.
|
|
|
|
// This indicates that `messageQueueThread_` is being deallocated.
|
2018-10-08 14:34:25 -07:00
|
|
|
// This trick is quite expensive due to deallocation and messing with atomic
|
|
|
|
// counters. Seems we need this only for making hot-reloading mechanism
|
|
|
|
// thread-safe. Hence, let's leave it to be DEBUG-only for now.
|
2018-10-08 14:34:22 -07:00
|
|
|
auto wasExecuted = std::shared_ptr<bool>(new bool {false}, [this](bool *wasExecuted) {
|
|
|
|
if (!*wasExecuted && failCallback_) {
|
|
|
|
failCallback_();
|
|
|
|
}
|
|
|
|
delete wasExecuted;
|
|
|
|
});
|
|
|
|
#endif
|
|
|
|
|
2018-08-27 07:21:06 -07:00
|
|
|
isBusy_ = true;
|
2018-11-06 10:58:49 -08:00
|
|
|
runtimeExecutor_([=](jsi::Runtime &runtime) mutable {
|
2018-11-06 10:58:49 -08:00
|
|
|
this->beat(runtime);
|
2018-08-27 07:21:06 -07:00
|
|
|
isBusy_ = false;
|
2018-10-08 14:34:22 -07:00
|
|
|
#ifndef NDEBUG
|
|
|
|
*wasExecuted = true;
|
|
|
|
#endif
|
2018-08-27 07:21:06 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace react
|
|
|
|
} // namespace facebook
|