2014-05-03 22:27:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2014-01-08 15:28:26 +00:00
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/lexer.h"
|
2014-01-08 15:28:26 +00:00
|
|
|
|
|
|
|
typedef struct _mp_lexer_str_buf_t {
|
2014-07-03 12:47:47 +00:00
|
|
|
mp_uint_t free_len; // if > 0, src_beg will be freed when done by: m_free(src_beg, free_len)
|
2014-01-08 15:28:26 +00:00
|
|
|
const char *src_beg; // beginning of source
|
|
|
|
const char *src_cur; // current location in source
|
|
|
|
const char *src_end; // end (exclusive) of source
|
|
|
|
} mp_lexer_str_buf_t;
|
|
|
|
|
2014-07-30 10:46:05 +00:00
|
|
|
STATIC mp_uint_t str_buf_next_byte(mp_lexer_str_buf_t *sb) {
|
2014-01-08 15:28:26 +00:00
|
|
|
if (sb->src_cur < sb->src_end) {
|
|
|
|
return *sb->src_cur++;
|
|
|
|
} else {
|
2014-07-30 10:46:05 +00:00
|
|
|
return MP_LEXER_EOF;
|
2014-01-08 15:28:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:31:30 +00:00
|
|
|
STATIC void str_buf_free(mp_lexer_str_buf_t *sb) {
|
2014-01-08 15:28:26 +00:00
|
|
|
if (sb->free_len > 0) {
|
2015-02-27 09:34:51 +00:00
|
|
|
m_del(char, (char*)sb->src_beg, sb->free_len);
|
2014-01-08 15:28:26 +00:00
|
|
|
}
|
2014-01-23 22:38:31 +00:00
|
|
|
m_del_obj(mp_lexer_str_buf_t, sb);
|
2014-01-08 15:28:26 +00:00
|
|
|
}
|
|
|
|
|
2014-07-03 12:47:47 +00:00
|
|
|
mp_lexer_t *mp_lexer_new_from_str_len(qstr src_name, const char *str, mp_uint_t len, mp_uint_t free_len) {
|
2014-10-09 15:53:37 +00:00
|
|
|
mp_lexer_str_buf_t *sb = m_new_obj_maybe(mp_lexer_str_buf_t);
|
2014-10-09 06:17:35 +00:00
|
|
|
if (sb == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-08 15:28:26 +00:00
|
|
|
sb->free_len = free_len;
|
|
|
|
sb->src_beg = str;
|
|
|
|
sb->src_cur = str;
|
|
|
|
sb->src_end = str + len;
|
2014-07-30 10:46:05 +00:00
|
|
|
return mp_lexer_new(src_name, sb, (mp_lexer_stream_next_byte_t)str_buf_next_byte, (mp_lexer_stream_close_t)str_buf_free);
|
2014-01-08 15:28:26 +00:00
|
|
|
}
|