forked from aws/aws-iot-device-sdk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJobsAgent.hpp
127 lines (105 loc) · 5.64 KB
/
JobsAgent.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/**
* @file JobsAgent.hpp
* @brief
*
*/
#pragma once
#include "mqtt/Client.hpp"
#include "NetworkConnection.hpp"
#include "jobs/Jobs.hpp"
#include <curl/curl.h>
#ifdef UNIT_TESTS
#include "JobsMock.hpp"
#endif
#define LOG_TAG_JOBS_AGENT "[Sample - JobsAgent]"
#define DEFAULT_INSTALLED_PACKAGES_FILENAME "installedPackages.json"
namespace awsiotsdk {
namespace samples {
class JobsAgent {
protected:
std::mutex m_;
std::condition_variable cv_done_;
std::shared_ptr<NetworkConnection> p_network_connection_;
std::shared_ptr<MqttClient> p_iot_client_;
#ifdef UNIT_TESTS
std::shared_ptr<JobsMock> p_jobs_;
#else
std::shared_ptr<Jobs> p_jobs_;
#endif
util::String process_title_;
util::String installed_packages_filename_;
util::JsonDocument installed_packages_json_;
util::Map<util::String, pid_t> package_runtimes_map_;
static void ShowJobsError(util::String operation, ResponseCode rc);
static util::String GetShutdownSystemCommand(bool dryRun, bool reboot);
static util::String GetFullPath(util::String workingDirectory, util::String fileName);
ResponseCode DisconnectCallback(util::String topic_name,
std::shared_ptr<DisconnectCallbackContextData> p_app_handler_data);
ResponseCode ReconnectCallback(util::String client_id,
std::shared_ptr<ReconnectCallbackContextData> p_app_handler_data,
ResponseCode reconnect_result);
ResponseCode ResubscribeCallback(util::String client_id,
std::shared_ptr<ResubscribeCallbackContextData> p_app_handler_data,
ResponseCode resubscribe_result);
ResponseCode BackupFiles(util::Map<util::String, util::String> & statusDetailsMap,
util::String workingDirectory,
util::JsonValue & files);
ResponseCode RollbackFiles(util::Map<util::String, util::String> & statusDetailsMap,
util::String workingDirectory,
util::JsonValue & files);
ResponseCode DownloadFiles(util::Map<util::String, util::String> & statusDetailsMap,
util::String workingDirectory,
util::JsonValue & file);
ResponseCode UpdateInstalledPackage(util::JsonValue & packageJobDocument);
bool PackageIsExecutable(util::String packageName);
bool PackageIsRunning(util::String packageName);
bool PackageIsAutoStart(util::String packageName);
void StartInstalledPackages();
ResponseCode StartPackage(util::Map<util::String, util::String> & statusDetailsMap,
util::String packageName);
ResponseCode StopPackage(util::Map<util::String, util::String> & statusDetailsMap,
util::String packageName);
ResponseCode StartPackageHandler(util::String jobId,
util::String packageName);
ResponseCode StopPackageHandler(util::String jobId,
util::String packageName);
ResponseCode RestartPackageHandler(util::String jobId,
util::String packageName);
ResponseCode InstallPackageHandler(util::String jobId,
util::JsonValue &jobDocument);
ResponseCode UninstallPackageHandler(util::String jobId,
util::String packageName);
ResponseCode ShutdownHandler(util::String jobId,
util::String step,
bool reboot);
ResponseCode SystemStatusHandler(util::String jobId);
ResponseCode NextJobCallback(util::String topic_name,
util::String payload,
std::shared_ptr<mqtt::SubscriptionHandlerContextData> p_app_handler_data);
ResponseCode UpdateAcceptedCallback(util::String topic_name,
util::String payload,
std::shared_ptr<mqtt::SubscriptionHandlerContextData> p_app_handler_data);
ResponseCode UpdateRejectedCallback(util::String topic_name,
util::String payload,
std::shared_ptr<mqtt::SubscriptionHandlerContextData> p_app_handler_data);
ResponseCode Subscribe();
ResponseCode InitializeTLS();
public:
ResponseCode RunAgent(const util::String &processTitle = util::String());
};
}
}