summaryrefslogtreecommitdiffhomepage
path: root/ovr_sdk_win_23.0.0/LibOVRKernel/Src/Util/Util_LongPollThread.cpp
blob: 4eaaae46b239cb3bd37505183a8d8cd8a7eddc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/************************************************************************************

Filename    :   Util_LongPollThread.cpp
Content     :   Allows us to do all long polling tasks from a single thread to minimize deadlock
risk
Created     :   June 30, 2013
Authors     :   Chris Taylor

Copyright   :   Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved.

Licensed under the Oculus Master SDK License Version 1.0 (the "License");
you may not use the Oculus VR Rift SDK except in compliance with the License,
which is provided at the time of installation or download, or which
otherwise accompanies this software in either electronic or hard copy form.

You may obtain a copy of the License at

https://developer.oculus.com/licenses/oculusmastersdk-1.0

Unless required by applicable law or agreed to in writing, the Oculus VR SDK
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.

*************************************************************************************/

#include "Util_LongPollThread.h"
#include "Util_Watchdog.h"

OVR_DEFINE_SINGLETON(OVR::Util::LongPollThread);

namespace OVR {
namespace Util {

void LongPollThread::AddPollFunc(CallbackListener<PollFunc>* func) {
  PollSubject.AddListener(func);
}

LongPollThread::LongPollThread() : Terminated(false) {
  LongPollThreadHandle = std::make_unique<std::thread>([this] { this->Run(); });

  // Must be at end of function
  PushDestroyCallbacks();
}

LongPollThread::~LongPollThread() {
  OVR_ASSERT(!LongPollThreadHandle->joinable());
}

void LongPollThread::OnThreadDestroy() {
  fireTermination();

  LongPollThreadHandle->join();
}

void LongPollThread::Wake() {
  WakeEvent.SetEvent();
}

void LongPollThread::fireTermination() {
  Terminated.store(true, std::memory_order_relaxed);
  Wake();
}

void LongPollThread::OnSystemDestroy() {
  delete this;
}

void LongPollThread::Run() {
  Thread::SetCurrentThreadName("LongPoll");
  WatchDog watchdog("LongPoll");

  // While not terminated,
  do {
    watchdog.Feed(10000);

    PollSubject.Call();

    WakeEvent.Wait(WakeupInterval);
    WakeEvent.ResetEvent();
  } while (!Terminated.load(std::memory_order_acquire));
}

} // namespace Util
} // namespace OVR