From 17d180891f1e237ea5d25835999a8b23a6e7946d Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sat, 11 Jun 2016 20:17:35 +0300 Subject: rename dirs --- libkms++util/helpers.cpp | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 libkms++util/helpers.cpp (limited to 'libkms++util/helpers.cpp') diff --git a/libkms++util/helpers.cpp b/libkms++util/helpers.cpp deleted file mode 100644 index 4aa3194..0000000 --- a/libkms++util/helpers.cpp +++ /dev/null @@ -1,44 +0,0 @@ -#include "kms++util.h" -#include "strhelpers.h" - -using namespace std; - -namespace kms { - -Connector* resolve_connector(Card& card, const string& str) -{ - if (str.length() == 0) - return nullptr; - - auto connectors = card.get_connectors(); - - if (str[0] == '@') { - char* endptr; - unsigned id = strtoul(str.c_str() + 1, &endptr, 10); - if (*endptr == 0) { - Connector* c = card.get_connector(id); - if (!c) - return nullptr; - else - return c; - } - } else { - char* endptr; - unsigned idx = strtoul(str.c_str(), &endptr, 10); - if (*endptr == 0) { - if (idx >= connectors.size()) - return nullptr; - else - return connectors[idx]; - } - } - - for (Connector* conn : connectors) { - if (to_lower(conn->fullname()).find(to_lower(str)) != string::npos) - return conn; - } - - return nullptr; -} - -} -- cgit v1.2.3