/*************************************************************************** * Copyright (C) 2008-2012 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 #include #include #include #include "browser.h" #include "charset.h" #include "display.h" #include "global.h" #include "helpers.h" #include "playlist.h" #include "settings.h" #include "status.h" #include "tag_editor.h" #include "utility/comparators.h" using namespace std::placeholders; using Global::MainHeight; using Global::MainStartY; using Global::myScreen; using Global::RedrawHeader; using MPD::itDirectory; using MPD::itSong; using MPD::itPlaylist; Browser *myBrowser = new Browser; namespace {// std::set SupportedExtensions; bool hasSupportedExtension(const std::string &file); std::string ItemToString(const MPD::Item &item); bool BrowserEntryMatcher(const Regex &rx, const MPD::Item &item, bool filter); } void Browser::Init() { w = new NC::Menu(0, MainStartY, COLS, MainHeight, Config.columns_in_browser && Config.titles_visibility ? Display::Columns(COLS) : "", Config.main_color, NC::brNone); w->HighlightColor(Config.main_highlight_color); w->CyclicScrolling(Config.use_cyclic_scrolling); w->CenteredCursor(Config.centered_cursor); w->SetSelectPrefix(Config.selected_item_prefix); w->SetSelectSuffix(Config.selected_item_suffix); w->setItemDisplayer(Display::Items); if (SupportedExtensions.empty()) Mpd.GetSupportedExtensions(SupportedExtensions); isInitialized = 1; } void Browser::Resize() { size_t x_offset, width; GetWindowResizeParams(x_offset, width); w->Resize(width, MainHeight); w->MoveTo(x_offset, MainStartY); w->SetTitle(Config.columns_in_browser && Config.titles_visibility ? Display::Columns(w->GetWidth()) : ""); hasToBeResized = 0; } void Browser::SwitchTo() { using Global::myLockedScreen; using Global::myInactiveScreen; if (myScreen == this) { # ifndef WIN32 myBrowser->ChangeBrowseMode(); # endif // !WIN32 } if (!isInitialized) Init(); if (myLockedScreen) UpdateInactiveScreen(this); if (hasToBeResized || myLockedScreen) Resize(); if (isLocal() && Config.browser_sort_mode == smMTime) // local browser doesn't support sorting by mtime Config.browser_sort_mode = smName; w->Empty() ? myBrowser->GetDirectory(itsBrowsedDir) : myBrowser->UpdateItemList(); if (myScreen != this && myScreen->isTabbable()) Global::myPrevScreen = myScreen; myScreen = this; RedrawHeader = true; } std::basic_string Browser::Title() { std::basic_string result = U("Browse: "); result += Scroller(TO_WSTRING(itsBrowsedDir), itsScrollBeginning, COLS-result.length()-(Config.new_design ? 2 : Global::VolumeState.length())); return result; } void Browser::EnterPressed() { if (w->Empty()) return; const MPD::Item &item = w->Current().value(); switch (item.type) { case itDirectory: { if (isParentDirectory(item)) { size_t slash = itsBrowsedDir.rfind("/"); if (slash != std::string::npos) GetDirectory(itsBrowsedDir.substr(0, slash), itsBrowsedDir); else GetDirectory("/", itsBrowsedDir); } else GetDirectory(item.name, itsBrowsedDir); RedrawHeader = true; break; } case itSong: { size_t i = w->Choice(); bool res = myPlaylist->Add(*item.song, w->at(i).isBold(), 1); w->at(i).setBold(res); break; } case itPlaylist: { if (Mpd.LoadPlaylist(locale_to_utf_cpy(item.name))) { ShowMessage("Playlist \"%s\" loaded", item.name.c_str()); myPlaylist->PlayNewlyAddedSongs(); } } } } void Browser::SpacePressed() { if (w->Empty()) return; size_t i = itsBrowsedDir != "/" ? 1 : 0; if (Config.space_selects && w->Choice() >= i) { i = w->Choice(); w->at(i).setSelected(!w->at(i).isSelected()); w->Scroll(NC::wDown); return; } const MPD::Item &item = w->Current().value(); if (isParentDirectory(item)) return; switch (item.type) { case itDirectory: { bool result; # ifndef WIN32 if (isLocal()) { MPD::SongList list; MPD::ItemList items; ShowMessage("Scanning directory \"%s\"...", item.name.c_str()); myBrowser->GetLocalDirectory(items, item.name, 1); list.reserve(items.size()); for (MPD::ItemList::const_iterator it = items.begin(); it != items.end(); ++it) list.push_back(*it->song); result = myPlaylist->Add(list, 0); } else # endif // !WIN32 result = Mpd.Add(locale_to_utf_cpy(item.name)); if (result) ShowMessage("Directory \"%s\" added", item.name.c_str()); break; } case itSong: { i = w->Choice(); bool res = myPlaylist->Add(*item.song, w->at(i).isBold(), 0); w->at(i).setBold(res); break; } case itPlaylist: { if (Mpd.LoadPlaylist(locale_to_utf_cpy(item.name))) ShowMessage("Playlist \"%s\" loaded", item.name.c_str()); break; } } w->Scroll(NC::wDown); } void Browser::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)) { w->Goto(me.y); switch (w->Current().value().type) { case itDirectory: if (me.bstate & BUTTON1_PRESSED) { GetDirectory(w->Current().value().name); RedrawHeader = true; } else { size_t pos = w->Choice(); SpacePressed(); if (pos < w->Size()-1) w->Scroll(NC::wUp); } break; case itPlaylist: case itSong: if (me.bstate & BUTTON1_PRESSED) { size_t pos = w->Choice(); SpacePressed(); if (pos < w->Size()-1) w->Scroll(NC::wUp); } else EnterPressed(); break; } } else Screen< NC::Menu >::MouseButtonPressed(me); } /***********************************************************************/ std::string Browser::currentFilter() { return RegexFilter::currentFilter(*w); } void Browser::applyFilter(const std::string &filter) { w->ShowAll(); auto fun = std::bind(BrowserEntryMatcher, _1, _2, true); auto rx = RegexFilter(filter, Config.regex_type, fun); w->filter(w->Begin(), w->End(), rx); } /***********************************************************************/ bool Browser::search(const std::string &constraint) { auto fun = std::bind(BrowserEntryMatcher, _1, _2, false); auto rx = RegexFilter(constraint, Config.regex_type, fun); return w->search(w->Begin(), w->End(), rx); } void Browser::nextFound(bool wrap) { w->NextFound(wrap); } void Browser::prevFound(bool wrap) { w->PrevFound(wrap); } /***********************************************************************/ std::shared_ptr Browser::getProxySongList() { return mkProxySongList(*w, [](NC::Menu::Item &item) { MPD::Song *ptr = 0; if (item.value().type == itSong) ptr = item.value().song.get(); return ptr; }); } MPD::Song *Browser::getSong(size_t pos) { MPD::Song *ptr = 0; if ((*w)[pos].value().type == itSong) ptr = (*w)[pos].value().song.get(); return ptr; } MPD::Song *Browser::currentSong() { if (w->Empty()) return 0; else return getSong(w->Choice()); } bool Browser::allowsSelection() { return true; } void Browser::reverseSelection() { reverseSelectionHelper(w->Begin()+(itsBrowsedDir == "/" ? 0 : 1), w->End()); } MPD::SongList Browser::getSelectedSongs() { MPD::SongList result; auto item_handler = [this, &result](const MPD::Item &item) { if (item.type == itDirectory) { # ifndef WIN32 if (isLocal()) { MPD::ItemList list; GetLocalDirectory(list, item.name, true); for (auto it = list.begin(); it != list.end(); ++it) result.push_back(*it->song); } else # endif // !WIN32 { auto list = Mpd.GetDirectoryRecursive(item.name); result.insert(result.end(), list.begin(), list.end()); } } else if (item.type == itSong) result.push_back(*item.song); else if (item.type == itPlaylist) { auto list = Mpd.GetPlaylistContent(item.name); result.insert(result.end(), list.begin(), list.end()); } }; for (auto it = w->Begin(); it != w->End(); ++it) if (it->isSelected()) item_handler(it->value()); // if no item is selected, add current one if (result.empty() && !w->Empty()) item_handler(w->Current().value()); return result; } void Browser::LocateSong(const MPD::Song &s) { if (s.getDirectory().empty()) return; itsBrowseLocally = !s.isFromDatabase(); if (myScreen != this) SwitchTo(); if (itsBrowsedDir != s.getDirectory()) GetDirectory(s.getDirectory()); for (size_t i = 0; i < w->Size(); ++i) { if ((*w)[i].value().type == itSong && s.getHash() == (*w)[i].value().song->getHash()) { w->Highlight(i); break; } } } void Browser::GetDirectory(std::string dir, std::string subdir) { if (dir.empty()) dir = "/"; int highlightme = -1; itsScrollBeginning = 0; if (itsBrowsedDir != dir) w->Reset(); itsBrowsedDir = dir; locale_to_utf(dir); w->Clear(); if (dir != "/") { MPD::Item parent; parent.name = ".."; parent.type = itDirectory; w->AddItem(parent); } MPD::ItemList list; # ifndef WIN32 if (isLocal()) GetLocalDirectory(list); else list = Mpd.GetDirectory(dir); # else list = Mpd.GetDirectory(dir); # endif // !WIN32 if (!isLocal()) // local directory is already sorted std::sort(list.begin(), list.end(), CaseInsensitiveSorting()); for (MPD::ItemList::iterator it = list.begin(); it != list.end(); ++it) { switch (it->type) { case itPlaylist: { utf_to_locale(it->name); w->AddItem(*it); break; } case itDirectory: { utf_to_locale(it->name); if (it->name == subdir) highlightme = w->Size(); w->AddItem(*it); break; } case itSong: { bool bold = 0; for (size_t i = 0; i < myPlaylist->Items->Size(); ++i) { if (myPlaylist->Items->at(i).value().getHash() == it->song->getHash()) { bold = 1; break; } } w->AddItem(*it, bold); break; } } } if (highlightme >= 0) w->Highlight(highlightme); } #ifndef WIN32 void Browser::GetLocalDirectory(MPD::ItemList &v, const std::string &directory, bool recursively) const { DIR *dir = opendir((directory.empty() ? itsBrowsedDir : directory).c_str()); if (!dir) return; dirent *file; struct stat file_stat; std::string full_path; size_t old_size = v.size(); while ((file = readdir(dir))) { // omit . and .. if (file->d_name[0] == '.' && (file->d_name[1] == '\0' || (file->d_name[1] == '.' && file->d_name[2] == '\0'))) continue; if (!Config.local_browser_show_hidden_files && file->d_name[0] == '.') continue; MPD::Item new_item; full_path = directory.empty() ? itsBrowsedDir : directory; if (itsBrowsedDir != "/") full_path += "/"; full_path += file->d_name; stat(full_path.c_str(), &file_stat); if (S_ISDIR(file_stat.st_mode)) { if (recursively) { GetLocalDirectory(v, full_path, 1); old_size = v.size(); } else { new_item.type = itDirectory; new_item.name = full_path; v.push_back(new_item); } } else if (hasSupportedExtension(file->d_name)) { new_item.type = itSong; mpd_pair file_pair = { "file", full_path.c_str() }; MPD::MutableSong *s = new MPD::MutableSong(mpd_song_begin(&file_pair)); new_item.song = std::shared_ptr(s); # ifdef HAVE_TAGLIB_H if (!recursively) TagEditor::ReadTags(*s); # endif // HAVE_TAGLIB_H v.push_back(new_item); } } closedir(dir); std::sort(v.begin()+old_size, v.end(), CaseInsensitiveSorting()); } void Browser::ClearDirectory(const std::string &path) const { DIR *dir = opendir(path.c_str()); if (!dir) return; dirent *file; struct stat file_stat; std::string full_path; while ((file = readdir(dir))) { // omit . and .. if (file->d_name[0] == '.' && (file->d_name[1] == '\0' || (file->d_name[1] == '.' && file->d_name[2] == '\0'))) continue; full_path = path; if (*full_path.rbegin() != '/') full_path += '/'; full_path += file->d_name; lstat(full_path.c_str(), &file_stat); if (S_ISDIR(file_stat.st_mode)) ClearDirectory(full_path); if (remove(full_path.c_str()) == 0) { const char msg[] = "Deleting \"%s\"..."; ShowMessage(msg, Shorten(TO_WSTRING(full_path), COLS-const_strlen(msg)).c_str()); } else { const char msg[] = "Couldn't remove \"%s\": %s"; ShowMessage(msg, Shorten(TO_WSTRING(full_path), COLS-const_strlen(msg)-25).c_str(), strerror(errno)); } } closedir(dir); } void Browser::ChangeBrowseMode() { if (Mpd.GetHostname()[0] != '/') { ShowMessage("For browsing local filesystem connection to MPD via UNIX Socket is required"); return; } itsBrowseLocally = !itsBrowseLocally; ShowMessage("Browse mode: %s", itsBrowseLocally ? "Local filesystem" : "MPD database"); itsBrowsedDir = itsBrowseLocally ? Config.GetHomeDirectory() : "/"; if (itsBrowseLocally && *itsBrowsedDir.rbegin() == '/') itsBrowsedDir.resize(itsBrowsedDir.length()-1); w->Reset(); GetDirectory(itsBrowsedDir); RedrawHeader = true; } bool Browser::DeleteItem(const MPD::Item &item) { // parent dir if (item.type == itDirectory && item.name == "..") return false; // playlist created by mpd if (!isLocal() && item.type == itPlaylist && CurrentDir() == "/") return Mpd.DeletePlaylist(locale_to_utf_cpy(item.name)); std::string path; if (!isLocal()) path = Config.mpd_music_dir; path += item.type == itSong ? item.song->getURI() : item.name; if (item.type == itDirectory) ClearDirectory(path); return remove(path.c_str()) == 0; } #endif // !WIN32 void Browser::UpdateItemList() { for (size_t i = 0; i < w->Size(); ++i) if ((*w)[i].value().type == itSong) w->at(i).setBold(myPlaylist->checkForSong(*(*w)[i].value().song)); w->Refresh(); } namespace {// bool hasSupportedExtension(const std::string &file) { size_t last_dot = file.rfind("."); if (last_dot > file.length()) return false; std::string ext = file.substr(last_dot+1); lowercase(ext); return SupportedExtensions.find(ext) != SupportedExtensions.end(); } std::string ItemToString(const MPD::Item &item) { std::string result; switch (item.type) { case MPD::itDirectory: result = "[" + getBasename(item.name) + "]"; break; case MPD::itSong: if (Config.columns_in_browser) result = item.song->toString(Config.song_in_columns_to_string_format); else result = item.song->toString(Config.song_list_format_dollar_free); break; case MPD::itPlaylist: result = Config.browser_playlist_prefix.Str() + getBasename(item.name); break; } return result; } bool BrowserEntryMatcher(const Regex &rx, const MPD::Item &item, bool filter) { if (Browser::isParentDirectory(item)) return filter; return rx.match(ItemToString(item)); } }