Bump version to 6.4-15
[LibreOffice.git] / include / vcl / scheduler.hxx
blob9318b2109641621835767bf8e29a673533d250e9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_SCHEDULER_HXX
21 #define INCLUDED_VCL_SCHEDULER_HXX
23 #include <vcl/dllapi.h>
25 struct ImplSchedulerContext;
27 class VCL_DLLPUBLIC Scheduler final
29 friend class SchedulerGuard;
30 friend class Task;
31 Scheduler() = delete;
33 static inline void UpdateSystemTimer( ImplSchedulerContext &rSchedCtx,
34 sal_uInt64 nMinPeriod,
35 bool bForce, sal_uInt64 nTime );
37 static void ImplStartTimer ( sal_uInt64 nMS, bool bForce, sal_uInt64 nTime );
39 static void Lock( sal_uInt32 nLockCount = 1 );
40 static sal_uInt32 Unlock( bool bUnlockAll = false );
42 public:
43 static constexpr sal_uInt64 ImmediateTimeoutMs = 0;
44 static constexpr sal_uInt64 InfiniteTimeoutMs = SAL_MAX_UINT64;
46 static void ImplDeInitScheduler();
48 /// Process one pending Timer with highest priority
49 static void CallbackTaskScheduling();
50 /// Process one pending task ahead of time with highest priority.
51 static bool ProcessTaskScheduling();
52 /**
53 * Process all events until none is pending
55 * This can busy-lock, if some task or system event always generates new
56 * events when being processed. Most time it's called in unit tests to
57 * process all pending events. Internally it just calls
58 * Application::Reschedule( true ) until it fails.
60 * @see Application::Reschedule
62 static void ProcessEventsToIdle();
64 /**
65 * Wakes up the scheduler
67 * This doesn't handle any events! It just ensures the Scheduler is run as
68 * soon as possible by forcing the Scheduler timer to fire.
70 * Can be used for complex UpdateMinPeriod function, where the task is
71 * actually active but not ready and we want to skip the Task::Start()
72 * queue append for faster reaction.
74 static void Wakeup();
76 /// Control the deterministic mode. In this mode, two subsequent runs of
77 /// LibreOffice fire about the same amount idles.
78 static void SetDeterministicMode(bool bDeterministic);
79 /// Return the current state of deterministic mode.
80 static bool GetDeterministicMode();
83 #endif // INCLUDED_VCL_SCHEDULER_HXX
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */