ttx 0.1.0
Loading...
Searching...
No Matches
escape_sequence_parser.h File Reference
#include "di/container/string/string.h"
#include "di/container/string/string_view.h"
#include "di/function/container/function.h"
#include "di/reflect/prelude.h"
#include "di/vocab/variant/prelude.h"
#include "ttx/params.h"

Go to the source code of this file.

Classes

struct  ttx::PrintableCharacter
 
struct  ttx::DCS
 
struct  ttx::OSC
 
struct  ttx::APC
 
struct  ttx::CSI
 
struct  ttx::Escape
 
struct  ttx::ControlCharacter
 
class  ttx::EscapeSequenceParser
 

Namespaces

namespace  ttx
 

Macros

#define __ENUMERATE_STATES(M)
 
#define __ENUMERATE_STATE(N, n)
 
#define __ENUMERATE_STATE(N, n)
 

Typedefs

using ttx::ParserResult = di::Variant<PrintableCharacter, DCS, OSC, APC, CSI, Escape, ControlCharacter>
 

Macro Definition Documentation

◆ __ENUMERATE_STATE [1/2]

#define __ENUMERATE_STATE ( N,
n )
Value:
N,

◆ __ENUMERATE_STATE [2/2]

#define __ENUMERATE_STATE ( N,
n )
Value:
void n##_state(c32 code_point);

◆ __ENUMERATE_STATES

#define __ENUMERATE_STATES ( M)
Value:
M(Ground, ground) \
M(Escape, escape) \
M(EscapeIntermediate, escape_intermediate) \
M(CsiEntry, csi_entry) \
M(CsiParam, csi_param) \
M(CsiIntermediate, csi_intermediate) \
M(CsiIgnore, csi_ignore) \
M(DcsEntry, dcs_entry) \
M(DcsParam, dcs_param) \
M(DcsIntermediate, dcs_intermediate) \
M(DcsPassthrough, dcs_passthrough) \
M(DcsIgnore, dcs_ignore) \
M(OscString, osc_string) \
M(ApcString, apc_string) \
M(SosPmString, sos_pm_string) \
M(Ss3, ss3)