• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef FIRMWARE_DOWNLOAD_EXECUTOR_H
17 #define FIRMWARE_DOWNLOAD_EXECUTOR_H
18 
19 #include "firmware_component.h"
20 #include "firmware_iexecutor.h"
21 #include "firmware_task.h"
22 #include "progress_thread.h"
23 #include "update_helper.h"
24 
25 namespace OHOS {
26 namespace UpdateEngine {
27 class FirmwareDownloadExecutor : public FirmwareIExecutor {
28 public:
FirmwareDownloadExecutor(const DownloadOptions & downloadOptions,FirmwareProgressCallback progressCallback)29     FirmwareDownloadExecutor(const DownloadOptions &downloadOptions, FirmwareProgressCallback progressCallback)
30         : downloadOptions_(downloadOptions), firmwareProgressCallback_(progressCallback) {}
31     ~FirmwareDownloadExecutor() = default;
32     void Execute() final;
33 
34 private:
35     void DoDownload();
36     void GetTask();
37     void PerformDownload();
38     void DownloadCallback(std::string serverUrl, std::string packageName, Progress progress);
39     bool VerifyDownloadPkg(const std::string &pkgName, Progress &progress);
40 
41 private:
42     DownloadOptions downloadOptions_;
43     std::vector<FirmwareComponent> components_;
44     FirmwareProgressCallback firmwareProgressCallback_;
45     FirmwareTask tasks_;
46     UpgradeStatus upgradeStatus_;
47     std::shared_ptr<DownloadThread> downloadThread_;
48 };
49 } // namespace UpdateEngine
50 } // namespace OHOS
51 #endif // FIRMWARE_DOWNLOAD_EXECUTOR_H