mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 13:27:59 +03:00
134 lines
2.2 KiB
C++
134 lines
2.2 KiB
C++
#ifndef TOKENIZER_HPP
|
|
#define TOKENIZER_HPP
|
|
|
|
#include "webserv.hpp"
|
|
#include "tomlstuff.hpp"
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <fstream>
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <exception>
|
|
|
|
|
|
namespace config
|
|
{
|
|
enum e_token
|
|
{
|
|
KEY,
|
|
NEWLINE,
|
|
ASSIGN,
|
|
STRING,
|
|
NUMBER,
|
|
COMMA,
|
|
BOOL,
|
|
NIL,
|
|
OPEN_BRACKET,
|
|
CLOSE_BRACKET,
|
|
MAP_DECL,
|
|
MAPARRAY_DECL,
|
|
COMMENT,
|
|
NO_TOK
|
|
};
|
|
|
|
struct s_token
|
|
{
|
|
std::string value;
|
|
e_token type;
|
|
/* std::string to_string(void); */
|
|
};
|
|
|
|
bool isspace(char c);
|
|
|
|
bool istomlkey(char c);
|
|
|
|
bool istomlmapdecl(char c);
|
|
|
|
class Tokenizer
|
|
{
|
|
private:
|
|
std::fstream file;
|
|
size_t prev_pos;
|
|
e_token last_token;
|
|
|
|
public:
|
|
Tokenizer(char *filename);
|
|
char getWithoutWhiteSpace();
|
|
struct s_token getToken();
|
|
bool hasMoreTokens();
|
|
bool firstToken();
|
|
void rollBackToken();
|
|
void set_last(e_token type);
|
|
|
|
class NoMoreTokens: public std::domain_error
|
|
{
|
|
public:
|
|
NoMoreTokens(void): std::domain_error("NoMoreTokens")
|
|
{}
|
|
virtual const char *what() const throw()
|
|
{
|
|
return ("Config may be incomplete, expected more tokens (check EOL)");
|
|
}
|
|
};
|
|
class InvalidToken: public std::domain_error
|
|
{
|
|
protected:
|
|
std::string msg;
|
|
|
|
public:
|
|
InvalidToken(const std::string &token): std::domain_error("InvalidToken")
|
|
{
|
|
|
|
msg = std::string("Invalid token: '" + token + "'");
|
|
}
|
|
|
|
virtual const char *what() const throw()
|
|
{
|
|
return (msg.c_str());
|
|
}
|
|
|
|
virtual ~InvalidToken() throw()
|
|
{
|
|
// delete msg;
|
|
}
|
|
};
|
|
class SyntaxErrNear: public std::domain_error
|
|
{
|
|
protected:
|
|
std::string msg;
|
|
|
|
public:
|
|
SyntaxErrNear(const std::string &near): std::domain_error("InvalidToken")
|
|
{
|
|
|
|
msg = std::string("Syntax error near: " + near);
|
|
}
|
|
|
|
virtual const char *what() const throw()
|
|
{
|
|
return (msg.c_str());
|
|
}
|
|
|
|
virtual ~SyntaxErrNear() throw()
|
|
{
|
|
// delete msg;
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
/* struct s_token Tokenizer::getKey(void) */
|
|
/* { */
|
|
/* char c; */
|
|
/* struct s_token token; */
|
|
/* if (file.eof()) */
|
|
/* { */
|
|
/* std::cout << "Tokens exhausted" << std::endl; */
|
|
/* } */
|
|
/* } */
|
|
|
|
}
|
|
|
|
#endif
|