Helps streamline DX1Collector in xo-gc/. Want both forward and verify entry points for the same representation.
167 lines
6.1 KiB
C++
167 lines
6.1 KiB
C++
/** @file DExpectFormalArglistSsm.hpp
|
|
*
|
|
* @author Roland Conybeare, Aug 2024
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "DSyntaxStateMachine.hpp"
|
|
#include <xo/object2/DArray.hpp>
|
|
#include <xo/arena/DArena.hpp>
|
|
|
|
#ifdef NOT_YET
|
|
#include "exprstate.hpp"
|
|
#include "formal_arg.hpp"
|
|
#include <vector>
|
|
#endif
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
/**
|
|
* ( name(1) : type(1) , ..., )
|
|
* ^ ^ ^ ^ ^
|
|
* | | | | |
|
|
* | | | | argl_1b
|
|
* | argl_1a | argl_1a
|
|
* argl_0 argl_1b
|
|
*
|
|
* argl_0 --on_leftparen_token()--> argl_1a
|
|
* argl_1a --on_formal()--> argl_1b
|
|
* argl_1b -+-on_comma_token()--> argl_1a
|
|
* \-on_rightparen_token()--> (done)
|
|
**/
|
|
enum class formalarglstatetype {
|
|
invalid = -1,
|
|
|
|
argl_0,
|
|
argl_1a,
|
|
argl_1b,
|
|
|
|
n_formalarglstatetype,
|
|
};
|
|
|
|
extern const char *
|
|
formalarglstatetype_descr(formalarglstatetype x);
|
|
|
|
inline std::ostream &
|
|
operator<< (std::ostream & os, formalarglstatetype x) {
|
|
os << formalarglstatetype_descr(x);
|
|
return os;
|
|
}
|
|
|
|
/** @class expect_formal_arglist
|
|
* @brief parser state-machine for a formal parameter list
|
|
**/
|
|
class DExpectFormalArglistSsm : public DSyntaxStateMachine<DExpectFormalArglistSsm> {
|
|
public:
|
|
using Super = DSyntaxStateMachine<DExpectFormalArglistSsm>;
|
|
using AGCObjectVisitor = xo::mm::AGCObjectVisitor;
|
|
using VisitReason = xo::mm::VisitReason;
|
|
using AAllocator = xo::mm::AAllocator;
|
|
using DArena = xo::mm::DArena;
|
|
using TypeDescr = xo::reflect::TypeDescr;
|
|
using ppindentinfo = xo::print::ppindentinfo;
|
|
using size_type = std::uint32_t;
|
|
|
|
public:
|
|
DExpectFormalArglistSsm(DArray * argl);
|
|
|
|
/** create instance, using memory from @parser_mm **/
|
|
static obj<ASyntaxStateMachine,DExpectFormalArglistSsm> make(DArena & parser_mm);
|
|
static DExpectFormalArglistSsm * _make(DArena & parser_mm);
|
|
|
|
static void start(ParserStateMachine * p_psm);
|
|
|
|
/** @defgroup scm-expectformalarglistssm-methods general methods **/
|
|
///@{
|
|
|
|
static const char * ssm_classname() { return "DExpectFormalArglistSsm"; }
|
|
|
|
/** update state on incoming token @p tk, with overall parser state in @p p_psm **/
|
|
void on_leftparen_token(const Token & tk,
|
|
ParserStateMachine * p_psm);
|
|
|
|
/** update state on incoming token @p tk, with overall parser state in @p p_psm **/
|
|
void on_comma_token(const Token & tk,
|
|
ParserStateMachine * p_psm);
|
|
|
|
/** update state on incoming rightparen token @p tk, with overall parser state in @p p_psm **/
|
|
void on_rightparen_token(const Token & tk,
|
|
ParserStateMachine * p_psm);
|
|
|
|
///@}
|
|
/** @defgroup scm-expectformalarglistssm-ssm-facet syntaxstatemachine facet methods **/
|
|
///@{
|
|
|
|
/** identifies the ssm implemented here **/
|
|
syntaxstatetype ssm_type() const noexcept;
|
|
|
|
/** mnemonic for expected input (for this ssm) in current state **/
|
|
std::string_view get_expect_str() const;
|
|
|
|
/** update state on incoming token @p tk,
|
|
* with overall parser state in @p p_psm
|
|
**/
|
|
void on_token(const Token & tk,
|
|
ParserStateMachine * p_psm);
|
|
|
|
/** update state to consume parsed param (name,type) emitted by
|
|
* nested ssm, with overall parser state in @p p_psm
|
|
**/
|
|
void on_parsed_formal(const DUniqueString * param_name,
|
|
TypeDescr param_type,
|
|
ParserStateMachine * p_psm);
|
|
/** update state to consume parsed formal (name,type) emitted
|
|
* by nested ssm, that's followed immediately by token @p tk.
|
|
* overall parser state in @p *p_psm
|
|
**/
|
|
void on_parsed_formal_with_token(const DUniqueString * param_name,
|
|
TypeDescr param_type,
|
|
const Token & tk,
|
|
ParserStateMachine * p_psm);
|
|
|
|
///@}
|
|
/** @defgroup scm-expectformalarglistssm-printable-facet printable facet methods **/
|
|
///@{
|
|
|
|
bool pretty(const ppindentinfo & ppii) const;
|
|
|
|
///@}
|
|
/** @defgroup scm-expectformalarglistssm-gc-support gc support methods **/
|
|
///@{
|
|
|
|
/** gc support: visit gc-aware child pointers **/
|
|
void visit_gco_children(VisitReason reason,
|
|
obj<AGCObjectVisitor> gc) noexcept;
|
|
|
|
///@}
|
|
|
|
private:
|
|
/** @defgroup scm-expectformalarglistssm-impl-methods **/
|
|
///@{
|
|
|
|
/** update local state to include parsed formal (param_name, param_type).
|
|
* If stack memory needed, get from @p parser_alloc.
|
|
* Lifetime until formal arglist completely parsed
|
|
**/
|
|
void _accept_formal(obj<AAllocator> expr_alloc,
|
|
DArena & parser_alloc,
|
|
const DUniqueString * param_name,
|
|
TypeDescr param_type);
|
|
|
|
///@}
|
|
|
|
private:
|
|
/** parsing state-machine state **/
|
|
formalarglstatetype fastate_ = formalarglstatetype::argl_0;
|
|
/** populate with (parameter-name, parameter-type) list
|
|
* as they're encountered.
|
|
*
|
|
* Not using flexible array here since we don't know size at construction time
|
|
**/
|
|
DArray * argl_ = nullptr;
|
|
};
|
|
} /*namespace scm*/
|
|
} /*namespace xo*/
|
|
|
|
/* end DExpectFormalArglistSsm.hpp */
|