/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #if defined(POSIX) #define FORBIDDEN_SYMBOL_ALLOW_ALL #include "backends/fs/posix-drives/posix-drives-fs.h" #include "common/algorithm.h" #include DrivePOSIXFilesystemNode::DrivePOSIXFilesystemNode(const Common::String &path, const DrivesArray &drives) : POSIXFilesystemNode(path), _isPseudoRoot(false), _drives(drives) { if (isDrive(path)) { _isDirectory = true; _isValid = true; // FIXME: Add a setting for deciding whether drive paths need to end with a slash if (!_path.hasSuffix("/")) { _path += "/"; } return; } } DrivePOSIXFilesystemNode::DrivePOSIXFilesystemNode(const DrivesArray &drives) : _isPseudoRoot(true), _drives(drives) { _isDirectory = true; _isValid = false; } DrivePOSIXFilesystemNode *DrivePOSIXFilesystemNode::getChildWithKnownType(const Common::String &n, bool isDirectoryFlag) const { assert(_isDirectory); // Make sure the string contains no slashes assert(!n.contains('/')); Common::String newPath(_path); if (_path.lastChar() != '/') newPath += '/'; newPath += n; DrivePOSIXFilesystemNode *child = new DrivePOSIXFilesystemNode(_drives); child->_path = newPath; child->_isValid = true; child->_isPseudoRoot = false; child->_isDirectory = isDirectoryFlag; child->_displayName = n; return child; } AbstractFSNode *DrivePOSIXFilesystemNode::getChild(const Common::String &n) const { DrivePOSIXFilesystemNode *child = getChildWithKnownType(n, false); child->setFlags(); return child; } bool DrivePOSIXFilesystemNode::getChildren(AbstractFSList &list, AbstractFSNode::ListMode mode, bool hidden) const { assert(_isDirectory); if (_isPseudoRoot) { for (uint i = 0; i < _drives.size(); i++) { list.push_back(makeNode(_drives[i])); } return true; } else { DIR *dirp = opendir(_path.c_str()); struct dirent *dp; if (!dirp) return false; while ((dp = readdir(dirp)) != nullptr) { // Skip 'invisible' files if necessary if (dp->d_name[0] == '.' && !hidden) { continue; } // Skip '.' and '..' to avoid cycles if ((dp->d_name[0] == '.' && dp->d_name[1] == 0) || (dp->d_name[0] == '.' && dp->d_name[1] == '.')) { continue; } AbstractFSNode *child = nullptr; #if !defined(SYSTEM_NOT_SUPPORTING_D_TYPE) if (dp->d_type == DT_DIR || dp->d_type == DT_REG) { child = getChildWithKnownType(dp->d_name, dp->d_type == DT_DIR); } else #endif { child = getChild(dp->d_name); } // Honor the chosen mode if ((mode == Common::FSNode::kListFilesOnly && child->isDirectory()) || (mode == Common::FSNode::kListDirectoriesOnly && !child->isDirectory())) { delete child; continue; } list.push_back(child); } closedir(dirp); return true; } } AbstractFSNode *DrivePOSIXFilesystemNode::getParent() const { if (_isPseudoRoot) { return nullptr; } if (isDrive(_path)) { DrivePOSIXFilesystemNode *root = new DrivePOSIXFilesystemNode(_drives); return root; } return POSIXFilesystemNode::getParent(); } bool DrivePOSIXFilesystemNode::isDrive(const Common::String &path) const { Common::String normalizedPath = Common::normalizePath(path, '/'); DrivesArray::const_iterator drive = Common::find(_drives.begin(), _drives.end(), normalizedPath); return drive != _drives.end(); } #endif //#if defined(POSIX)