1 | #include "stringfile.h" |
---|
2 | #include <stdio.h> |
---|
3 | #include <errno.h> //EINVAL |
---|
4 | |
---|
5 | int StringFILE::Vread(void *ptr, size_t size, size_t nmemb) |
---|
6 | { |
---|
7 | int have=str.len()-pos; |
---|
8 | if (have<=0) return 0; |
---|
9 | int need=size*nmemb; |
---|
10 | if (need>have) {nmemb=have/size; need=size*nmemb;} |
---|
11 | memcpy(ptr,((const char*)str)+pos,need); |
---|
12 | pos+=need; |
---|
13 | return nmemb; |
---|
14 | } |
---|
15 | |
---|
16 | int StringFILE::Vgetc() |
---|
17 | { |
---|
18 | if (pos >= str.len()) //...i znowu byl bug roku! :O |
---|
19 | return EOF; |
---|
20 | else |
---|
21 | return str[pos++]; |
---|
22 | } |
---|
23 | |
---|
24 | char *StringFILE::Vgets(char *s, int size) |
---|
25 | { |
---|
26 | int have=str.len()-pos; |
---|
27 | if (have<=0) return 0; |
---|
28 | if (size<0) size=0; |
---|
29 | if (have>size) have=size-1; |
---|
30 | const char* src=((const char*)str)+pos; |
---|
31 | char *dest=s; |
---|
32 | while(have-- > 0) |
---|
33 | { |
---|
34 | *(dest++) = *(src++); pos++; |
---|
35 | if (dest[-1]=='\n') break; |
---|
36 | } |
---|
37 | *dest=0; |
---|
38 | return s; |
---|
39 | } |
---|
40 | |
---|
41 | int StringFILE::Vprintf(const char *format, va_list args) |
---|
42 | { |
---|
43 | char *buf=str.directAppend(10000); |
---|
44 | vsnprintf(buf,10000,format,args); |
---|
45 | int n=strlen(buf); // todo: strlen moze wyjsc poza siebie jezeli printf nie da 0S |
---|
46 | str.endAppend(n); |
---|
47 | return n; |
---|
48 | } |
---|
49 | |
---|
50 | int StringFILE::Vseek(long offset, int whence) |
---|
51 | { |
---|
52 | switch(whence) |
---|
53 | { |
---|
54 | case SEEK_SET: pos=offset; break; |
---|
55 | case SEEK_CUR: pos+=offset; break; |
---|
56 | case SEEK_END: pos=str.len()-offset; break; |
---|
57 | default: return EINVAL; |
---|
58 | } |
---|
59 | if (pos < 0) pos=0; else if (pos>str.len()) pos=str.len(); |
---|
60 | return 0; |
---|
61 | } |
---|
62 | |
---|
63 | const char StringFileSystem::PREFIX[]="string://"; |
---|
64 | |
---|
65 | bool StringFileSystem::isStringPath(const char* path) |
---|
66 | { |
---|
67 | return !strncmp(path,PREFIX,sizeof(PREFIX)-1); |
---|
68 | } |
---|
69 | |
---|
70 | VirtFILE *StringFileSystem::Vfopen(const char* path,const char*mode) |
---|
71 | { |
---|
72 | if ((*mode=='r') && isStringPath(path)) |
---|
73 | { |
---|
74 | return new StringFILE2(SString(path+sizeof(PREFIX)-1)); |
---|
75 | } |
---|
76 | return chain->Vfopen(path,mode); |
---|
77 | } |
---|
78 | |
---|
79 | int StringFileSystem::Vfexists(const char* path) |
---|
80 | { return chain->Vfexists(path); } |
---|
81 | |
---|
82 | VirtDIR *StringFileSystem::Vopendir(const char* path) |
---|
83 | { return chain->Vopendir(path); } |
---|