src/lexer_scanner.cc

Sun, 19 Jan 2014 20:39:30 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 19 Jan 2014 20:39:30 +0200
changeset 85
264a61e9eba0
parent 82
841562f5a32f
permissions
-rw-r--r--

- use the Skulltag 97c2 license which is slightly differently worded

/*
	Copyright 2012-2014 Santeri Piippo
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions
	are met:

	1. Redistributions of source code must retain the above copyright
	   notice, this list of conditions and the following disclaimer.
	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.
	3. The name of the author may not be used to endorse or promote products
	   derived from this software without specific prior written permission.

	THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
	IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
	OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
	IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
	INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
	NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
	DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
	THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
	(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
	THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <cstring>
#include <string>
#include "lexer_scanner.h"
#include "lexer.h"

static const string g_token_strings[] =
{
	"==",
	"[]",
	"+=",
	"-=",
	"*=",
	"/=",
	"%=",
	"'",
	"$",
	"(",
	")",
	"[",
	"]",
	"{",
	"}",
	"=",
	"+",
	"-",
	"*",
	"/",
	"%",
	",",
	"<",
	">",
	".",
	":",
	";",
	"#",
	"!",
	"->",
	"bool",
	"break",
	"case",
	"continue",
	"const",
	"default",
	"do",
	"else",
	"event",
	"eventdef",
	"for",
	"funcdef",
	"goto",
	"if",
	"int",
	"mainloop",
	"onenter",
	"onexit",
	"state",
	"switch",
	"str",
	"void",
	"while",
	"enum",
	"func",
	"return",
};

static_assert (countof (g_token_strings) == (int) tk_last_named_token + 1,
	"Count of g_token_strings is not the same as the amount of named token identifiers.");

// =============================================================================
//
lexer_scanner::lexer_scanner (FILE* fp) :
	m_line (1)
{
	long fsize, bytes;

	fseek (fp, 0l, SEEK_END);
	fsize = ftell (fp);
	rewind (fp);
	m_data = new char[fsize];
	m_ptr = m_line_break_pos = &m_data[0];
	bytes = fread (m_data, 1, fsize, fp);
	assert (bytes >= fsize);
}

// =============================================================================
//
lexer_scanner::~lexer_scanner()
{
	delete m_data;
}

// =============================================================================
//
bool lexer_scanner::check_string (const char* c, int flags)
{
	bool r = strncmp (m_ptr, c, strlen (c)) == 0;

	// There is to be a non-symbol character after words
	if (r && (flags & f_check_word) && is_symbol_char (m_ptr[strlen (c)], true))
		r = false;

	// Advance the cursor unless we want to just peek
	if (r && !(flags & f_check_peek))
		m_ptr += strlen (c);

	return r;
}

// =============================================================================
//
bool lexer_scanner::get_next_token()
{
	m_token_text = "";

	while (isspace (*m_ptr))
		skip();

	// Check for comments
	if (strncmp (m_ptr, "//", 2) == 0)
	{
		m_ptr += 2;

		while (*m_ptr != '\n')
			skip();

		return get_next_token();
	}
	elif (strncmp (m_ptr, "/*", 2) == 0)
	{
		skip (2); // skip the start symbols

		while (strncmp (m_ptr, "*/", 2) != 0)
			skip();

		skip (2); // skip the end symbols
		return get_next_token();
	}

	if (*m_ptr == '\0')
		return false;

	// Check tokens
	for (int i = 0; i < countof (g_token_strings); ++i)
	{
		int flags = 0;

		if (i >= tk_first_named_token)
			flags |= f_check_word;

		if (check_string (g_token_strings[i], flags))
		{
			m_token_text = g_token_strings[i];
			m_token_type = (e_token) i;
			return true;
		}
	}

	// Check and parse string
	if (*m_ptr == '\"')
	{
		m_ptr++;

		while (*m_ptr != '\"')
		{
			if (!*m_ptr)
				error ("unterminated string");

			if (check_string ("\\n"))
			{
				m_token_text += '\n';
				continue;
			}
			elif (check_string ("\\t"))
			{
				m_token_text += '\t';
				continue;
			}
			elif (check_string ("\\\""))
			{
				m_token_text += '"';
				continue;
			}

			m_token_text += *m_ptr++;
		}

		m_token_type = tk_string;
		skip(); // skip the final quote
		return true;
	}

	if (isdigit (*m_ptr))
	{
		while (isdigit (*m_ptr))
			m_token_text += *m_ptr++;

		m_token_type = tk_number;
		return true;
	}

	if (is_symbol_char (*m_ptr, false))
	{
		m_token_type = tk_symbol;

		do
		{
			if (!is_symbol_char (*m_ptr, true))
				break;

			m_token_text += *m_ptr++;
		} while (*m_ptr != '\0');

		return true;
	}

	error ("unknown character \"%1\"", *m_ptr);
	return false;
}

// =============================================================================
//
void lexer_scanner::skip()
{
	if (*m_ptr == '\n')
	{
		m_line++;
		m_line_break_pos = m_ptr;
	}

	m_ptr++;
}

// =============================================================================
//
void lexer_scanner::skip (int chars)
{
	for (int i = 0; i < chars; ++i)
		skip();
}

// =============================================================================
//
string lexer_scanner::get_token_string (e_token a)
{
	assert ((int) a <= tk_last_named_token);
	return g_token_strings[a];
}

// =============================================================================
//
string lexer_scanner::read_line()
{
	string line;

	while (*m_ptr != '\n')
		line += *(m_ptr++);

	return line;
}

mercurial