19void Archive::unmount() {
20 if (--m_refCount <= 0) {
26s32 Archive::convertPathToEntryId(
const char *path)
const {
27 return m_handle.convertPathToEntryId(path);
32 m_handle.open(entryId, info);
33 return m_handle.getFileAddress(info);
44 if ((*iter)->m_handle.startAddress() == archiveStart) {
61 archive =
new Archive(archiveStart);
65 archive->m_refCount++;
72Archive::Archive(
void *archiveStart) : m_handle(archiveStart) {}
static std::list< Archive * > s_archiveList
The linked list of all mounted archives.
static Archive * FindArchive(void *archiveStart)
Checks to see if a given archive is already mounted.
~Archive()
Removes the archive from the static list.
static Archive * Mount(void *archiveStart)
Creates a new Archive object or increments the ref count for an already existing Archive.