В настоящее время я использую мультииндекс индекса Boost, чтобы отслеживать, сколько раз пакет проходит через систему.
Каждый раз, когда система касается пакета, ее IP-адрес добавляется в строку, разделенную запятыми.Затем я просматриваю эту строку, токенизирую ее и добавляю каждый найденный IP-адрес в мультииндекс.Поскольку IP-адреса прямо сейчас являются уникальными, невозможно, чтобы один и тот же IP-адрес был добавлен дважды в мультииндекс.То, что должно произойти, - это значение, связанное с IP-адресом, должно быть увеличено, считая, сколько раз пакет проходил через тот же IP-адрес.Когда я использую что-то вроде карты stl, я получаю ответ, который сообщает мне, что ключ не может быть добавлен из-за дублирующего ключа, уже существующего на карте.Многоиндексный Boost предлагает что-то подобное?Я знаю, что если я попытаюсь вставить тот же IP, он потерпит неудачу, но как я могу сказать, что он потерпел неудачу?
Вот часть моего текущего кода:
// Multi-index handling
using boost::multi_index_container;
using namespace boost::multi_index;
struct pathlog
{
string hop;
int passedthru;
pathlog(std::string hop_,int passedthru_):hop(hop_),passedthru(passedthru_){}
friend std::ostream& operator<<(std::ostream& os,const pathlog& e)
{
os<<e.hop<<" "<<e.passedthru<<std::endl;
return os;
}
};
// structs for data
struct hop{};
struct passedthru{};
// multi-index container setup
typedef multi_index_container<
pathlog,
indexed_by<
ordered_unique<
tag<hop>, BOOST_MULTI_INDEX_MEMBER(pathlog,std::string,hop)>,
ordered_non_unique<
tag<passedthru>, BOOST_MULTI_INDEX_MEMBER(pathlog,int,passedthru)> >
> pathlog_set;
int disassemblepathlog(const string& str, pathlog_set& routecontainer, const string& delimiters = ","){
// Tokenizer (heavily modified) from http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html
// Skip delimiters at beginning.
string::size_type lastPos = str.find_first_not_of(delimiters, 0);
// Find first "non-delimiter".
string::size_type pos = str.find_first_of(delimiters, lastPos);
while (string::npos != pos || string::npos != lastPos)
{
// Found a token, add it to the vector.
routecontainer.insert(pathlog((str.substr(lastPos, pos - lastPos)),1)); // if this fails, I need to increment the counter!
// Skip delimiters. Note the "not_of"
lastPos = str.find_first_not_of(delimiters, pos);
// Find next "non-delimiter"
pos = str.find_first_of(delimiters, lastPos);
}
}