Commit 5fc7b13f authored by kharade's avatar kharade

code clean

parent def43a7c
......@@ -148,14 +148,10 @@ typedef struct guami_s {
std::string amf_id;
} guami_t;
typedef struct routing_indicators_s {
std::vector<std::string> routing_indicators;
} routing_indicators_t;
typedef struct supi_range_s {
std::string start;
std::string end;
std::string pattern;
std::string start;
std::string end;
std::string pattern;
} supi_range_t;
#endif
......@@ -66,7 +66,7 @@ typedef struct upf_info_s {
} upf_info_t;
typedef struct supi_range_ausf_info_item_s {
supi_range_t supi_range;
supi_range_t supi_range;
} supi_range_ausf_info_item_t;
typedef struct ausf_info_s {
......
......@@ -242,7 +242,7 @@ void nrf_profile::display() {
Logger::nrf_app().debug("\tPriority: %d", priority);
Logger::nrf_app().debug("\tCapacity: %d", capacity);
// SNSSAIs
if (!plmn_list.empty()){
if (!plmn_list.empty()) {
for (auto s : plmn_list) {
Logger::nrf_app().debug("\tPLMN List(MCC, MNC): %d, %s", s.mcc, s.mnc);
}
......@@ -558,20 +558,19 @@ void nrf_profile::to_json(nlohmann::json& data) const {
data["nfStatus"] = nf_status;
data["heartBeatTimer"] = heartBeat_timer;
// SNSSAIs
if (!snssais.empty()){
if (!snssais.empty()) {
data["sNssais"] = nlohmann::json::array();
for (auto s : snssais) {
nlohmann::json tmp = {};
tmp["sst"] = s.sST;
tmp["sd"] = s.sD;
;
data["sNssais"].push_back(tmp);
}
}
if (!fqdn.empty()) {
data["fqdn"] = fqdn;
}
if (!plmn_list.empty()){
if (!plmn_list.empty()) {
data["plmnList"] = nlohmann::json::array();
for (auto s : plmn_list) {
nlohmann::json tmp = {};
......@@ -1119,12 +1118,14 @@ void ausf_profile::get_ausf_info(ausf_info_t& infos) const {
void ausf_profile::display() {
nrf_profile::display();
Logger::nrf_app().debug("\tAUSF Info");
Logger::nrf_app().debug("\t\tGroupId: %s",ausf_info.groupid);
Logger::nrf_app().debug("\t\tGroupId: %s", ausf_info.groupid);
for (auto supi : ausf_info.supi_ranges) {
Logger::nrf_app().debug("\t\t SupiRanges: Start - %s, End - %s, Pattern - %s",supi.supi_range.start,supi.supi_range.end, supi.supi_range.pattern);
Logger::nrf_app().debug(
"\t\t SupiRanges: Start - %s, End - %s, Pattern - %s",
supi.supi_range.start, supi.supi_range.end, supi.supi_range.pattern);
}
for (auto route_ind : ausf_info.routing_indicator) {
Logger::nrf_app().debug("\t\t Routing Indicators: %s",route_ind);
Logger::nrf_app().debug("\t\t Routing Indicators: %s", route_ind);
}
}
......@@ -1135,16 +1136,15 @@ bool ausf_profile::add_profile_info(
if (result) return true;
// add an element to a list of json object
if (path.compare("ausInfo") == 0) {
Logger::nrf_app().info("Does not support this operation for ausInfo");
if (path.compare("ausfInfo") == 0) {
Logger::nrf_app().info("Does not support this operation for ausfInfo");
return false;
}
if ((path.compare("nfInstanceId") != 0) and
(path.compare("nfInstanceName") != 0) and
(path.compare("nfType") != 0) and (path.compare("nfStatus") != 0) and
(path.compare("heartBeatTimer") != 0) and
(path.compare("fqdn") != 0) and
(path.compare("heartBeatTimer") != 0) and (path.compare("fqdn") != 0) and
(path.compare("plmnList") != 0) and
(path.compare("ipv4Addresses") != 0) and
(path.compare("priority") != 0) and (path.compare("capacity") != 0) and
......@@ -1164,7 +1164,7 @@ bool ausf_profile::replace_profile_info(
bool result = nrf_profile::replace_profile_info(path, value);
if (result) return true;
// for AUSF info
if (path.compare("ausInfo") == 0) {
if (path.compare("ausfInfo") == 0) {
Logger::nrf_app().debug("Does not support this operation for ausfInfo");
return false;
}
......@@ -1172,13 +1172,12 @@ bool ausf_profile::replace_profile_info(
if ((path.compare("nfInstanceId") != 0) and
(path.compare("nfInstanceName") != 0) and
(path.compare("nfType") != 0) and (path.compare("nfStatus") != 0) and
(path.compare("heartBeatTimer") != 0) and
(path.compare("fqdn") != 0) and
(path.compare("heartBeatTimer") != 0) and (path.compare("fqdn") != 0) and
(path.compare("plmnList") != 0) and
(path.compare("ipv4Addresses") != 0) and
(path.compare("priority") != 0) and (path.compare("capacity") != 0) and
(path.compare("priority") != 0) and (path.compare("nfServices") != 0) and
(path.compare("ausInfo") != 0)) {
(path.compare("ausfInfo") != 0)) {
Logger::nrf_app().debug("Member (%s) not found!", path.c_str());
return false;
}
......@@ -1191,7 +1190,7 @@ bool ausf_profile::remove_profile_info(const std::string& path) {
bool result = nrf_profile::remove_profile_info(path);
if (result) return true;
// for AUSF info
if (path.compare("ausInfo") == 0) {
if (path.compare("ausfInfo") == 0) {
Logger::nrf_app().debug("Do not support this operation for ausfInfo");
return false;
}
......@@ -1199,8 +1198,7 @@ bool ausf_profile::remove_profile_info(const std::string& path) {
if ((path.compare("nfInstanceId") != 0) and
(path.compare("nfInstanceName") != 0) and
(path.compare("nfType") != 0) and (path.compare("nfStatus") != 0) and
(path.compare("heartBeatTimer") != 0) and
(path.compare("fqdn") != 0) and
(path.compare("heartBeatTimer") != 0) and (path.compare("fqdn") != 0) and
(path.compare("plmnList") != 0) and
(path.compare("ipv4Addresses") != 0) and
(path.compare("priority") != 0) and (path.compare("capacity") != 0) and
......
......@@ -780,7 +780,9 @@ class upf_profile : public nrf_profile {
class ausf_profile : public nrf_profile {
public:
ausf_profile(nrf_event& ev) : nrf_profile(ev, NF_TYPE_AUSF) { ausf_info = {}; }
ausf_profile(nrf_event& ev) : nrf_profile(ev, NF_TYPE_AUSF) {
ausf_info = {};
}
ausf_profile(nrf_event& ev, const std::string& id) : nrf_profile(ev, id) {
nf_type = NF_TYPE_AUSF;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment