[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[121] | 4 | |
---|
[109] | 5 | #ifndef _STRINGFILE_H_ |
---|
| 6 | #define _STRINGFILE_H_ |
---|
| 7 | |
---|
| 8 | #include "virtfile.h" |
---|
[382] | 9 | #include <common/nonstd_stl.h> |
---|
| 10 | #include <string.h> |
---|
[109] | 11 | |
---|
[282] | 12 | class StringFILE : public VirtFILE |
---|
[109] | 13 | { |
---|
[282] | 14 | protected: |
---|
[382] | 15 | string& str; |
---|
| 16 | int pos; |
---|
[282] | 17 | public: |
---|
[382] | 18 | StringFILE(string& s): VirtFILE(""), str(s), pos(0) {} |
---|
[282] | 19 | size_t Vread(void *ptr, size_t size, size_t nmemb); |
---|
| 20 | size_t Vwrite(const void *ptr, size_t size, size_t nmemb) { str.append((const char*)ptr, (int)(size*nmemb)); return size*nmemb; } |
---|
[382] | 21 | int Veof() { return pos >= int(str.size()); } |
---|
[282] | 22 | int Vputc(int c) { str += (char)c; return c; } |
---|
| 23 | int Vputs(const char *s) { str.append(s, (int)strlen(s)); return 0; } |
---|
| 24 | int Vgetc(); |
---|
| 25 | char *Vgets(char *s, int size); |
---|
| 26 | int Vseek(long offset, int whence); |
---|
| 27 | long Vtell() { return pos; } |
---|
| 28 | int Vflush() { return 0; } |
---|
[109] | 29 | }; |
---|
| 30 | |
---|
| 31 | /** this version owns the string object */ |
---|
[282] | 32 | class StringFILE2 : public StringFILE |
---|
[109] | 33 | { |
---|
[382] | 34 | string str; |
---|
[282] | 35 | public: |
---|
[382] | 36 | StringFILE2(const string& s) :StringFILE(str), str(s) {} |
---|
| 37 | StringFILE2() :StringFILE(str) {} |
---|
| 38 | const string& getString() { return str; } |
---|
[109] | 39 | }; |
---|
| 40 | |
---|
[295] | 41 | class StringFileSystem : public ChainFileSystem |
---|
[109] | 42 | { |
---|
[282] | 43 | public: |
---|
[295] | 44 | StringFileSystem(VirtFileSystem *_chain = NULL):ChainFileSystem(_chain) {} |
---|
[282] | 45 | VirtFILE *Vfopen(const char* path, const char*mode); |
---|
| 46 | static const char PREFIX[]; |
---|
| 47 | static bool isStringPath(const char* path); |
---|
[109] | 48 | }; |
---|
| 49 | |
---|
| 50 | #endif |
---|