2016-05-31 16:07:09 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "clangjobrequest.h"
|
|
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
|
|
|
|
|
class ProjectParts;
|
2016-09-07 10:42:12 +02:00
|
|
|
class Documents;
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
|
class JobQueue
|
|
|
|
|
{
|
|
|
|
|
public:
|
2016-09-07 10:42:12 +02:00
|
|
|
JobQueue(Documents &documents, ProjectParts &projects);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2016-10-06 12:54:22 +02:00
|
|
|
bool add(const JobRequest &job);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
|
JobRequests processQueue();
|
|
|
|
|
|
2016-10-06 12:54:22 +02:00
|
|
|
using IsJobRunningForTranslationUnitHandler = std::function<bool(const Utf8String &)>;
|
|
|
|
|
void setIsJobRunningForTranslationUnitHandler(
|
|
|
|
|
const IsJobRunningForTranslationUnitHandler &isJobRunningHandler);
|
|
|
|
|
|
|
|
|
|
using IsJobRunningForJobRequestHandler = std::function<bool(const JobRequest &)>;
|
|
|
|
|
void setIsJobRunningForJobRequestHandler(
|
|
|
|
|
const IsJobRunningForJobRequestHandler &isJobRunningHandler);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2017-09-07 16:28:44 +02:00
|
|
|
using CancelJobRequest = std::function<void(const JobRequest &)>;
|
|
|
|
|
void setCancelJobRequest(const CancelJobRequest &cancelJobRequest);
|
|
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
public: // for tests
|
2017-06-09 12:19:09 +02:00
|
|
|
JobRequests &queue();
|
2016-05-31 16:07:09 +02:00
|
|
|
int size() const;
|
|
|
|
|
void prioritizeRequests();
|
|
|
|
|
|
|
|
|
|
private:
|
2017-09-07 16:28:44 +02:00
|
|
|
void cancelJobRequest(const JobRequest &jobRequest);
|
2016-09-13 13:57:08 +02:00
|
|
|
bool isJobRunningForTranslationUnit(const Utf8String &translationUnitId);
|
2016-10-06 12:54:22 +02:00
|
|
|
bool isJobRunningForJobRequest(const JobRequest &jobRequest);
|
2016-05-31 16:07:09 +02:00
|
|
|
JobRequests takeJobRequestsToRunNow();
|
2017-06-01 16:18:58 +02:00
|
|
|
void removeExpiredRequests();
|
2017-09-07 16:28:44 +02:00
|
|
|
bool isJobRequestExpired(const JobRequest &jobRequest);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
|
private:
|
2016-09-07 10:42:12 +02:00
|
|
|
Documents &m_documents;
|
2016-05-31 16:07:09 +02:00
|
|
|
ProjectParts &m_projectParts;
|
|
|
|
|
|
2016-10-06 12:54:22 +02:00
|
|
|
IsJobRunningForTranslationUnitHandler m_isJobRunningForTranslationUnitHandler;
|
|
|
|
|
IsJobRunningForJobRequestHandler m_isJobRunningForJobRequestHandler;
|
2017-09-07 16:28:44 +02:00
|
|
|
CancelJobRequest m_cancelJobRequest;
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
|
JobRequests m_queue;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ClangBackEnd
|