KiCad PCB EDA Suite
Loading...
Searching...
No Matches
job_dispatcher.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2022 Mark Roszko <[email protected]>
5 * Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef JOB_DISPATCHER_H
22#define JOB_DISPATCHER_H
23
24#include <functional>
25#include <string>
26#include <map>
27#include <jobs/job.h>
28
29
30class KIWAY;
31class REPORTER;
33
35{
36public:
37 JOB_DISPATCHER( KIWAY* aKiway );
38 void Register( const std::string& aJobTypeName, std::function<int( JOB* job )> aHandler );
39 int RunJob( JOB* job );
40 void SetReporter( REPORTER* aReporter );
41 void SetProgressReporter( PROGRESS_REPORTER* aReporter );
42
43protected:
44 KIWAY* m_kiway; // non-owning
45 REPORTER* m_reporter; // non-owning
47
48private:
49 std::map<std::string, std::function<int( JOB* job )>> m_jobHandlers;
50
51};
52
53#endif
void SetReporter(REPORTER *aReporter)
PROGRESS_REPORTER * m_progressReporter
int RunJob(JOB *job)
void Register(const std::string &aJobTypeName, std::function< int(JOB *job)> aHandler)
REPORTER * m_reporter
std::map< std::string, std::function< int(JOB *job)> > m_jobHandlers
void SetProgressReporter(PROGRESS_REPORTER *aReporter)
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:32
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:279
A progress reporter interface for use in multi-threaded environments.
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:71