77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
// Filename: virtualFileComposite.h
|
|
// Created by: drose (03Aug02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef VIRTUALFILECOMPOSITE_H
|
|
#define VIRTUALFILECOMPOSITE_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "virtualFile.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : VirtualFileComposite
|
|
// Description : A composite directory within the VirtualFileSystem:
|
|
// this maps to more than one directory on different
|
|
// mount points. The resulting directory appears to be
|
|
// the union of all the individual simple directories.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAEXPRESS VirtualFileComposite : public VirtualFile {
|
|
public:
|
|
INLINE VirtualFileComposite(VirtualFileSystem *file_system,
|
|
const Filename &filename);
|
|
|
|
INLINE void add_component(VirtualFile *file);
|
|
|
|
virtual VirtualFileSystem *get_file_system() const;
|
|
virtual Filename get_filename() const;
|
|
|
|
virtual bool has_file() const;
|
|
virtual bool is_directory() const;
|
|
|
|
protected:
|
|
virtual bool scan_local_directory(VirtualFileList *file_list,
|
|
const ov_set<string> &mount_points) const;
|
|
|
|
private:
|
|
VirtualFileSystem *_file_system;
|
|
Filename _filename;
|
|
typedef pvector< PT(VirtualFile) > Components;
|
|
Components _components;
|
|
|
|
public:
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
PUBLISHED:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
|
|
public:
|
|
static void init_type() {
|
|
VirtualFile::init_type();
|
|
register_type(_type_handle, "VirtualFileComposite",
|
|
VirtualFile::get_class_type());
|
|
}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "virtualFileComposite.I"
|
|
|
|
#endif
|