rpc_task_worker.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_GUI_INCLUDE_CORBO_GUI_RPC_TASK_WORKER_H_
26 #define SRC_GUI_INCLUDE_CORBO_GUI_RPC_TASK_WORKER_H_
27 
29 
30 #include <QObject>
31 #include <QThread>
32 #include <QTimer>
33 
34 #include <memory>
35 
36 namespace corbo {
37 namespace gui {
38 
39 class RpcTaskWorker : public QObject
40 {
41  Q_OBJECT
42 
43  public:
44  explicit RpcTaskWorker(QObject* parent = nullptr) : QObject(parent) {}
45 
46  ~RpcTaskWorker() {}
47 
48  void setRpcClient(std::shared_ptr<MasterServiceClient> client) { _rpc_client = client; }
49 
50  public slots:
51 
52  void performTask()
53  {
54  if (!_rpc_client) emit taskFinished(false, "RPC Client not connected");
55  std::string msg;
56 
57  auto signal_feedback = [this](const messages::Signal& signal) { emit feedback(signal); };
58  bool success = _rpc_client->performTask(signal_feedback, &msg);
59 
60  emit taskFinished(success, QString::fromStdString(msg));
61  }
62 
63  signals:
64  void feedback(const messages::Signal& signal);
65  void taskFinished(bool success, const QString& msg);
66 
67  private:
68  std::shared_ptr<MasterServiceClient> _rpc_client;
69 };
70 
71 } // namespace gui
72 } // namespace corbo
73 
74 #endif // SRC_GUI_INCLUDE_CORBO_GUI_RPC_TASK_WORKER_H_
corbo::gui::RpcTaskWorker::taskFinished
void taskFinished(bool success, const QString &msg)
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::RpcTaskWorker::~RpcTaskWorker
~RpcTaskWorker()
Definition: rpc_task_worker.h:112
corbo::gui::RpcTaskWorker::performTask
void performTask()
Definition: rpc_task_worker.h:118
main_service_client.h
corbo::gui::RpcTaskWorker::_rpc_client
std::shared_ptr< MasterServiceClient > _rpc_client
Definition: rpc_task_worker.h:134
corbo::gui::RpcTaskWorker::feedback
void feedback(const messages::Signal &signal)
corbo::gui::RpcTaskWorker::RpcTaskWorker
RpcTaskWorker(QObject *parent=nullptr)
Definition: rpc_task_worker.h:110
corbo::gui::RpcTaskWorker::setRpcClient
void setRpcClient(std::shared_ptr< MasterServiceClient > client)
Definition: rpc_task_worker.h:114


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:10