/*************************************************************************** * Copyright (C) 2008-2010 by Andrzej Rybczak * * electricityispower@gmail.com * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include #include "display.h" #include "global.h" #include "helpers.h" #include "playlist.h" #include "search_engine.h" #include "settings.h" #include "status.h" using Global::MainHeight; using Global::MainStartY; SearchEngine *mySearcher = new SearchEngine; const char *SearchEngine::ConstraintsNames[] = { "Any:", "Artist:", "Title:", "Album:", "Filename:", "Composer:", "Performer:", "Genre:", "Year:", "Comment:" }; const char *SearchEngine::SearchModes[] = { "Match if tag contains searched phrase (no regexes)", "Match if tag contains searched phrase (regexes supported)", "Match only if both values are the same", 0 }; size_t SearchEngine::StaticOptions = 19; size_t SearchEngine::ResetButton = 15; size_t SearchEngine::SearchButton = 14; void SearchEngine::Init() { static Display::ScreenFormat sf = { this, &Config.song_list_format }; w = new Menu< std::pair >(0, MainStartY, COLS, MainHeight, "", Config.main_color, brNone); w->HighlightColor(Config.main_highlight_color); w->CyclicScrolling(Config.use_cyclic_scrolling); w->CenteredCursor(Config.centered_cursor); w->SetItemDisplayer(Display::SearchEngine); w->SetItemDisplayerUserData(&sf); w->SetSelectPrefix(&Config.selected_item_prefix); w->SetSelectSuffix(&Config.selected_item_suffix); w->SetGetStringFunction(SearchEngineOptionToString); SearchMode = &SearchModes[Config.search_engine_default_search_mode]; isInitialized = 1; } void SearchEngine::Resize() { w->Resize(COLS, MainHeight); w->MoveTo(0, MainStartY); hasToBeResized = 0; } void SearchEngine::SwitchTo() { using Global::myScreen; if (myScreen == this) { Reset(); return; } if (!isInitialized) Init(); if (hasToBeResized) Resize(); if (w->Empty()) Prepare(); if (myScreen != this && myScreen->isTabbable()) Global::myPrevScreen = myScreen; myScreen = this; Global::RedrawHeader = 1; if (!w->Back().first) { *w << XY(0, 0) << "Updating list..."; UpdateFoundList(); } } std::basic_string SearchEngine::Title() { return U("Search engine"); } void SearchEngine::EnterPressed() { size_t option = w->Choice(); if (option > ConstraintsNumber && option < SearchButton) w->Current().first->Clear(); if (option < SearchButton) LockStatusbar(); if (option < ConstraintsNumber) { Statusbar() << fmtBold << ConstraintsNames[option] << fmtBoldEnd << ' '; itsConstraints[option] = Global::wFooter->GetString(itsConstraints[option]); w->Current().first->Clear(); *w->Current().first << fmtBold << std::setw(10) << std::left << ConstraintsNames[option] << fmtBoldEnd << ' '; ShowTag(*w->Current().first, itsConstraints[option]); } else if (option == ConstraintsNumber+1) { Config.search_in_db = !Config.search_in_db; *w->Current().first << fmtBold << "Search in:" << fmtBoldEnd << ' ' << (Config.search_in_db ? "Database" : "Current playlist"); } else if (option == ConstraintsNumber+2) { if (!*++SearchMode) SearchMode = &SearchModes[0]; *w->Current().first << fmtBold << "Search mode:" << fmtBoldEnd << ' ' << *SearchMode; } else if (option == SearchButton) { ShowMessage("Searching..."); if (w->Size() > StaticOptions) Prepare(); Search(); if (!w->Back().first) { if (Config.columns_in_search_engine) w->SetTitle(Config.titles_visibility ? Display::Columns() : ""); size_t found = w->Size()-SearchEngine::StaticOptions; found += 3; // don't count options inserted below w->InsertSeparator(ResetButton+1); w->InsertOption(ResetButton+2, std::make_pair(static_cast(0), static_cast(0)), 1, 1); w->at(ResetButton+2).first = new Buffer(); *w->at(ResetButton+2).first << Config.color1 << "Search results: " << Config.color2 << "Found " << found << (found > 1 ? " songs" : " song") << clDefault; w->InsertSeparator(ResetButton+3); UpdateFoundList(); ShowMessage("Searching finished!"); if (Config.block_search_constraints_change) for (size_t i = 0; i < StaticOptions-4; ++i) w->Static(i, 1); w->Scroll(wDown); w->Scroll(wDown); } else ShowMessage("No results found"); } else if (option == ResetButton) { Reset(); } else w->Bold(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 1)); if (option < SearchButton) UnlockStatusbar(); } void SearchEngine::SpacePressed() { if (w->Current().first) return; if (Config.space_selects) { w->Select(w->Choice(), !w->isSelected()); w->Scroll(wDown); return; } w->Bold(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 0)); w->Scroll(wDown); } void SearchEngine::MouseButtonPressed(MEVENT me) { if (w->Empty() || !w->hasCoords(me.x, me.y) || size_t(me.y) >= w->Size()) return; if (me.bstate & (BUTTON1_PRESSED | BUTTON3_PRESSED)) { if (!w->Goto(me.y)) return; w->Refresh(); if ((me.bstate & BUTTON3_PRESSED || w->Choice() > ConstraintsNumber) && w->Choice() < StaticOptions) EnterPressed(); else if (w->Choice() >= StaticOptions) { if (me.bstate & BUTTON1_PRESSED) { size_t pos = w->Choice(); SpacePressed(); if (pos < w->Size()-1) w->Scroll(wUp); } else EnterPressed(); } } else Screen< Menu< std::pair > >::MouseButtonPressed(me); } MPD::Song *SearchEngine::CurrentSong() { return !w->Empty() ? w->Current().second : 0; } void SearchEngine::GetSelectedSongs(MPD::SongList &v) { if (w->Empty()) return; std::vector selected; w->GetSelected(selected); if (selected.empty() && w->Choice() >= StaticOptions) selected.push_back(w->Choice()); for (std::vector::const_iterator it = selected.begin(); it != selected.end(); ++it) v.push_back(new MPD::Song(*w->at(*it).second)); } void SearchEngine::ApplyFilter(const std::string &s) { w->ApplyFilter(s, StaticOptions, REG_ICASE | Config.regex_type); } void SearchEngine::UpdateFoundList() { bool bold = 0; for (size_t i = StaticOptions; i < w->Size(); ++i) { for (size_t j = 0; j < myPlaylist->Items->Size(); ++j) { if (myPlaylist->Items->at(j).GetHash() == w->at(i).second->GetHash()) { bold = 1; break; } } w->Bold(i, bold); bold = 0; } } void SearchEngine::Scroll(int input) { size_t pos = w->Choice(); // above the reset button if (pos < ResetButton) { if (Keypressed(input, Key.UpAlbum) || Keypressed(input, Key.UpArtist)) w->Highlight(0); else if (Keypressed(input, Key.DownAlbum) || Keypressed(input, Key.DownArtist)) w->Highlight(ResetButton); } // reset button else if (pos == ResetButton) { if (Keypressed(input, Key.UpAlbum) || Keypressed(input, Key.UpArtist)) w->Highlight(0); else if (Keypressed(input, Key.DownAlbum) || Keypressed(input, Key.DownArtist)) w->Highlight(StaticOptions); // first search result } // we are in the search results at this point else if (pos >= StaticOptions) { if (Keypressed(input, Key.UpAlbum)) { if (pos == StaticOptions) { w->Highlight(ResetButton); return; } else { std::string album = w->at(pos).second->GetAlbum(); while (pos > StaticOptions) if (w->at(--pos).second->GetAlbum() != album) break; } } else if (Keypressed(input, Key.DownAlbum)) { std::string album = w->at(pos).second->GetAlbum(); while (pos < w->Size() - 1) if (w->at(++pos).second->GetAlbum() != album) break; } else if (Keypressed(input, Key.UpArtist)) { if (pos == StaticOptions) { w->Highlight(0); return; } else { std::string artist = w->at(pos).second->GetArtist(); while (pos > StaticOptions) if (w->at(--pos).second->GetArtist() != artist) break; } } else if (Keypressed(input, Key.DownArtist)) { std::string artist = w->at(pos).second->GetArtist(); while (pos < w->Size() - 1) if (w->at(++pos).second->GetArtist() != artist) break; } w->Highlight(pos); } } void SearchEngine::SelectAlbum() { size_t pos = w->Choice(); if (pos < StaticOptions) return; // not on a song std::string album = w->at(pos).second->GetAlbum(); // select song under cursor w->Select(pos, 1); // go up while (pos > StaticOptions) { if (w->at(--pos).second->GetAlbum() != album) break; else w->Select(pos, 1); } // go down while (pos < w->Size() - 1) { if (w->at(++pos).second->GetAlbum() != album) break; else w->Select(pos, 1); } } void SearchEngine::Prepare() { for (size_t i = 0; i < w->Size(); ++i) { if (i == ConstraintsNumber || i == SearchButton-1 || i == ResetButton+1 || i == ResetButton+3) // separators continue; delete (*w)[i].first; delete (*w)[i].second; } w->SetTitle(""); w->Clear(); w->ResizeList(StaticOptions-3); w->IntoSeparator(ConstraintsNumber); w->IntoSeparator(SearchButton-1); for (size_t i = 0; i < StaticOptions-3; ++i) { if (i == ConstraintsNumber || i == SearchButton-1) // separators continue; (*w)[i].first = new Buffer(); } for (size_t i = 0; i < ConstraintsNumber; ++i) { *(*w)[i].first << fmtBold << std::setw(10) << std::left << ConstraintsNames[i] << fmtBoldEnd << ' '; ShowTag(*(*w)[i].first, itsConstraints[i]); } *w->at(ConstraintsNumber+1).first << fmtBold << "Search in:" << fmtBoldEnd << ' ' << (Config.search_in_db ? "Database" : "Current playlist"); *w->at(ConstraintsNumber+2).first << fmtBold << "Search mode:" << fmtBoldEnd << ' ' << *SearchMode; *w->at(SearchButton).first << "Search"; *w->at(ResetButton).first << "Reset"; } void SearchEngine::Reset() { for (size_t i = 0; i < ConstraintsNumber; ++i) itsConstraints[i].clear(); w->Reset(); Prepare(); ShowMessage("Search state reset"); } void SearchEngine::Search() { bool constraints_empty = 1; for (size_t i = 0; i < ConstraintsNumber; ++i) { if (!itsConstraints[i].empty()) { constraints_empty = 0; break; } } if (constraints_empty) return; if (Config.search_in_db && (SearchMode == &SearchModes[0] || SearchMode == &SearchModes[2])) // use built-in mpd searching { Mpd.StartSearch(SearchMode == &SearchModes[2]); if (!itsConstraints[0].empty()) Mpd.AddSearchAny(itsConstraints[0]); if (!itsConstraints[1].empty()) Mpd.AddSearch(MPD_TAG_ARTIST, itsConstraints[1]); if (!itsConstraints[2].empty()) Mpd.AddSearch(MPD_TAG_TITLE, itsConstraints[2]); if (!itsConstraints[3].empty()) Mpd.AddSearch(MPD_TAG_ALBUM, itsConstraints[3]); if (!itsConstraints[4].empty()) Mpd.AddSearchURI(itsConstraints[4]); if (!itsConstraints[5].empty()) Mpd.AddSearch(MPD_TAG_COMPOSER, itsConstraints[5]); if (!itsConstraints[6].empty()) Mpd.AddSearch(MPD_TAG_PERFORMER, itsConstraints[6]); if (!itsConstraints[7].empty()) Mpd.AddSearch(MPD_TAG_GENRE, itsConstraints[7]); if (!itsConstraints[8].empty()) Mpd.AddSearch(MPD_TAG_DATE, itsConstraints[8]); if (!itsConstraints[9].empty()) Mpd.AddSearch(MPD_TAG_COMMENT, itsConstraints[9]); MPD::SongList results; Mpd.CommitSearch(results); for (MPD::SongList::const_iterator it = results.begin(); it != results.end(); ++it) w->AddOption(std::make_pair(static_cast(0), *it)); return; } MPD::SongList list; if (Config.search_in_db) Mpd.GetDirectoryRecursive("/", list); else { list.reserve(myPlaylist->Items->Size()); for (size_t i = 0; i < myPlaylist->Items->Size(); ++i) list.push_back(&(*myPlaylist->Items)[i]); } bool any_found = 1; bool found = 1; for (MPD::SongList::const_iterator it = list.begin(); it != list.end(); ++it) { if (SearchMode != &SearchModes[2]) // match to pattern { regex_t rx; if (!itsConstraints[0].empty()) { if (regcomp(&rx, itsConstraints[0].c_str(), REG_ICASE | Config.regex_type) == 0) { any_found = !regexec(&rx, (*it)->GetArtist().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetTitle().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetAlbum().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetName().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetComposer().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetPerformer().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetGenre().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetDate().c_str(), 0, 0, 0) || !regexec(&rx, (*it)->GetComment().c_str(), 0, 0, 0); } regfree(&rx); } if (found && !itsConstraints[1].empty()) { if (!regcomp(&rx, itsConstraints[1].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetArtist().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[2].empty()) { if (!regcomp(&rx, itsConstraints[2].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetTitle().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[3].empty()) { if (!regcomp(&rx, itsConstraints[3].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetAlbum().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[4].empty()) { if (!regcomp(&rx, itsConstraints[4].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetName().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[5].empty()) { if (!regcomp(&rx, itsConstraints[5].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetComposer().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[6].empty()) { if (!regcomp(&rx, itsConstraints[6].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetPerformer().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[7].empty()) { if (!regcomp(&rx, itsConstraints[7].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetGenre().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[8].empty()) { if (!regcomp(&rx, itsConstraints[8].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetDate().c_str(), 0, 0, 0); regfree(&rx); } if (found && !itsConstraints[9].empty()) { if (!regcomp(&rx, itsConstraints[9].c_str(), REG_ICASE | Config.regex_type)) found = !regexec(&rx, (*it)->GetComment().c_str(), 0, 0, 0); regfree(&rx); } } else // match only if values are equal { CaseInsensitiveStringComparison cmp; if (!itsConstraints[0].empty()) any_found = !cmp((*it)->GetArtist(), itsConstraints[0]) || !cmp((*it)->GetTitle(), itsConstraints[0]) || !cmp((*it)->GetAlbum(), itsConstraints[0]) || !cmp((*it)->GetName(), itsConstraints[0]) || !cmp((*it)->GetComposer(), itsConstraints[0]) || !cmp((*it)->GetPerformer(), itsConstraints[0]) || !cmp((*it)->GetGenre(), itsConstraints[0]) || !cmp((*it)->GetDate(), itsConstraints[0]) || !cmp((*it)->GetComment(), itsConstraints[0]); if (found && !itsConstraints[1].empty()) found = !cmp((*it)->GetArtist(), itsConstraints[1]); if (found && !itsConstraints[2].empty()) found = !cmp((*it)->GetTitle(), itsConstraints[2]); if (found && !itsConstraints[3].empty()) found = !cmp((*it)->GetAlbum(), itsConstraints[3]); if (found && !itsConstraints[4].empty()) found = !cmp((*it)->GetName(), itsConstraints[4]); if (found && !itsConstraints[5].empty()) found = !cmp((*it)->GetComposer(), itsConstraints[5]); if (found && !itsConstraints[6].empty()) found = !cmp((*it)->GetPerformer(), itsConstraints[6]); if (found && !itsConstraints[7].empty()) found = !cmp((*it)->GetGenre(), itsConstraints[7]); if (found && !itsConstraints[8].empty()) found = !cmp((*it)->GetDate(), itsConstraints[8]); if (found && !itsConstraints[9].empty()) found = !cmp((*it)->GetComment(), itsConstraints[9]); } if (found && any_found) { MPD::Song *ss = Config.search_in_db ? *it : new MPD::Song(**it); w->AddOption(std::make_pair(static_cast(0), ss)); list[it-list.begin()] = 0; } found = 1; any_found = 1; } if (Config.search_in_db) // free song list only if it's database MPD::FreeSongList(list); } std::string SearchEngine::SearchEngineOptionToString(const std::pair &pair, void *) { if (!Config.columns_in_search_engine) return pair.second->toString(Config.song_list_format); else return Playlist::SongInColumnsToString(*pair.second, 0); }