/*************************************************************************** * Copyright (C) 2008-2009 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" #ifdef HAVE_TAGLIB_H # include "tag_editor.h" #endif // HAVE_TAGLIB_H using namespace Global; using namespace MPD; Browser *myBrowser = new Browser; const char *Browser::SupportedExtensions[] = { "wma", "asf", "rm", "mp1", "mp2", "mp3", "mp4", "m4a", "flac", "ogg", "wav", "au", "aiff", "aif", "ac3", "aac", "mpc", "it", "mod", "s3m", "xm", "wv", 0 }; void Browser::Init() { w = new Menu(0, MainStartY, COLS, MainHeight, Config.columns_in_browser ? Display::Columns() : "", Config.main_color, brNone); w->HighlightColor(Config.main_highlight_color); w->SetTimeout(ncmpcpp_window_timeout); w->CyclicScrolling(Config.use_cyclic_scrolling); w->SetSelectPrefix(&Config.selected_item_prefix); w->SetSelectSuffix(&Config.selected_item_suffix); w->SetItemDisplayer(Display::Items); w->SetGetStringFunction(ItemToString); isInitialized = 1; } void Browser::Resize() { w->Resize(COLS, MainHeight); w->MoveTo(0, MainStartY); hasToBeResized = 0; } void Browser::SwitchTo() { if (myScreen == this) return; if (!isInitialized) Init(); if (hasToBeResized) Resize(); w->Empty() ? myBrowser->GetDirectory(itsBrowsedDir) : myBrowser->UpdateItemList(); myScreen = this; RedrawHeader = 1; } std::basic_string Browser::Title() { std::basic_string result = U("Browse: "); result += Scroller(itsBrowsedDir, COLS-result.length()-(Config.new_design ? 2 : VolumeState.length()), itsScrollBeginning); return result; } void Browser::EnterPressed() { if (w->Empty()) return; const Item &item = w->Current(); switch (item.type) { case itDirectory: { GetDirectory(item.name, itsBrowsedDir); RedrawHeader = 1; break; } case itSong: { w->BoldOption(w->Choice(), myPlaylist->Add(*item.song, w->isBold(), 1)); break; } case itPlaylist: { SongList list; Mpd.GetPlaylistContent(locale_to_utf_cpy(item.name), list); if (myPlaylist->Add(list, 1)) ShowMessage("Loading and playing playlist %s...", item.name.c_str()); FreeSongList(list); break; } } } void Browser::SpacePressed() { if (Config.space_selects && w->Choice() >= (itsBrowsedDir != "/" ? 1 : 0)) { w->SelectCurrent(); w->Scroll(wDown); return; } if (w->Empty()) return; const Item &item = w->Current(); switch (item.type) { case itDirectory: { if (itsBrowsedDir != "/" && !w->Choice()) break; // do not let add parent dir. SongList list; if (Config.local_browser) { ItemList items; ShowMessage("Scanning \"%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); } else Mpd.GetDirectoryRecursive(locale_to_utf_cpy(item.name), list); if (myPlaylist->Add(list, 0)) ShowMessage("Added folder: %s", item.name.c_str()); FreeSongList(list); break; } case itSong: { w->BoldOption(w->Choice(), myPlaylist->Add(*item.song, w->isBold(), 0)); break; } case itPlaylist: { SongList list; Mpd.GetPlaylistContent(locale_to_utf_cpy(item.name), list); if (myPlaylist->Add(list, 0)) ShowMessage("Loading playlist %s...", item.name.c_str()); FreeSongList(list); break; } } w->Scroll(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().type) { case itDirectory: if (me.bstate & BUTTON1_PRESSED) { GetDirectory(w->Current().name); RedrawHeader = 1; } else { size_t pos = w->Choice(); SpacePressed(); if (pos < w->Size()-1) w->Scroll(wUp); } break; case itPlaylist: case itSong: if (me.bstate & BUTTON1_PRESSED) { size_t pos = w->Choice(); SpacePressed(); if (pos < w->Size()-1) w->Scroll(wUp); } else EnterPressed(); break; } } else Screen< Menu >::MouseButtonPressed(me); } MPD::Song *Browser::CurrentSong() { return !w->Empty() && w->Current().type == itSong ? w->Current().song : 0; } void Browser::ReverseSelection() { w->ReverseSelection(itsBrowsedDir == "/" ? 0 : 1); } void Browser::GetSelectedSongs(MPD::SongList &v) { std::vector selected; w->GetSelected(selected); for (std::vector::const_iterator it = selected.begin(); it != selected.end(); ++it) { const Item &item = w->at(*it); switch (item.type) { case itDirectory: { Mpd.GetDirectoryRecursive(locale_to_utf_cpy(item.name), v); break; } case itSong: { v.push_back(new Song(*item.song)); break; } case itPlaylist: { Mpd.GetPlaylistContent(locale_to_utf_cpy(item.name), v); break; } } } } void Browser::ApplyFilter(const std::string &s) { w->ApplyFilter(s, itsBrowsedDir == "/" ? 0 : 1, REG_ICASE | Config.regex_type); } bool Browser::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); ToLower(ext); for (int i = 0; SupportedExtensions[i]; ++i) if (strcmp(ext.c_str(), SupportedExtensions[i]) == 0) return true; return false; } void Browser::GetLocalDirectory(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; // omit . and .. for (int i = 0; i < 2; ++i) { file = readdir(dir); if (!file) { closedir(dir); return; } } while ((file = readdir(dir))) { if (!Config.local_browser_show_hidden_files && file->d_name[0] == '.') continue; 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); 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_Song *s = mpd_newSong(); s->file = str_pool_get(full_path.c_str()); # ifdef HAVE_TAGLIB_H if (!recursively) TagEditor::ReadTags(s); # endif // HAVE_TAGLIB_H new_item.song = new Song(s); v.push_back(new_item); } } closedir(dir); } void Browser::LocateSong(const MPD::Song &s) { if (s.GetDirectory().empty()) return; Config.local_browser = !s.isFromDB(); SwitchTo(); std::string option = s.toString(Config.song_status_format); locale_to_utf(option); if (itsBrowsedDir != s.GetDirectory()) GetDirectory(s.GetDirectory()); for (size_t i = 0; i < w->Size(); ++i) { if (w->at(i).type == itSong && option == w->at(i).song->toString(Config.song_status_format)) { 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); for (size_t i = 0; i < w->Size(); ++i) if (w->at(i).type == itSong) delete w->at(i).song; w->Clear(0); if (dir != "/") { Item parent; size_t slash = dir.rfind("/"); parent.song = reinterpret_cast(1); // in that way we assume that's really parent dir parent.name = slash != std::string::npos ? dir.substr(0, slash) : "/"; parent.type = itDirectory; utf_to_locale(parent.name); w->AddOption(parent); } ItemList list; Config.local_browser ? GetLocalDirectory(list) : Mpd.GetDirectory(dir, list); sort(list.begin(), list.end(), CaseInsensitiveSorting()); for (ItemList::iterator it = list.begin(); it != list.end(); ++it) { switch (it->type) { case itPlaylist: { utf_to_locale(it->name); w->AddOption(*it); break; } case itDirectory: { utf_to_locale(it->name); if (it->name == subdir) highlightme = w->Size(); w->AddOption(*it); break; } case itSong: { bool bold = 0; for (size_t i = 0; i < myPlaylist->Main()->Size(); ++i) { if (myPlaylist->Main()->at(i).GetHash() == it->song->GetHash()) { bold = 1; break; } } w->AddOption(*it, bold); break; } } } if (highlightme >= 0) w->Highlight(highlightme); } 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; // omit . and .. for (int i = 0; i < 2; ++i) { file = readdir(dir); if (!file) { closedir(dir); return; } } while ((file = readdir(dir))) { 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) ShowMessage("Deleting \"%s\"...", full_path.c_str()); else ShowMessage("Couldn't remove \"%s\": %s", full_path.c_str(), strerror(errno)); } closedir(dir); } void Browser::ChangeBrowseMode() { if (Mpd.GetHostname()[0] != '/') return; Config.local_browser = !Config.local_browser; ShowMessage("Browse mode: %s", Config.local_browser ? "Local filesystem" : "MPD music dir"); itsBrowsedDir = Config.local_browser ? home_path : "/"; w->Reset(); GetDirectory(itsBrowsedDir); RedrawHeader = 1; } void Browser::UpdateItemList() { bool bold = 0; for (size_t i = 0; i < w->Size(); ++i) { if (w->at(i).type == itSong) { for (size_t j = 0; j < myPlaylist->Main()->Size(); ++j) { if (myPlaylist->Main()->at(j).GetHash() == w->at(i).song->GetHash()) { bold = 1; break; } } w->BoldOption(i, bold); bold = 0; } } w->Refresh(); } std::string Browser::ItemToString(const MPD::Item &item, void *) { switch (item.type) { case MPD::itDirectory: { if (item.song) return "[..]"; return "[" + ExtractTopDirectory(item.name) + "]"; } case MPD::itSong: { if (!Config.columns_in_browser) return item.song->toString(Config.song_list_format); else return Playlist::SongInColumnsToString(*item.song, 0); } case MPD::itPlaylist: { return Config.browser_playlist_prefix.Str() + item.name; } default: { return ""; } } }