mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
// Copyright 2021-2023 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_INTERNAL_TEST_FAKE_TIMER_H_
|
|
#define THIRD_PARTY_NEARBY_INTERNAL_TEST_FAKE_TIMER_H_
|
|
|
|
#include <string>
|
|
|
|
#include "internal/platform/mutex.h"
|
|
#include "internal/platform/timer.h"
|
|
#include "internal/test/fake_clock.h"
|
|
|
|
namespace nearby {
|
|
class FakeTimer : public Timer {
|
|
public:
|
|
explicit FakeTimer(FakeClock* clock);
|
|
~FakeTimer() override;
|
|
FakeTimer(FakeTimer&&) = default;
|
|
FakeTimer& operator=(FakeTimer&&) = default;
|
|
|
|
bool Start(int delay, int period,
|
|
absl::AnyInvocable<void()> callback) override;
|
|
void Stop() override;
|
|
bool IsRunning() override;
|
|
|
|
private:
|
|
struct TimerData {
|
|
std::string id;
|
|
int delay;
|
|
int period;
|
|
bool is_delay_called = false;
|
|
absl::Time create_time;
|
|
absl::Time last_time;
|
|
std::function<void()> callback;
|
|
};
|
|
|
|
void ClockUpdated();
|
|
bool InternalStart(int delay, int period,
|
|
absl::AnyInvocable<void()> callback);
|
|
void InternalStop();
|
|
|
|
mutable RecursiveMutex mutex_;
|
|
FakeClock* clock_ = nullptr;
|
|
TimerData timer_data_;
|
|
absl::AnyInvocable<void()> callback_ = nullptr;
|
|
};
|
|
|
|
} // namespace nearby
|
|
|
|
#endif // THIRD_PARTY_NEARBY_INTERNAL_TEST_FAKE_TIMER_H_
|