cleanup...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2026-07-25 01:49:31 +03:00
parent ab53f86ed0
commit af53fe30b4

View File

@ -647,7 +647,6 @@ module.BaseParser = {
&& (body = this.expand(page, body, state, nested_handlers)) && (body = this.expand(page, body, state, nested_handlers))
// call macro... // call macro...
//* XXX LOCAL_STATE
// NOTE: here we separate local macro state and global/parent // NOTE: here we separate local macro state and global/parent
// state via the prototpype... // state via the prototpype...
// This is mainly needed to sparate promises, since the // This is mainly needed to sparate promises, since the
@ -655,7 +654,8 @@ module.BaseParser = {
// each macro can wait async for an arbitrary amount of // each macro can wait async for an arbitrary amount of
// time it only should care about what was promised // time it only should care about what was promised
// before it neglecting what came after. // before it neglecting what came after.
var res = that.callMacro(page, name, args, body, { var res =
that.callMacro(page, name, args, body, {
// global/parent state... // global/parent state...
__proto__: state, __proto__: state,
root: state.root ?? state, root: state.root ?? state,
@ -664,9 +664,6 @@ module.BaseParser = {
waitAll: state.waitAll, waitAll: state.waitAll,
waitNested: state.waitNested, waitNested: state.waitNested,
}) })
/*/
var res = that.callMacro(page, name, args, body, state)
//*/
// async... // async...
if(res instanceof Promise){ if(res instanceof Promise){
@ -793,8 +790,6 @@ module.BaseParser = {
ast ast
: ast.iter() : ast.iter()
// XXX LOCAL_STATE
//state.unresolved = []
var unresolved = [] var unresolved = []
// merge resolved elements into the last item of elems... // merge resolved elements into the last item of elems...
@ -838,9 +833,6 @@ module.BaseParser = {
// nested macro with no value set -- skip... // nested macro with no value set -- skip...
if(that.macros[elem.name] instanceof Array){ if(that.macros[elem.name] instanceof Array){
continue } continue }
// XXX LOCAL_STATE...
// ...use the same mechanism here as in .expand(..)
//state.unresolved
unresolved unresolved
.push(elem.resolving instanceof Promise ? .push(elem.resolving instanceof Promise ?
elem.resolving elem.resolving
@ -895,7 +887,6 @@ module.BaseParser = {
var resolve = function(ast){ var resolve = function(ast){
return Promise.awaitOrRun( return Promise.awaitOrRun(
// XXX LOCAL_STATE // XXX LOCAL_STATE
//...(state.unresolved ?? []),
state.hasOwnProperty('wait') ? state.hasOwnProperty('wait') ?
state.wait state.wait
// XXX // XXX
@ -931,9 +922,6 @@ module.BaseParser = {
return Promise.awaitOrRun( return Promise.awaitOrRun(
// XXX LOCAL_STATE if we are nested we should not wait // XXX LOCAL_STATE if we are nested we should not wait
// for anything after the caller... // for anything after the caller...
//(state.unresolved
// || !that.isResolved(ast)) ?
//state.hasOwnProperty('wait') ?
!that.isResolved(ast) ? !that.isResolved(ast) ?
resolve(ast) resolve(ast)
: ast, : ast,
@ -953,16 +941,8 @@ module.BaseParser = {
function(res){ function(res){
return res.join('') }) }, return res.join('') }) },
// XXX
execNested: function(page, ast, state={}, nested_handlers={}){ execNested: function(page, ast, state={}, nested_handlers={}){
//return ast
/* XXX LOCAL_STATE waitNested here deadlocks the parser -- not sure why...
//return this.exec(page, ast, state, nested_handlers, 'unresolved') },
return this.exec(page, ast, state, nested_handlers, 'waitNested') }, return this.exec(page, ast, state, nested_handlers, 'waitNested') },
/*/
return this.exec(page, ast, state, nested_handlers, '') },
//*/
// XXX render api... // XXX render api...
@ -1047,20 +1027,7 @@ module.parser = {
echo: function(page, args, body, state){ echo: function(page, args, body, state){
console.log(['----', ...Object.keys(args), body ?? ''].join(' ').gray) console.log(['----', ...Object.keys(args), body ?? ''].join(' ').gray)
return Promise.awaitOrRun( return Promise.awaitOrRun(
// XXX this works and sequences correctly...
state.waitNested, state.waitNested,
// XXX this deadlocks...
// calling .execNested(..) from any macro (@include(..)
// in the example code) will deadlock the execution
// if .execNested(..) is waiting for .waitNested...
// to reproduce:
// - uncomment the LOCAL_STATE track
// - run:
// @echo(A)@source(/async/echo)@echo(B)@include(/async/echo)@echo(C)
// -> need a way to call .exex(..) while evaluating...
//this.execNested(page, '', state),
// XXX this also does not work...
//this.resolve(page, '', state),
function(){ function(){
console.log(' --', ...Object.keys(args), body ?? '') }) }, console.log(' --', ...Object.keys(args), body ?? '') }) },
//*/ //*/
@ -1200,12 +1167,9 @@ module.parser = {
if(!name){ if(!name){
return '' } return '' }
//* XXX LOCAL_STATE // XXX LOCAL_STATE
var vars = state.parent.vars ??= {} var vars = state.parent.vars ??= {}
//var vars = state.root.vars ??= {} //var vars = state.root.vars ??= {}
/*/
var vars = state.vars ??= {}
//*/
return Promise.awaitOrRun( return Promise.awaitOrRun(
this.execNested(page, name, state), this.execNested(page, name, state),
@ -1350,12 +1314,9 @@ module.parser = {
var that = this var that = this
var name = args.name var name = args.name
//* XXX LOCAL_STATE // XXX LOCAL_STATE
var slots = state.parent.slots ??= {} var slots = state.parent.slots ??= {}
//var slots = state.root.slots ??= {} //var slots = state.root.slots ??= {}
/*/
var slots = state.slots ??= {}
//*/
return Promise.awaitOrRun( return Promise.awaitOrRun(
this.execNested(page, name, state), this.execNested(page, name, state),
@ -1714,12 +1675,9 @@ module.parser = {
function(page, args, body, state){ function(page, args, body, state){
var that = this var that = this
//* XXX LOCAL_STATE // XXX LOCAL_STATE
var macros = state.parent.macros ??= {} var macros = state.parent.macros ??= {}
//var macros = state.root.macros ??= {} //var macros = state.root.macros ??= {}
/*/
var macros = state.macros ??= {}
//*/
return Promise.awaitOrRun( return Promise.awaitOrRun(
this.execNested(page, args.name, state), this.execNested(page, args.name, state),