mirror of
https://github.com/gnosygnu/xowa.git
synced 2024-10-27 20:34:16 +00:00
79 lines
3.1 KiB
Java
79 lines
3.1 KiB
Java
/*
|
|
XOWA: the XOWA Offline Wiki Application
|
|
Copyright (C) 2012 gnosygnu@gmail.com
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package gplx.gfml; import gplx.*;
|
|
class GfmlPragmaVar implements GfmlPragma {
|
|
public String KeyOfPragma() {return pragmaKey;} public void PragmaKey_set(String v) {pragmaKey = v;} private String pragmaKey = "_var";
|
|
public void Exec(GfmlBldr bldr, GfmlNde pragmaNde) {
|
|
List_adp list = Compile(pragmaNde);
|
|
ExecList(bldr.Vars(), list);
|
|
bldr.Doc().PragmaMgr().EndCmds_add(bldr.CurNdeFrame().CurDocPos().NewUp(), GfmlPragmaVar_scopeEndCmd.new_(list));
|
|
}
|
|
@gplx.Internal protected List_adp Compile(GfmlNde pragmaNde) {
|
|
List_adp list = List_adp_.New();
|
|
for (int i = 0; i < pragmaNde.SubHnds().Count(); i++) {
|
|
GfmlNde subNde = (GfmlNde)pragmaNde.SubHnds().Get_at(i);
|
|
GfmlVarItm itm = CompileItmNde(subNde);
|
|
list.Add(itm);
|
|
}
|
|
return list;
|
|
}
|
|
@gplx.Internal protected GfmlVarItm CompileItmNde(GfmlNde subNde) {
|
|
String key = subNde.SubKeys().FetchDataOrFail("key");
|
|
GfmlAtr valAtr = (GfmlAtr)subNde.SubKeys().Get_by("val");
|
|
String ctx = subNde.SubKeys().FetchDataOrNull("ctx"); if (ctx == null) ctx = GfmlVarCtx_.DefaultKey;
|
|
return GfmlVarItm.new_(key, valAtr.DatTkn(), ctx);
|
|
}
|
|
public GfmlType[] MakePragmaTypes(GfmlTypeMakr makr) {
|
|
makr.MakeSubTypeAsOwner (pragmaKey);
|
|
makr.MakeSubType ( "text", "key", "val", "ctx");
|
|
return makr.Xto_bry();
|
|
}
|
|
void ExecList(Hash_adp cache, List_adp list) {
|
|
GfmlVarCtx ctx = null;
|
|
for (Object varObj : list) {
|
|
GfmlVarItm var = (GfmlVarItm)varObj;
|
|
ctx = FetchIfNew(ctx, var, cache);
|
|
var.Scope_bgn(ctx);
|
|
}
|
|
}
|
|
public static GfmlPragmaVar new_() {return new GfmlPragmaVar();} GfmlPragmaVar() {}
|
|
public static GfmlVarCtx FetchIfNew(GfmlVarCtx ctx, GfmlVarItm var, Hash_adp cache) {// reused in two procs
|
|
if (ctx == null || !String_.Eq(ctx.Key(), var.CtxKey()))
|
|
ctx = GfmlVarCtx_.FetchFromCacheOrNew(cache, var.CtxKey());
|
|
return ctx;
|
|
}
|
|
}
|
|
class GfmlPragmaVar_scopeEndCmd implements GfmlBldrCmd {
|
|
public String Key() {return "cmd:gfml.var.expire";}
|
|
public void Exec(GfmlBldr bldr, GfmlTkn tkn) {
|
|
Hash_adp cache = bldr.Vars();
|
|
GfmlVarCtx ctx = null;
|
|
for (Object varObj : list) {
|
|
GfmlVarItm var = (GfmlVarItm)varObj;
|
|
ctx = GfmlPragmaVar.FetchIfNew(ctx, var, cache);
|
|
var.Scope_end(ctx);
|
|
}
|
|
}
|
|
List_adp list;
|
|
public static GfmlPragmaVar_scopeEndCmd new_(List_adp list) {
|
|
GfmlPragmaVar_scopeEndCmd rv = new GfmlPragmaVar_scopeEndCmd();
|
|
rv.list = list;
|
|
return rv;
|
|
} GfmlPragmaVar_scopeEndCmd() {}
|
|
}
|