2019-02-27 02:14:37 +02:00
|
|
|
// Copyright 2018 Slightech Co., Ltd. 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.
|
|
|
|
// 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.
|
|
|
|
#include "mynteye/api/version_checker.h"
|
|
|
|
#include "mynteye/device/utils.h"
|
|
|
|
#include "mynteye/logger.h"
|
|
|
|
#include "mynteye/types.h"
|
|
|
|
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
typedef struct {
|
2019-02-27 21:53:50 +02:00
|
|
|
const std::string device_type;
|
|
|
|
const std::string sdk_version;
|
|
|
|
const std::string firmware_version;
|
|
|
|
const std::string status;
|
2019-02-27 02:14:37 +02:00
|
|
|
}firmware_version_match_table_unit;
|
|
|
|
|
2019-02-27 21:53:50 +02:00
|
|
|
const char* ERRO_DESCRIPTION_F =
|
|
|
|
"Please update the firmware at first";
|
|
|
|
const char* ERRO_DESCRIPTION_S =
|
|
|
|
"Please update the SDK at first";
|
|
|
|
const char* WARN_DESCRIPTION_F =
|
|
|
|
"We suggest that you should update the firmware";
|
|
|
|
const char* WARN_DESCRIPTION_S =
|
|
|
|
"We suggest that you should update the SDK";
|
|
|
|
const char* PASS_DESCRIPTION = "pass";
|
|
|
|
|
2019-02-27 02:14:37 +02:00
|
|
|
/** firmware/sdk version matched table */
|
2019-02-27 21:53:50 +02:00
|
|
|
/**----device type-----sdk version---firmware version-----pass tag-----*/
|
2019-02-27 02:14:37 +02:00
|
|
|
static const firmware_version_match_table_unit FSVM_TABLE[] ={
|
2019-02-27 21:53:50 +02:00
|
|
|
/** S1030 */
|
|
|
|
{"MYNT-EYE-S1030", ">2.3.0", "2.3.0", PASS_DESCRIPTION},
|
|
|
|
{"MYNT-EYE-S1030", ">2.3.0", "2.2.2", PASS_DESCRIPTION},
|
|
|
|
{"MYNT-EYE-S1030", ">2.3.0", "2.2.0", WARN_DESCRIPTION_F},
|
|
|
|
{"MYNT-EYE-S1030", ">2.3.0", "<2.2.0", ERRO_DESCRIPTION_F},
|
|
|
|
{"MYNT-EYE-S1030", "<2.3.1", "<2.2.0", WARN_DESCRIPTION_S},
|
|
|
|
/** S2100 */
|
|
|
|
{"MYNT-EYE-S2100", ">0.0.0", "1.0", PASS_DESCRIPTION},
|
|
|
|
/** S210A */
|
|
|
|
{"MYNT-EYE-S210A", ">0.0.0", "1.0", PASS_DESCRIPTION},
|
|
|
|
};
|
|
|
|
|
|
|
|
void getVersion(const std::string &str, char *version) {
|
|
|
|
std::string st1("");
|
|
|
|
int j = 0;
|
|
|
|
for (size_t i = 0; i < str.size(); i++) {
|
|
|
|
if (str[i] == '.') {
|
|
|
|
version[j++] = atoi(st1.c_str());
|
|
|
|
st1 = "";
|
|
|
|
} else {
|
|
|
|
st1 += str[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
version[j++] = atoi(st1.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool conditionMatch(const std::string& condition, const std::string& target) {
|
|
|
|
char version[4] = {0};
|
|
|
|
char version_c[4] = {0};
|
|
|
|
getVersion(target, version);
|
|
|
|
int tag_c = 0;
|
|
|
|
std::string condition_c;
|
|
|
|
if (condition[0] == '>') {
|
|
|
|
tag_c = 1;
|
|
|
|
condition_c = condition.substr(1);
|
|
|
|
} else if (condition[0] == '<') {
|
|
|
|
tag_c = -1;
|
|
|
|
condition_c = condition.substr(1);
|
|
|
|
} else {
|
|
|
|
tag_c = 0;
|
|
|
|
condition_c = condition;
|
|
|
|
}
|
|
|
|
getVersion(condition_c, version_c);
|
|
|
|
int tag_big = memcmp(version, version_c, 4);
|
|
|
|
if (tag_big * tag_c > 0 || (tag_big == 0 && tag_c == 0)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum STATUS_UNIT {
|
|
|
|
ST_PASS,
|
|
|
|
ST_ERRO_F,
|
|
|
|
ST_ERRO_S,
|
|
|
|
ST_NOT_PASS
|
2019-02-27 02:14:37 +02:00
|
|
|
};
|
|
|
|
|
2019-02-27 21:53:50 +02:00
|
|
|
STATUS_UNIT checkUnit(const std::string& sdkv,
|
|
|
|
const std::string& devn,
|
|
|
|
const std::string& firmv,
|
|
|
|
const firmware_version_match_table_unit& condition) {
|
|
|
|
if (condition.device_type == devn &&
|
|
|
|
conditionMatch(condition.sdk_version, sdkv) &&
|
|
|
|
conditionMatch(condition.firmware_version, firmv)) {
|
|
|
|
if (condition.status == ERRO_DESCRIPTION_F) {
|
|
|
|
return ST_ERRO_F;
|
|
|
|
}
|
|
|
|
if (condition.status == ERRO_DESCRIPTION_S) {
|
|
|
|
return ST_ERRO_S;
|
|
|
|
}
|
|
|
|
if (condition.status == WARN_DESCRIPTION_F ||
|
|
|
|
condition.status == WARN_DESCRIPTION_S) {
|
|
|
|
LOG(WARNING) << condition.status;
|
|
|
|
}
|
|
|
|
return ST_PASS;
|
|
|
|
}
|
|
|
|
return ST_NOT_PASS;
|
|
|
|
}
|
|
|
|
|
2019-02-27 02:14:37 +02:00
|
|
|
bool checkFirmwareVersion(const std::shared_ptr<API> api) {
|
2019-02-27 21:53:50 +02:00
|
|
|
auto sdkv = api->GetInfo(Info::SDK_VERSION);
|
|
|
|
auto devn = api->GetInfo(Info::DEVICE_NAME);
|
|
|
|
auto firmv = api->GetInfo(Info::FIRMWARE_VERSION);
|
|
|
|
|
|
|
|
for (size_t i =0;
|
|
|
|
i < sizeof(FSVM_TABLE)/sizeof(firmware_version_match_table_unit);
|
|
|
|
i++) {
|
|
|
|
auto res = checkUnit(sdkv, devn, firmv, FSVM_TABLE[i]);
|
|
|
|
if (res == ST_PASS) {
|
|
|
|
return true;
|
|
|
|
} else if (res == ST_ERRO_S || res == ST_ERRO_F) {
|
|
|
|
LOG(ERROR) << FSVM_TABLE[i].status;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOG(ERROR) << ERRO_DESCRIPTION_S;
|
|
|
|
return false;
|
2019-02-27 02:14:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MYNTEYE_END_NAMESPACE
|
|
|
|
|