895b41f8d95bd838eeb0f72021398a783894ab73
[platform/core/system/upgrade.git] / src / upgrade-apply-deltafs / engine / fota_tar.h
1 /*
2  * upgrade-apply-deltafs
3  *
4  * Copyright (c) 2017 - 2022 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef _FOTA_TAR_H_
20 #define _FOTA_TAR_H_
21
22 #include <zlib.h>
23 #include <libtar.h>
24 #include "ua_types.h"
25 #include "SS_UPI.h"
26 typedef struct _diff_iterator {
27         int sum;
28         fs_params *head;
29         char *subject_name;
30         int sum_max;
31 } diff_iterator;
32
33 int tar_get_tartype(char *tar_path, tartype_t **type);
34 int tar_init_with_type(TAR **tar, char *tar_path, tartype_t *type);
35 int tar_get_cfg_data(tar_info *tar_data);
36 int tar_extract_newfiles_archive(tar_info *tar_data);
37 int tar_init_diff_iterations(tar_info *tar_data, diff_iterator *diff_iter, fs_params *head);
38 int tar_diff_iter_next_extract(tar_info *tar_data, diff_iterator *diff_iter, char *target, fs_params **params);
39
40
41 #endif                          /* _FOTA_TAR_H_ */