2013-10-20 12:42:00 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ff.h"
|
|
|
|
|
|
|
|
#include "misc.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "qstr.h"
|
2013-10-20 12:42:00 -04:00
|
|
|
#include "lexer.h"
|
2014-01-07 12:49:42 -05:00
|
|
|
#include "lexerfatfs.h"
|
2013-10-20 12:42:00 -04:00
|
|
|
|
2014-01-16 17:09:13 -05:00
|
|
|
typedef struct _mp_lexer_file_buf_t {
|
|
|
|
FIL fp;
|
|
|
|
char buf[20];
|
|
|
|
uint16_t len;
|
|
|
|
uint16_t pos;
|
|
|
|
} mp_lexer_file_buf_t;
|
|
|
|
|
|
|
|
static unichar file_buf_next_char(mp_lexer_file_buf_t *fb) {
|
2013-10-20 12:42:00 -04:00
|
|
|
if (fb->pos >= fb->len) {
|
|
|
|
if (fb->len < sizeof(fb->buf)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return MP_LEXER_CHAR_EOF;
|
2013-10-20 12:42:00 -04:00
|
|
|
} else {
|
|
|
|
UINT n;
|
|
|
|
f_read(&fb->fp, fb->buf, sizeof(fb->buf), &n);
|
2013-10-22 16:13:36 -04:00
|
|
|
if (n == 0) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return MP_LEXER_CHAR_EOF;
|
2013-10-22 16:13:36 -04:00
|
|
|
}
|
2013-10-20 12:42:00 -04:00
|
|
|
fb->len = n;
|
|
|
|
fb->pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fb->buf[fb->pos++];
|
|
|
|
}
|
|
|
|
|
2014-01-16 17:09:13 -05:00
|
|
|
static void file_buf_close(mp_lexer_file_buf_t *fb) {
|
2013-10-20 12:42:00 -04:00
|
|
|
f_close(&fb->fp);
|
2014-01-16 17:09:13 -05:00
|
|
|
m_del_obj(mp_lexer_file_buf_t, fb);
|
2013-10-20 12:42:00 -04:00
|
|
|
}
|
|
|
|
|
2014-01-16 17:09:13 -05:00
|
|
|
mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
|
|
|
|
mp_lexer_file_buf_t *fb = m_new_obj(mp_lexer_file_buf_t);
|
2013-10-20 12:42:00 -04:00
|
|
|
FRESULT res = f_open(&fb->fp, filename, FA_READ);
|
|
|
|
if (res != FR_OK) {
|
2014-01-16 17:09:13 -05:00
|
|
|
m_del_obj(mp_lexer_file_buf_t, fb);
|
2013-10-20 12:42:00 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
UINT n;
|
|
|
|
f_read(&fb->fp, fb->buf, sizeof(fb->buf), &n);
|
|
|
|
fb->len = n;
|
|
|
|
fb->pos = 0;
|
2014-01-25 08:51:19 -05:00
|
|
|
return mp_lexer_new(qstr_from_str(filename), fb, (mp_lexer_stream_next_char_t)file_buf_next_char, (mp_lexer_stream_close_t)file_buf_close);
|
2013-10-20 12:42:00 -04:00
|
|
|
}
|