2015-02-26 01:33:59 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you 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 http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_VCL_SCHEDULER_HXX
|
|
|
|
#define INCLUDED_VCL_SCHEDULER_HXX
|
|
|
|
|
|
|
|
#include <vcl/dllapi.h>
|
|
|
|
|
2017-01-04 05:06:42 -06:00
|
|
|
class Task;
|
2017-02-02 10:21:23 -06:00
|
|
|
struct TaskImpl;
|
2017-01-20 06:24:02 -06:00
|
|
|
struct ImplSchedulerContext;
|
|
|
|
struct ImplSchedulerData;
|
2017-01-04 05:06:42 -06:00
|
|
|
|
2017-02-02 10:21:23 -06:00
|
|
|
class VCL_DLLPUBLIC Scheduler final
|
2017-01-04 05:06:42 -06:00
|
|
|
{
|
|
|
|
friend class Task;
|
|
|
|
Scheduler() = delete;
|
|
|
|
|
2017-01-25 08:49:44 -06:00
|
|
|
static inline void UpdateSystemTimer( ImplSchedulerContext &rSchedCtx,
|
|
|
|
sal_uInt64 nMinPeriod,
|
|
|
|
bool bForce, sal_uInt64 nTime );
|
|
|
|
|
2017-01-25 04:22:56 -06:00
|
|
|
static void ImplStartTimer ( sal_uInt64 nMS, bool bForce, sal_uInt64 nTime );
|
2017-01-04 05:06:42 -06:00
|
|
|
|
|
|
|
public:
|
2016-09-14 08:33:54 -05:00
|
|
|
static constexpr sal_uInt64 ImmediateTimeoutMs = 0;
|
|
|
|
static constexpr sal_uInt64 InfiniteTimeoutMs = SAL_MAX_UINT64;
|
2017-01-04 05:06:42 -06:00
|
|
|
|
|
|
|
static void ImplDeInitScheduler();
|
|
|
|
|
|
|
|
/// Process one pending Timer with highhest priority
|
2016-09-07 23:55:30 -05:00
|
|
|
static void CallbackTaskScheduling();
|
2017-01-04 05:06:42 -06:00
|
|
|
/// Process one pending task ahead of time with highest priority.
|
2016-09-07 23:55:30 -05:00
|
|
|
static bool ProcessTaskScheduling();
|
|
|
|
/// Process all events until we are idle
|
|
|
|
static void ProcessEventsToIdle();
|
2017-02-27 06:51:27 -06:00
|
|
|
/**
|
|
|
|
* Process events until the parameter turns true,
|
|
|
|
* allows processing until a specific event has been processed
|
|
|
|
*/
|
|
|
|
static void ProcessEventsToSignal(bool& bSignal);
|
2017-01-04 05:06:42 -06:00
|
|
|
|
|
|
|
/// Control the deterministic mode. In this mode, two subsequent runs of
|
|
|
|
/// LibreOffice fire about the same amount idles.
|
|
|
|
static void SetDeterministicMode(bool bDeterministic);
|
|
|
|
/// Return the current state of deterministic mode.
|
|
|
|
static bool GetDeterministicMode();
|
|
|
|
};
|
|
|
|
|
2015-02-26 01:33:59 -06:00
|
|
|
#endif // INCLUDED_VCL_SCHEDULER_HXX
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|