103 lines
3.1 KiB
C
Executable File
103 lines
3.1 KiB
C
Executable File
/* By YZBruh */
|
|
|
|
/**
|
|
* Copyright 2024 Partition Manager
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License 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.
|
|
*/
|
|
|
|
#ifndef __PMT_DEPRECATES_H
|
|
#define __PMT_DEPRECATES_H
|
|
|
|
#define deprecated_opt 1
|
|
#define changed_opt 2
|
|
#define end_depr_pointer 0
|
|
#define not_changed 0
|
|
#define not_changed_long nullptr
|
|
|
|
/* versions */
|
|
#define v150 "1.5.0"
|
|
#define v160 "1.6.0"
|
|
#define v170 "1.7.0"
|
|
#define v180 "1.8.0"
|
|
#define v190 "1.9.0"
|
|
#define v200 "2.0.0"
|
|
#define v210 "2.1.0"
|
|
#define v220 "2.2.0"
|
|
#define v230 "2.3.0"
|
|
#define v240 "2.4.0"
|
|
#define v250 "2.5.0"
|
|
#define v260 "2.6.0"
|
|
#define v270 "2.7.0"
|
|
#define v280 "2.8.0"
|
|
#define vUNK NULL
|
|
|
|
struct pmt_deprecates {
|
|
int depr_type;
|
|
int option;
|
|
int option_new;
|
|
const char* option_long;
|
|
const char* option_long_new;
|
|
const char* depr_version;
|
|
};
|
|
|
|
static struct pmt_deprecates depr_table[] = {
|
|
{deprecated_opt, 'b', not_changed, "backup", not_changed_long, v210},
|
|
{deprecated_opt, 'F', not_changed, "flash", not_changed_long, v210},
|
|
{deprecated_opt, 'r', not_changed, "format", not_changed_long, v210},
|
|
{deprecated_opt, 'L', not_changed, "license", not_changed_long, v250},
|
|
{changed_opt, 'D', 'p', "list", not_changed_long, v210},
|
|
{end_depr_pointer, not_changed, not_changed, not_changed_long, not_changed_long, vUNK}
|
|
};
|
|
|
|
static void
|
|
__deprecated_opt_handle(int opt, const string opt_long, const char* depr_msg)
|
|
{
|
|
static string long_e_msg;
|
|
|
|
if (opt_long == "")
|
|
long_e_msg = PartitionManager::Display::UsingDispString->not_changed_opt;
|
|
else
|
|
long_e_msg = opt_long;
|
|
|
|
for (int optctrl = 0; depr_table[optctrl].depr_type != 0; optctrl++)
|
|
{
|
|
|
|
if (depr_table[optctrl].depr_type == 1)
|
|
{
|
|
if (opt == depr_table[optctrl].option || strcmp(opt_long.c_str(), depr_table[optctrl].option_long) == 0)
|
|
{
|
|
LOGD("%s [%s]: -%c (%s): %s\n", PartitionManager::Display::UsingDispString->depr_opt_str, depr_table[optctrl].depr_version, (char)depr_table[optctrl].option, depr_table[optctrl].option_long, depr_msg);
|
|
exit(1);
|
|
}
|
|
|
|
}
|
|
else if (depr_table[optctrl].depr_type == 2)
|
|
{
|
|
if (opt == depr_table[optctrl].option || strcmp(opt_long.c_str(), depr_table[optctrl].option_long) == 0)
|
|
{
|
|
LOGD("%s [%s]: -%c (%s): %s\n", PartitionManager::Display::UsingDispString->switched_opt_str, depr_table[optctrl].depr_version, (char)depr_table[optctrl].option, long_e_msg.c_str(), depr_msg);
|
|
exit(1);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#define DEPR_HANDLE(x, y, z) __deprecated_opt_handle(x, y, z)
|
|
|
|
#endif /* __PMT_DEPRECATES_H */
|
|
|
|
/* end of code */
|