summaryrefslogtreecommitdiffstats
path: root/gfx/2d/JobScheduler_win32.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /gfx/2d/JobScheduler_win32.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'gfx/2d/JobScheduler_win32.h')
-rw-r--r--gfx/2d/JobScheduler_win32.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/gfx/2d/JobScheduler_win32.h b/gfx/2d/JobScheduler_win32.h
new file mode 100644
index 000000000..73ccbd4ed
--- /dev/null
+++ b/gfx/2d/JobScheduler_win32.h
@@ -0,0 +1,99 @@
+/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifdef WIN32
+#ifndef MOZILLA_GFX_TASKSCHEDULER_WIN32_H_
+#define MOZILLA_GFX_TASKSCHEDULER_WIN32_H_
+
+#include <windows.h>
+#include <list>
+
+#include "mozilla/RefPtr.h"
+#include "mozilla/gfx/CriticalSection.h"
+#include "mozilla/RefCounted.h"
+
+namespace mozilla {
+namespace gfx {
+
+class WorkerThread;
+class Job;
+
+// The public interface of this class must remain identical to its equivalent
+// in JobScheduler_posix.h
+class MultiThreadedJobQueue {
+public:
+ enum AccessType {
+ BLOCKING,
+ NON_BLOCKING
+ };
+
+ MultiThreadedJobQueue()
+ : mThreadsCount(0)
+ , mShuttingDown(false)
+ {
+ mAvailableEvent = ::CreateEventW(nullptr, TRUE, FALSE, nullptr);
+ mShutdownEvent = ::CreateEventW(nullptr, TRUE, FALSE, nullptr);
+ }
+
+ ~MultiThreadedJobQueue()
+ {
+ ::CloseHandle(mAvailableEvent);
+ ::CloseHandle(mShutdownEvent);
+ }
+
+ bool WaitForJob(Job*& aOutJob) { return PopJob(aOutJob, BLOCKING); }
+
+ bool PopJob(Job*& aOutJob, AccessType aAccess);
+
+ void SubmitJob(Job* aJob);
+
+ void ShutDown();
+
+ size_t NumJobs();
+
+ bool IsEmpty();
+
+ void RegisterThread();
+
+ void UnregisterThread();
+
+protected:
+ std::list<Job*> mJobs;
+ CriticalSection mSection;
+ HANDLE mAvailableEvent;
+ HANDLE mShutdownEvent;
+ int32_t mThreadsCount;
+ bool mShuttingDown;
+
+ friend class WorkerThread;
+};
+
+
+// The public interface of this class must remain identical to its equivalent
+// in JobScheduler_posix.h
+class EventObject : public external::AtomicRefCounted<EventObject>
+{
+public:
+ MOZ_DECLARE_REFCOUNTED_TYPENAME(EventObject)
+
+ EventObject() { mEvent = ::CreateEventW(nullptr, TRUE, FALSE, nullptr); }
+
+ ~EventObject() { ::CloseHandle(mEvent); }
+
+ void Wait() { ::WaitForSingleObject(mEvent, INFINITE); }
+
+ bool Peak() { return ::WaitForSingleObject(mEvent, 0) == WAIT_OBJECT_0; }
+
+ void Set() { ::SetEvent(mEvent); }
+protected:
+ // TODO: it's expensive to create events so we should try to reuse them
+ HANDLE mEvent;
+};
+
+} // namespace
+} // namespace
+
+#endif
+#endif