53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
|
/**
|
||
|
* 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."
|
||
|
*
|
||
|
* @file ramfile.h
|
||
|
* @author mike
|
||
|
* @date 1997-01-09
|
||
|
*/
|
||
|
|
||
|
#ifndef RAMFILE_H
|
||
|
#define RAMFILE_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
#include "typedef.h"
|
||
|
#include "referenceCount.h"
|
||
|
#include "extension.h"
|
||
|
|
||
|
/**
|
||
|
* An in-memory buffer specifically designed for downloading files to memory.
|
||
|
*/
|
||
|
class EXPCL_PANDA_EXPRESS Ramfile {
|
||
|
PUBLISHED:
|
||
|
INLINE Ramfile();
|
||
|
|
||
|
INLINE void seek(size_t pos);
|
||
|
INLINE size_t tell() const;
|
||
|
EXTENSION(PyObject *read(size_t length));
|
||
|
EXTENSION(PyObject *readline());
|
||
|
EXTENSION(PyObject *readlines());
|
||
|
|
||
|
EXTENSION(PyObject *get_data() const);
|
||
|
INLINE size_t get_data_size() const;
|
||
|
INLINE void clear();
|
||
|
|
||
|
public:
|
||
|
std::string read(size_t length);
|
||
|
std::string readline();
|
||
|
INLINE const std::string &get_data() const;
|
||
|
|
||
|
size_t _pos;
|
||
|
std::string _data;
|
||
|
|
||
|
friend class Extension<Ramfile>;
|
||
|
};
|
||
|
|
||
|
#include "ramfile.I"
|
||
|
|
||
|
#endif
|