2005-05-10 00:58:08 +00:00
|
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
|
* Copyright (C) 2005-2006 The ScummVM project, contribution by Hans-J<EFBFBD>rg Frieden and Juha Niemim<EFBFBD>ki
|
2005-05-10 00:58:08 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-05-10 00:58:08 +00:00
|
|
|
|
*
|
2006-02-11 12:47:47 +00:00
|
|
|
|
* $URL$
|
|
|
|
|
* $Id$
|
2005-05-10 00:58:08 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#if defined(__amigaos4__)
|
|
|
|
|
#ifdef __USE_INLINE__
|
|
|
|
|
#undef __USE_INLINE__
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <proto/exec.h>
|
|
|
|
|
#include <proto/dos.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#ifndef USE_NEWLIB
|
|
|
|
|
#include <strings.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-24 16:18:10 +00:00
|
|
|
|
#include <common/stdafx.h>
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
#include "common/util.h"
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
#include "base/engine.h"
|
2005-05-10 02:30:19 +00:00
|
|
|
|
#include "backends/fs/fs.h"
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
#define ENTER() /* debug(6, "Enter\n") */
|
|
|
|
|
#define LEAVE() /* debug(6, "Leave\n") */
|
|
|
|
|
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
const uint32 kExAllBufferSize = 40960; // TODO: is this okay for sure?
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
class AmigaOSFilesystemNode : public AbstractFilesystemNode {
|
|
|
|
|
protected:
|
|
|
|
|
BPTR _pFileLock;
|
|
|
|
|
String _sDisplayName;
|
|
|
|
|
bool _bIsDirectory;
|
|
|
|
|
bool _bIsValid;
|
|
|
|
|
String _sPath;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
AmigaOSFilesystemNode();
|
|
|
|
|
AmigaOSFilesystemNode(BPTR pLock, const char *pDisplayName = 0);
|
|
|
|
|
AmigaOSFilesystemNode(const String &p);
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
// Note: Copy constructor is needed because it duplicates the file lock
|
|
|
|
|
AmigaOSFilesystemNode(const AmigaOSFilesystemNode &node);
|
|
|
|
|
|
|
|
|
|
virtual ~AmigaOSFilesystemNode();
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
virtual String displayName() const { return _sDisplayName; };
|
|
|
|
|
virtual bool isValid() const { return _bIsValid; };
|
|
|
|
|
virtual bool isDirectory() const { return _bIsDirectory; };
|
|
|
|
|
virtual String path() const { return _sPath; };
|
|
|
|
|
|
|
|
|
|
virtual FSList listDir(ListMode mode = kListDirectoriesOnly) const;
|
|
|
|
|
virtual FSList listVolumes(void) const;
|
|
|
|
|
virtual AbstractFilesystemNode *parent() const;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
AbstractFilesystemNode *FilesystemNode::getRoot() {
|
|
|
|
|
return new AmigaOSFilesystemNode();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AbstractFilesystemNode *FilesystemNode::getNodeForPath(const String &path) {
|
|
|
|
|
return new AmigaOSFilesystemNode(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AmigaOSFilesystemNode::AmigaOSFilesystemNode() {
|
|
|
|
|
ENTER();
|
|
|
|
|
_sDisplayName = "Available Disks";
|
|
|
|
|
_bIsValid = true;
|
|
|
|
|
_bIsDirectory = true;
|
|
|
|
|
_sPath = "";
|
|
|
|
|
_pFileLock = 0;
|
|
|
|
|
LEAVE();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AmigaOSFilesystemNode::AmigaOSFilesystemNode(const String &p) {
|
|
|
|
|
ENTER();
|
|
|
|
|
|
|
|
|
|
int len = 0, offset = p.size();
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
assert(offset > 0);
|
|
|
|
|
|
|
|
|
|
_sPath = p;
|
|
|
|
|
|
|
|
|
|
// Extract last component from path
|
|
|
|
|
const char *str = p.c_str();
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
while (offset > 0 && (str[offset-1] == '/' || str[offset-1] == ':'))
|
|
|
|
|
offset--;
|
|
|
|
|
|
|
|
|
|
while (offset > 0 && (str[offset-1] != '/' && str[offset-1] != ':')) {
|
|
|
|
|
len++;
|
|
|
|
|
offset--;
|
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
_sDisplayName = String(str + offset, len);
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
_pFileLock = 0;
|
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
// Check whether it is a directory, and whether the file actually exists
|
|
|
|
|
|
|
|
|
|
struct FileInfoBlock *fib = (struct FileInfoBlock *)IDOS->AllocDosObject(DOS_FIB, NULL);
|
|
|
|
|
if (!fib) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "fib == 0\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BPTR pLock = IDOS->Lock( (char *)_sPath.c_str(), SHARED_LOCK);
|
|
|
|
|
if (pLock) {
|
|
|
|
|
if (IDOS->Examine(pLock, fib) != DOSFALSE) {
|
|
|
|
|
if (fib->fib_EntryType > 0)
|
|
|
|
|
_bIsDirectory = true;
|
|
|
|
|
else
|
|
|
|
|
_bIsDirectory = false;
|
|
|
|
|
|
|
|
|
|
if (_bIsDirectory) {
|
|
|
|
|
if (fib->fib_EntryType != ST_ROOT)
|
|
|
|
|
_sPath += "/";
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
_pFileLock = IDOS->DupLock(pLock);
|
|
|
|
|
_bIsValid = (_pFileLock != 0);
|
|
|
|
|
}
|
|
|
|
|
else _bIsValid = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IDOS->FreeDosObject(DOS_FIB, fib);
|
|
|
|
|
LEAVE();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AmigaOSFilesystemNode::AmigaOSFilesystemNode(BPTR pLock, const char *pDisplayName) {
|
|
|
|
|
ENTER();
|
2006-04-08 12:39:27 +00:00
|
|
|
|
int bufSize = MAXPATHLEN;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
_pFileLock = 0;
|
|
|
|
|
|
|
|
|
|
while (1) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
char *name = new char[bufSize];
|
|
|
|
|
if (IDOS->NameFromLock(pLock, name, bufSize) != DOSFALSE) {
|
2005-05-10 00:58:08 +00:00
|
|
|
|
_sPath = name;
|
|
|
|
|
_sDisplayName = pDisplayName ? pDisplayName : IDOS->FilePart(name);
|
2006-01-27 15:51:41 +00:00
|
|
|
|
delete [] name;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (IDOS->IoErr() != ERROR_LINE_TOO_LONG) {
|
|
|
|
|
_bIsValid = false;
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Error\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
2006-01-27 15:51:41 +00:00
|
|
|
|
delete [] name;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2006-04-08 12:39:27 +00:00
|
|
|
|
bufSize *= 2;
|
2006-01-27 15:51:41 +00:00
|
|
|
|
delete [] name;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_bIsValid = false;
|
|
|
|
|
|
|
|
|
|
struct FileInfoBlock *fib = (struct FileInfoBlock *)IDOS->AllocDosObject(DOS_FIB, NULL);
|
|
|
|
|
if (!fib) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "fib == 0\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (IDOS->Examine(pLock, fib) != DOSFALSE) {
|
|
|
|
|
if (fib->fib_EntryType > 0)
|
|
|
|
|
_bIsDirectory = true;
|
|
|
|
|
else
|
|
|
|
|
_bIsDirectory = false;
|
|
|
|
|
|
|
|
|
|
if (_bIsDirectory) {
|
|
|
|
|
if (fib->fib_EntryType != ST_ROOT)
|
|
|
|
|
_sPath += "/";
|
|
|
|
|
|
|
|
|
|
_pFileLock = IDOS->DupLock(pLock);
|
|
|
|
|
_bIsValid = (_pFileLock != 0);
|
|
|
|
|
}
|
|
|
|
|
else _bIsValid = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IDOS->FreeDosObject(DOS_FIB, fib);
|
|
|
|
|
LEAVE();
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
// We need the custom copy constructor because of DupLock()
|
|
|
|
|
AmigaOSFilesystemNode::AmigaOSFilesystemNode(const AmigaOSFilesystemNode& node) {
|
2005-05-10 00:58:08 +00:00
|
|
|
|
ENTER();
|
2006-04-08 12:39:27 +00:00
|
|
|
|
_sDisplayName = node._sDisplayName;
|
|
|
|
|
_bIsValid = node._bIsValid;
|
|
|
|
|
_bIsDirectory = node._bIsDirectory;
|
|
|
|
|
_sPath = node._sPath;
|
|
|
|
|
_pFileLock = IDOS->DupLock(node._pFileLock);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AmigaOSFilesystemNode::~AmigaOSFilesystemNode() {
|
|
|
|
|
ENTER();
|
|
|
|
|
if (_pFileLock)
|
|
|
|
|
IDOS->UnLock(_pFileLock);
|
|
|
|
|
LEAVE();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FSList AmigaOSFilesystemNode::listDir(ListMode mode) const {
|
|
|
|
|
ENTER();
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
FSList myList;
|
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (!_bIsValid) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Invalid node\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
2006-04-08 12:39:27 +00:00
|
|
|
|
return myList; // Empty list
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!_bIsDirectory) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Not a directory\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
2006-04-08 12:39:27 +00:00
|
|
|
|
return myList; // Empty list
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_pFileLock == 0) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Root node\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return listVolumes();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//FSList *myList = new FSList();
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
struct ExAllControl *eac = (struct ExAllControl *)IDOS->AllocDosObject(DOS_EXALLCONTROL, 0);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (eac) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
struct ExAllData *data = (struct ExAllData *)IExec->AllocVec(kExAllBufferSize, MEMF_ANY);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (data) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
BOOL bExMore;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
eac->eac_LastKey = 0;
|
|
|
|
|
do {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
bExMore = IDOS->ExAll(_pFileLock, data, kExAllBufferSize, ED_TYPE, eac);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
LONG error = IDOS->IoErr();
|
|
|
|
|
if (!bExMore && error != ERROR_NO_MORE_ENTRIES)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (eac->eac_Entries == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
struct ExAllData *ead = data;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
do {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
if ((mode == kListAll) || (EAD_IS_DRAWER(ead) && (mode == kListDirectoriesOnly)) ||
|
|
|
|
|
(EAD_IS_FILE(ead) && (mode == kListFilesOnly))) {
|
|
|
|
|
String full_path = _sPath;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
full_path += (char*)ead->ed_Name;
|
2006-04-08 12:39:27 +00:00
|
|
|
|
|
|
|
|
|
BPTR lock = IDOS->Lock((char *)full_path.c_str(), SHARED_LOCK);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (lock) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
AmigaOSFilesystemNode *entry = new AmigaOSFilesystemNode(lock, (char *)ead->ed_Name);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (entry) {
|
|
|
|
|
if (entry->isValid())
|
2006-04-08 12:39:27 +00:00
|
|
|
|
myList.push_back(wrap(entry));
|
2005-05-10 00:58:08 +00:00
|
|
|
|
else
|
|
|
|
|
delete entry;
|
|
|
|
|
}
|
|
|
|
|
IDOS->UnLock(lock);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ead = ead->ed_Next;
|
|
|
|
|
} while (ead);
|
|
|
|
|
} while (bExMore);
|
|
|
|
|
|
|
|
|
|
IExec->FreeVec(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IDOS->FreeDosObject(DOS_EXALLCONTROL, eac);
|
|
|
|
|
}
|
2006-04-08 12:39:27 +00:00
|
|
|
|
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return myList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AbstractFilesystemNode *AmigaOSFilesystemNode::parent() const {
|
|
|
|
|
ENTER();
|
|
|
|
|
|
|
|
|
|
if (!_bIsDirectory) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "No directory\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_pFileLock == 0) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Root node\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
2006-04-04 21:01:26 +00:00
|
|
|
|
return new AmigaOSFilesystemNode(*this);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
AmigaOSFilesystemNode *node;
|
|
|
|
|
|
2006-01-27 15:51:41 +00:00
|
|
|
|
BPTR parentDir = IDOS->ParentDir( _pFileLock );
|
|
|
|
|
if (parentDir) {
|
|
|
|
|
node = new AmigaOSFilesystemNode(parentDir);
|
|
|
|
|
IDOS->UnLock(parentDir);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
node = new AmigaOSFilesystemNode();
|
|
|
|
|
|
|
|
|
|
LEAVE();
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FSList AmigaOSFilesystemNode::listVolumes(void) const {
|
|
|
|
|
ENTER();
|
|
|
|
|
//FSList *myList = new FSList();
|
|
|
|
|
FSList myList;
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
const uint32 kLockFlags = LDF_READ | LDF_VOLUMES;
|
|
|
|
|
char name[MAXPATHLEN];
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
struct DosList *dosList = IDOS->LockDosList(kLockFlags);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (!dosList) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
debug(6, "Cannot lock dos list\n");
|
2005-05-10 00:58:08 +00:00
|
|
|
|
LEAVE();
|
|
|
|
|
return myList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dosList = IDOS->NextDosEntry(dosList, LDF_VOLUMES);
|
|
|
|
|
while (dosList) {
|
|
|
|
|
if (dosList->dol_Type == DLT_VOLUME &&
|
|
|
|
|
dosList->dol_Name &&
|
|
|
|
|
dosList->dol_Task) {
|
2006-04-08 12:39:27 +00:00
|
|
|
|
const char *volName = (const char *)BADDR(dosList->dol_Name)+1;
|
|
|
|
|
const char *devName = (const char *)((struct Task *)dosList->dol_Task->mp_SigTask)->tc_Node.ln_Name;
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
strcpy(name, volName);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
strcat(name, ":");
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
BPTR volumeLock = IDOS->Lock(name, SHARED_LOCK);
|
|
|
|
|
if (volumeLock) {
|
|
|
|
|
sprintf(name, "%s (%s)", volName, devName);
|
|
|
|
|
AmigaOSFilesystemNode *entry = new AmigaOSFilesystemNode(volumeLock, name);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
if (entry) {
|
|
|
|
|
if (entry->isValid())
|
|
|
|
|
myList.push_back(wrap(entry));
|
|
|
|
|
else
|
|
|
|
|
delete entry;
|
|
|
|
|
}
|
2006-04-08 12:39:27 +00:00
|
|
|
|
IDOS->UnLock(volumeLock);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
dosList = IDOS->NextDosEntry(dosList, LDF_VOLUMES);
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-08 12:39:27 +00:00
|
|
|
|
IDOS->UnLockDosList(kLockFlags);
|
2005-05-10 00:58:08 +00:00
|
|
|
|
|
|
|
|
|
LEAVE();
|
|
|
|
|
return myList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|