98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
// Filename: virtualFileMountHTTP.h
|
|
// Created by: drose (30Oct08)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 VIRTUALFILEMOUNTHTTP_H
|
|
#define VIRTUALFILEMOUNTHTTP_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
#include "virtualFileMount.h"
|
|
#include "httpClient.h"
|
|
#include "httpChannel.h"
|
|
#include "urlSpec.h"
|
|
#include "pointerTo.h"
|
|
#include "mutexImpl.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : VirtualFileMountHTTP
|
|
// Description : Maps a web page (URL root) into the
|
|
// VirtualFileSystem.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAEXPRESS VirtualFileMountHTTP : public VirtualFileMount {
|
|
PUBLISHED:
|
|
VirtualFileMountHTTP(const URLSpec &root, HTTPClient *http = HTTPClient::get_global_ptr());
|
|
virtual ~VirtualFileMountHTTP();
|
|
|
|
INLINE HTTPClient *get_http_client() const;
|
|
INLINE const URLSpec &get_root() const;
|
|
|
|
static void reload_vfs_mount_url();
|
|
|
|
public:
|
|
virtual PT(VirtualFile) make_virtual_file(const string &local_filename,
|
|
const Filename &original_filename,
|
|
bool implicit_pz_file,
|
|
bool status_only);
|
|
|
|
virtual bool has_file(const Filename &file) const;
|
|
virtual bool is_directory(const Filename &file) const;
|
|
virtual bool is_regular_file(const Filename &file) const;
|
|
|
|
virtual istream *open_read_file(const Filename &file) const;
|
|
virtual off_t get_file_size(const Filename &file, istream *stream) const;
|
|
virtual off_t get_file_size(const Filename &file) const;
|
|
virtual time_t get_timestamp(const Filename &file) const;
|
|
|
|
virtual bool scan_directory(vector_string &contents,
|
|
const Filename &dir) const;
|
|
|
|
virtual void output(ostream &out) const;
|
|
|
|
PT(HTTPChannel) get_channel();
|
|
void recycle_channel(HTTPChannel *channel);
|
|
|
|
private:
|
|
PT(HTTPClient) _http;
|
|
URLSpec _root;
|
|
|
|
MutexImpl _channels_lock;
|
|
typedef pvector< PT(HTTPChannel) > Channels;
|
|
Channels _channels;
|
|
|
|
public:
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
VirtualFileMount::init_type();
|
|
register_type(_type_handle, "VirtualFileMountHTTP",
|
|
VirtualFileMount::get_class_type());
|
|
}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "virtualFileMountHTTP.I"
|
|
|
|
#endif // HAVE_OPENSSL
|
|
|
|
#endif
|