HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
buffer.c
Go to the documentation of this file.
1 
28 #include "user_config.h"
29 #include "fatfs.h"
30 #include "posix.h"
31 #include "buffer.h"
32 
35 
41 buffer_t *buffer_read_open(char *name, uint8_t *buf, int size)
42 {
43  static buffer_t _buff;
44  buffer_t *p = (buffer_t *) &_buff;
45 
46  memset(p,0,(int) sizeof(buffer_t));
47 
48  p->buf = buf;
49 
51  p->fp = fopen(name,"rb");
52  if(p->fp == NULL)
53  {
54  printf("buffer_read_open: Can not open:[%s]\n", name);
56  return(0);
57  }
58 
59  p->size = size;
60  p->ind = 0;
61  p->len = 0;
62  p->ungetf = 0;
63  p->ungetc = 0;
64  return(p);
65 }
66 
67 
73 {
74  if(p->fp)
75  fclose(p->fp);
76  p->size = 0;
77  p->len = 0;
78  p->ind = 0;
79  p->ungetf = 0;
80  p->ungetc = 0;
81 }
82 
83 
88 void buffer_ungetc(buffer_t *p, int c)
89 {
90  p->ungetf = 1;
91  p->ungetc = c;
92 }
93 
94 
99 {
100  int size;
101  int c;
102 
103  if(p->ungetf)
104  {
105  p->ungetf = 0;
106  return(p->ungetc);
107  }
108 // Read a new block
109  if(p->len < 1)
110  {
111  p->ind = 0;
112  size = fread(p->buf, 1, p->size, p->fp);
113  if(size <= 0)
114  {
115  p->len = 0;
116  return(EOF);
117  }
118  p->len = size;
119  }
120  c = p->buf[p->ind];
121  p->len--;
122  p->ind++;
123  return( c );
124 }
125 
126 
132 uint8_t *buffer_gets(uint8_t *str, int size, buffer_t *p)
133 {
134  int c;
135  int next;
136  int ind = 0;
137 
138 // leave room for EOS
139  while(ind < size)
140  {
141  c = buffer_getc(p);
142  if(c == EOF)
143  {
144  if(ind == 0)
145  {
146  str[ind] = 0;
147  return(NULL);
148  }
149  break;
150  }
151 // CR NL is end of line
152  if(c == '\r')
153  {
154  next = buffer_getc(p);
155  if(next == '\n')
156  break;
157  buffer_ungetc(p,next);
158  break;
159  }
160 // NL is end of line
161  if(c == '\n')
162  break;
163  str[ind++] = c;
164  }
165  str[ind] = 0;
166  return(str);
167 }
fatfs.h
fopen
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
Definition: posix.c:801
printf
MEMSPACE int printf(const char *format,...)
buffer_t
Definition: buffer.h:31
buffer_gets
uint8_t * buffer_gets(uint8_t *str, int size, buffer_t *p)
buffered getc
Definition: buffer.c:132
buffer_t::ind
int ind
Definition: buffer.h:34
buffer_getc
int buffer_getc(buffer_t *p)
buffered getc
Definition: buffer.c:98
buffer_t::fp
FILE * fp
Definition: buffer.h:33
NULL
#define NULL
Definition: user_config.h:85
buffer_t::size
int size
Definition: buffer.h:35
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
buffer_read_open
buffer_t * buffer_read_open(char *name, uint8_t *buf, int size)
FatFS does not have a f_fgetc() function Using f_read() of just 1 byte is VERY VERY SLOW.
Definition: buffer.c:41
buffer_t::ungetf
int ungetf
Definition: buffer.h:37
buffer.h
character read buffering wrappers for FatFS WHY? Character at a time operation is in FatFS are VERY s...
buffer_t::len
int len
Definition: buffer.h:36
buffer_ungetc
void buffer_ungetc(buffer_t *p, int c)
buffered ungetc
Definition: buffer.c:88
EOF
#define EOF
Definition: ff.h:349
fread
MEMSPACE size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX read nmemb elements from buf, size bytes each, to the stream fd.
Definition: posix.c:823
posix.h
POSIX wrapper for FatFS.
buffer_t::buf
uint8_t * buf
Definition: buffer.h:39
buffer_read_close
void buffer_read_close(buffer_t *p)
buffered read close FatFS does not have a f_fgetc() and using f_read() of just 1 byte is VERY SLOW
Definition: buffer.c:72
buffer_t::ungetc
int ungetc
Definition: buffer.h:38