2017-03-18 17:54:39 +00:00
|
|
|
#include "FileFilterIndex.h"
|
|
|
|
|
|
|
|
#define UNKNOWN_LABEL "UNKNOWN"
|
|
|
|
#define INCLUDE_UNKNOWN false;
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
FileFilterIndex::FileFilterIndex()
|
2017-06-12 16:38:59 +00:00
|
|
|
: filterByGenre(false), filterByPlayers(false), filterByPubDev(false), filterByRatings(false), filterByFavorites(false)
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
FilterDataDecl filterDecls[] = {
|
|
|
|
//type //allKeys //filteredBy //filteredKeys //primaryKey //hasSecondaryKey //secondaryKey //menuLabel
|
2017-06-12 16:38:59 +00:00
|
|
|
{ FAVORITES_FILTER, &favoritesIndexAllKeys, &filterByFavorites, &favoritesIndexFilteredKeys,"favorite", false, "", "FAVORITES" },
|
2017-03-18 17:54:39 +00:00
|
|
|
{ GENRE_FILTER, &genreIndexAllKeys, &filterByGenre, &genreIndexFilteredKeys, "genre", true, "genre", "GENRE" },
|
|
|
|
{ PLAYER_FILTER, &playersIndexAllKeys, &filterByPlayers, &playersIndexFilteredKeys, "players", false, "", "PLAYERS" },
|
|
|
|
{ PUBDEV_FILTER, &pubDevIndexAllKeys, &filterByPubDev, &pubDevIndexFilteredKeys, "developer", true, "publisher", "PUBLISHER / DEVELOPER" },
|
|
|
|
{ RATINGS_FILTER, &ratingsIndexAllKeys, &filterByRatings, &ratingsIndexFilteredKeys, "rating", false, "", "RATING" }
|
|
|
|
};
|
|
|
|
|
|
|
|
filterDataDecl = std::vector<FilterDataDecl>(filterDecls, filterDecls + sizeof(filterDecls) / sizeof(filterDecls[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
FileFilterIndex::~FileFilterIndex()
|
|
|
|
{
|
2017-07-18 09:45:50 +00:00
|
|
|
resetIndex();
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
std::vector<FilterDataDecl>& FileFilterIndex::getFilterDataDecls()
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
return filterDataDecl;
|
|
|
|
}
|
|
|
|
|
2017-07-18 09:45:50 +00:00
|
|
|
void FileFilterIndex::importIndex(FileFilterIndex* indexToImport)
|
|
|
|
{
|
|
|
|
struct IndexImportStructure
|
|
|
|
{
|
|
|
|
std::map<std::string, int>* destinationIndex;
|
|
|
|
std::map<std::string, int>* sourceIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
IndexImportStructure indexStructDecls[] = {
|
|
|
|
{ &genreIndexAllKeys, &(indexToImport->genreIndexAllKeys) },
|
|
|
|
{ &playersIndexAllKeys, &(indexToImport->playersIndexAllKeys) },
|
|
|
|
{ &pubDevIndexAllKeys, &(indexToImport->pubDevIndexAllKeys) },
|
|
|
|
{ &ratingsIndexAllKeys, &(indexToImport->ratingsIndexAllKeys) },
|
|
|
|
{ &favoritesIndexAllKeys, &(indexToImport->favoritesIndexAllKeys) }
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<IndexImportStructure> indexImportDecl = std::vector<IndexImportStructure>(indexStructDecls, indexStructDecls + sizeof(indexStructDecls) / sizeof(indexStructDecls[0]));
|
|
|
|
|
|
|
|
for (std::vector<IndexImportStructure>::iterator indexesIt = indexImportDecl.begin(); indexesIt != indexImportDecl.end(); ++indexesIt )
|
|
|
|
{
|
|
|
|
for (std::map<std::string, int>::iterator sourceIt = (*indexesIt).sourceIndex->begin(); sourceIt != (*indexesIt).sourceIndex->end(); ++sourceIt )
|
|
|
|
{
|
|
|
|
if ((*indexesIt).destinationIndex->find((*sourceIt).first) == (*indexesIt).destinationIndex->end())
|
|
|
|
{
|
|
|
|
// entry doesn't exist
|
|
|
|
(*((*indexesIt).destinationIndex))[(*sourceIt).first] = (*sourceIt).second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*((*indexesIt).destinationIndex))[(*sourceIt).first] += (*sourceIt).second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void FileFilterIndex::resetIndex()
|
|
|
|
{
|
|
|
|
clearAllFilters();
|
|
|
|
clearIndex(genreIndexAllKeys);
|
|
|
|
clearIndex(playersIndexAllKeys);
|
|
|
|
clearIndex(pubDevIndexAllKeys);
|
|
|
|
clearIndex(ratingsIndexAllKeys);
|
|
|
|
clearIndex(favoritesIndexAllKeys);
|
|
|
|
}
|
|
|
|
|
2017-03-18 17:54:39 +00:00
|
|
|
std::string FileFilterIndex::getIndexableKey(FileData* game, FilterIndexType type, bool getSecondary)
|
|
|
|
{
|
|
|
|
std::string key = "";
|
2017-05-18 10:16:57 +00:00
|
|
|
switch(type)
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
case GENRE_FILTER:
|
|
|
|
{
|
|
|
|
key = strToUpper(game->metadata.get("genre"));
|
|
|
|
boost::trim(key);
|
|
|
|
if (getSecondary && !key.empty()) {
|
|
|
|
std::istringstream f(key);
|
2017-05-18 10:16:57 +00:00
|
|
|
std::string newKey;
|
|
|
|
getline(f, newKey, '/');
|
|
|
|
if (!newKey.empty() && newKey != key)
|
|
|
|
{
|
|
|
|
key = newKey;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = std::string();
|
|
|
|
}
|
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PLAYER_FILTER:
|
|
|
|
{
|
|
|
|
if (getSecondary)
|
|
|
|
break;
|
2017-05-18 10:16:57 +00:00
|
|
|
|
2017-03-18 17:54:39 +00:00
|
|
|
key = game->metadata.get("players");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PUBDEV_FILTER:
|
|
|
|
{
|
|
|
|
key = strToUpper(game->metadata.get("publisher"));
|
|
|
|
boost::trim(key);
|
|
|
|
|
|
|
|
if ((getSecondary && !key.empty()) || (!getSecondary && key.empty()))
|
|
|
|
key = strToUpper(game->metadata.get("developer"));
|
|
|
|
else
|
|
|
|
key = strToUpper(game->metadata.get("publisher"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RATINGS_FILTER:
|
|
|
|
{
|
|
|
|
int ratingNumber = 0;
|
2017-05-18 10:16:57 +00:00
|
|
|
if (!getSecondary)
|
|
|
|
{
|
2017-03-18 17:54:39 +00:00
|
|
|
std::string ratingString = game->metadata.get("rating");
|
|
|
|
if (!ratingString.empty()) {
|
|
|
|
try {
|
|
|
|
ratingNumber = boost::math::iround(std::stod(ratingString)*5);
|
|
|
|
if (ratingNumber < 0)
|
|
|
|
ratingNumber = 0;
|
|
|
|
|
|
|
|
key = std::to_string(ratingNumber) + " STARS";
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
|
|
|
catch (int e)
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
LOG(LogError) << "Error parsing Rating (invalid value, expected decimal): " << ratingString;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-06-12 16:38:59 +00:00
|
|
|
case FAVORITES_FILTER:
|
|
|
|
{
|
|
|
|
if (game->getType() != GAME)
|
|
|
|
return "FALSE";
|
|
|
|
key = strToUpper(game->metadata.get("favorite"));
|
|
|
|
break;
|
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
boost::trim(key);
|
|
|
|
if (key.empty() || (type == RATINGS_FILTER && key == "0 STARS")) {
|
|
|
|
key = UNKNOWN_LABEL;
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::addToIndex(FileData* game)
|
|
|
|
{
|
|
|
|
manageGenreEntryInIndex(game);
|
|
|
|
managePlayerEntryInIndex(game);
|
|
|
|
managePubDevEntryInIndex(game);
|
|
|
|
manageRatingsEntryInIndex(game);
|
2017-06-12 16:38:59 +00:00
|
|
|
manageFavoritesEntryInIndex(game);
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::removeFromIndex(FileData* game)
|
|
|
|
{
|
|
|
|
manageGenreEntryInIndex(game, true);
|
|
|
|
managePlayerEntryInIndex(game, true);
|
|
|
|
managePubDevEntryInIndex(game, true);
|
|
|
|
manageRatingsEntryInIndex(game, true);
|
2017-06-12 16:38:59 +00:00
|
|
|
manageFavoritesEntryInIndex(game, true);
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
void FileFilterIndex::setFilter(FilterIndexType type, std::vector<std::string>* values)
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
// test if it exists before setting
|
|
|
|
if(type == NONE)
|
|
|
|
{
|
|
|
|
clearAllFilters();
|
|
|
|
}
|
|
|
|
else
|
2017-05-18 10:16:57 +00:00
|
|
|
{
|
2017-03-18 17:54:39 +00:00
|
|
|
for (std::vector<FilterDataDecl>::iterator it = filterDataDecl.begin(); it != filterDataDecl.end(); ++it ) {
|
|
|
|
if ((*it).type == type)
|
|
|
|
{
|
|
|
|
FilterDataDecl filterData = (*it);
|
|
|
|
*(filterData.filteredByRef) = values->size() > 0;
|
|
|
|
filterData.currentFilteredKeys->clear();
|
|
|
|
for (std::vector<std::string>::iterator vit = values->begin(); vit != values->end(); ++vit ) {
|
2017-05-18 10:16:57 +00:00
|
|
|
// check if exists
|
|
|
|
if (filterData.allIndexKeys->find(*vit) != filterData.allIndexKeys->end()) {
|
|
|
|
filterData.currentFilteredKeys->push_back(std::string(*vit));
|
|
|
|
}
|
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
void FileFilterIndex::clearAllFilters()
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
2017-05-18 10:16:57 +00:00
|
|
|
for (std::vector<FilterDataDecl>::iterator it = filterDataDecl.begin(); it != filterDataDecl.end(); ++it )
|
|
|
|
{
|
2017-03-18 17:54:39 +00:00
|
|
|
FilterDataDecl filterData = (*it);
|
|
|
|
*(filterData.filteredByRef) = false;
|
|
|
|
filterData.currentFilteredKeys->clear();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
void FileFilterIndex::debugPrintIndexes()
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "Printing Indexes...";
|
2017-03-18 17:54:39 +00:00
|
|
|
for (auto x: playersIndexAllKeys) {
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "Multiplayer Index: " << x.first << ": " << x.second;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
for (auto x: genreIndexAllKeys) {
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "Genre Index: " << x.first << ": " << x.second;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
for (auto x: ratingsIndexAllKeys) {
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "Ratings Index: " << x.first << ": " << x.second;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
for (auto x: pubDevIndexAllKeys) {
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "PubDev Index: " << x.first << ": " << x.second;
|
2017-06-12 16:38:59 +00:00
|
|
|
}
|
|
|
|
for (auto x: favoritesIndexAllKeys) {
|
2017-07-18 09:45:50 +00:00
|
|
|
LOG(LogInfo) << "Favorites Index: " << x.first << ": " << x.second;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileFilterIndex::showFile(FileData* game)
|
2017-05-18 10:16:57 +00:00
|
|
|
{
|
2017-03-18 17:54:39 +00:00
|
|
|
// this shouldn't happen, but just in case let's get it out of the way
|
|
|
|
if (!isFiltered())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// if folder, needs further inspection - i.e. see if folder contains at least one element
|
|
|
|
// that should be shown
|
2017-05-18 10:16:57 +00:00
|
|
|
if (game->getType() == FOLDER) {
|
2017-03-18 17:54:39 +00:00
|
|
|
std::vector<FileData*> children = game->getChildren();
|
|
|
|
// iterate through all of the children, until there's a match
|
2017-05-18 10:16:57 +00:00
|
|
|
|
|
|
|
for (std::vector<FileData*>::iterator it = children.begin(); it != children.end(); ++it ) {
|
2017-03-18 17:54:39 +00:00
|
|
|
if (showFile(*it))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool keepGoing = false;
|
|
|
|
|
|
|
|
for (std::vector<FilterDataDecl>::iterator it = filterDataDecl.begin(); it != filterDataDecl.end(); ++it ) {
|
|
|
|
FilterDataDecl filterData = (*it);
|
2017-05-18 10:16:57 +00:00
|
|
|
if(*(filterData.filteredByRef))
|
|
|
|
{
|
2017-03-18 17:54:39 +00:00
|
|
|
// try to find a match
|
2017-05-18 10:16:57 +00:00
|
|
|
std::string key = getIndexableKey(game, filterData.type, false);
|
|
|
|
keepGoing = isKeyBeingFilteredBy(key, filterData.type);
|
2017-03-18 17:54:39 +00:00
|
|
|
|
|
|
|
// if we didn't find a match, try for secondary keys - i.e. publisher and dev, or first genre
|
2017-05-18 10:16:57 +00:00
|
|
|
if (!keepGoing)
|
|
|
|
{
|
|
|
|
if (!filterData.hasSecondaryKey)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string secKey = getIndexableKey(game, filterData.type, true);
|
|
|
|
if (secKey != UNKNOWN_LABEL)
|
|
|
|
{
|
|
|
|
keepGoing = isKeyBeingFilteredBy(secKey, filterData.type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if still nothing, then it's not a match
|
|
|
|
if (!keepGoing)
|
2017-03-18 17:54:39 +00:00
|
|
|
return false;
|
2017-05-18 10:16:57 +00:00
|
|
|
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
2017-05-18 10:16:57 +00:00
|
|
|
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return keepGoing;
|
|
|
|
}
|
|
|
|
|
2017-05-18 10:16:57 +00:00
|
|
|
bool FileFilterIndex::isKeyBeingFilteredBy(std::string key, FilterIndexType type)
|
|
|
|
{
|
2017-06-12 16:38:59 +00:00
|
|
|
const FilterIndexType filterTypes[5] = { FAVORITES_FILTER, PLAYER_FILTER, RATINGS_FILTER, GENRE_FILTER, PUBDEV_FILTER };
|
|
|
|
std::vector<std::string> filterKeysList[5] = { favoritesIndexFilteredKeys, playersIndexFilteredKeys, ratingsIndexFilteredKeys, genreIndexFilteredKeys, pubDevIndexFilteredKeys };
|
2017-03-18 17:54:39 +00:00
|
|
|
|
2017-06-12 16:38:59 +00:00
|
|
|
for (int i = 0; i < 5; i++)
|
2017-05-18 10:16:57 +00:00
|
|
|
{
|
|
|
|
if (filterTypes[i] == type)
|
|
|
|
{
|
|
|
|
for (std::vector<std::string>::iterator it = filterKeysList[i].begin(); it != filterKeysList[i].end(); ++it )
|
|
|
|
{
|
|
|
|
if (key == (*it))
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
|
|
|
return false;
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::manageGenreEntryInIndex(FileData* game, bool remove)
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string key = getIndexableKey(game, GENRE_FILTER, false);
|
|
|
|
|
|
|
|
// flag for including unknowns
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
|
|
|
|
// only add unknown in pubdev IF both dev and pub are empty
|
|
|
|
if (!includeUnknown && (key == UNKNOWN_LABEL || key == "BIOS")) {
|
|
|
|
// no valid genre info found
|
|
|
|
return;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
|
|
|
|
manageIndexEntry(&genreIndexAllKeys, key, remove);
|
|
|
|
|
|
|
|
key = getIndexableKey(game, GENRE_FILTER, true);
|
|
|
|
if (!includeUnknown && key == UNKNOWN_LABEL)
|
|
|
|
{
|
|
|
|
manageIndexEntry(&genreIndexAllKeys, key, remove);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::managePlayerEntryInIndex(FileData* game, bool remove)
|
|
|
|
{
|
|
|
|
// flag for including unknowns
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
std::string key = getIndexableKey(game, PLAYER_FILTER, false);
|
|
|
|
|
|
|
|
// only add unknown in pubdev IF both dev and pub are empty
|
|
|
|
if (!includeUnknown && key == UNKNOWN_LABEL) {
|
|
|
|
// no valid player info found
|
|
|
|
return;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
|
|
|
|
manageIndexEntry(&playersIndexAllKeys, key, remove);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::managePubDevEntryInIndex(FileData* game, bool remove)
|
|
|
|
{
|
|
|
|
std::string pub = getIndexableKey(game, PUBDEV_FILTER, false);
|
|
|
|
std::string dev = getIndexableKey(game, PUBDEV_FILTER, true);
|
|
|
|
|
|
|
|
// flag for including unknowns
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
bool unknownPub = false;
|
|
|
|
bool unknownDev = false;
|
|
|
|
|
|
|
|
if (pub == UNKNOWN_LABEL) {
|
|
|
|
unknownPub = true;
|
|
|
|
}
|
|
|
|
if (dev == UNKNOWN_LABEL) {
|
|
|
|
unknownDev = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!includeUnknown && unknownDev && unknownPub) {
|
|
|
|
// no valid rating info found
|
|
|
|
return;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
|
|
|
|
if (unknownDev && unknownPub) {
|
|
|
|
// if no info at all
|
|
|
|
manageIndexEntry(&pubDevIndexAllKeys, pub, remove);
|
|
|
|
}
|
2017-05-18 10:16:57 +00:00
|
|
|
else
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
if (!unknownDev) {
|
|
|
|
// if no info at all
|
|
|
|
manageIndexEntry(&pubDevIndexAllKeys, dev, remove);
|
|
|
|
}
|
|
|
|
if (!unknownPub) {
|
|
|
|
// if no info at all
|
|
|
|
manageIndexEntry(&pubDevIndexAllKeys, pub, remove);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::manageRatingsEntryInIndex(FileData* game, bool remove)
|
|
|
|
{
|
|
|
|
std::string key = getIndexableKey(game, RATINGS_FILTER, false);
|
|
|
|
|
|
|
|
// flag for including unknowns
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
|
|
|
|
if (!includeUnknown && key == UNKNOWN_LABEL) {
|
|
|
|
// no valid rating info found
|
|
|
|
return;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
|
|
|
|
manageIndexEntry(&ratingsIndexAllKeys, key, remove);
|
|
|
|
}
|
|
|
|
|
2017-06-12 16:38:59 +00:00
|
|
|
void FileFilterIndex::manageFavoritesEntryInIndex(FileData* game, bool remove)
|
|
|
|
{
|
|
|
|
// flag for including unknowns
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
std::string key = getIndexableKey(game, FAVORITES_FILTER, false);
|
|
|
|
if (!includeUnknown && key == UNKNOWN_LABEL) {
|
|
|
|
// no valid favorites info found
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
manageIndexEntry(&favoritesIndexAllKeys, key, remove);
|
|
|
|
}
|
|
|
|
|
2017-03-18 17:54:39 +00:00
|
|
|
void FileFilterIndex::manageIndexEntry(std::map<std::string, int>* index, std::string key, bool remove) {
|
|
|
|
bool includeUnknown = INCLUDE_UNKNOWN;
|
|
|
|
if (!includeUnknown && key == UNKNOWN_LABEL)
|
|
|
|
return;
|
|
|
|
if (remove) {
|
|
|
|
// removing entry
|
|
|
|
if (index->find(key) == index->end())
|
|
|
|
{
|
|
|
|
// this shouldn't happen
|
2017-06-12 16:38:59 +00:00
|
|
|
LOG(LogInfo) << "Couldn't find entry in index! " << key;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
(index->at(key))--;
|
|
|
|
if(index->at(key) <= 0) {
|
|
|
|
index->erase(key);
|
|
|
|
}
|
|
|
|
}
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
|
|
|
else
|
2017-03-18 17:54:39 +00:00
|
|
|
{
|
|
|
|
// adding entry
|
|
|
|
if (index->find(key) == index->end())
|
|
|
|
{
|
|
|
|
(*index)[key] = 1;
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
(index->at(key))++;
|
|
|
|
}
|
2017-05-18 10:16:57 +00:00
|
|
|
}
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileFilterIndex::clearIndex(std::map<std::string, int> indexMap)
|
|
|
|
{
|
2017-05-18 10:16:57 +00:00
|
|
|
indexMap.clear();
|
2017-03-18 17:54:39 +00:00
|
|
|
}
|