/*************************************************************************** * Copyright (C) 2006 by Massimiliano Torromeo * * massimiliano.torromeo@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., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ //for browsing the filesystem #include #include #include #include #include #include "filelister.h" #include "utilities.h" using namespace std; FileLister::FileLister(const string &startPath, bool showDirectories, bool showFiles) { this->showDirectories = showDirectories; this->showFiles = showFiles; setPath(startPath,false); } const string &FileLister::getPath() { return path; } void FileLister::setPath(const string &path, bool doBrowse) { this->path = path; if (this->path[path.length()-1]!='/') this->path += "/"; if (doBrowse) browse(); } const string &FileLister::getFilter() { return filter; } void FileLister::setFilter(const string &filter) { this->filter = filter; } void FileLister::browse() { directories.clear(); files.clear(); if (showDirectories || showFiles) { DIR *dirp; if ((dirp = opendir(path.c_str())) == NULL) { cout << "Error: opendir(" << path << ")" << endl; return; } vector vfilter; split(vfilter,getFilter(),","); string filepath, file; struct stat st; struct dirent *dptr; while ((dptr = readdir(dirp))) { file = dptr->d_name; if (file[0]=='.' && file!="..") continue; filepath = path+file; int statRet = stat(filepath.c_str(), &st); if (statRet == -1) { cout << "\033[0;34mGMENU2X:\033[0;31m stat failed on '" << filepath << "' with error '" << strerror(errno) << "'\033[0m" << endl; continue; } if (find(exclude.begin(), exclude.end(), file) != exclude.end()) continue; if (S_ISDIR(st.st_mode)) { if (!showDirectories) continue; #ifdef TARGET_GP2X // if (!(path=="/card/" && (file!="sd" && file!="ext" && file!="nand"))) #endif directories.push_back(file); } else { if (!showFiles) continue; bool filterOk = false; for (uint i = 0; i=directories.size() && x