/* 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 . */ package gplx.gfml; import gplx.*; class GfmlVarCtx { public String Key() {return key;} private String key; public void AddReplace(GfmlVarItm itm) {hash.AddReplace(itm.Key(), itm);} public void Del(String key) {hash.Del(key);} public String Fetch_Val(String key) { GfmlVarItm itm = (GfmlVarItm)hash.Fetch(key); if (itm == null) return null; return itm.TknVal(); } HashAdp hash = HashAdp_.new_(); public static GfmlVarCtx new_(String key) { GfmlVarCtx rv = new GfmlVarCtx(); rv.key = key; return rv; } } class GfmlVarCtx_ { public static GfmlVarCtx FetchFromCacheOrNew(HashAdp cache, String ctxKey) { HashAdp ctxRegy = FetchRegyOrNew(cache); GfmlVarCtx rv = (GfmlVarCtx)ctxRegy.Fetch(ctxKey); if (rv == null) { rv = (String_.Eq(ctxKey, DefaultKey)) ? default_(ctxKey) : GfmlVarCtx.new_(ctxKey); ctxRegy.Add(rv.Key(), rv); } return rv; } static GfmlVarCtx default_(String ctxKey) { GfmlVarCtx rv = GfmlVarCtx.new_(ctxKey); rv.AddReplace(GfmlVarItm.new_("t", GfmlTkn_.raw_("\t"), GfmlVarCtx_.DefaultKey)); rv.AddReplace(GfmlVarItm.new_("n", GfmlTkn_.raw_(String_.CrLf), GfmlVarCtx_.DefaultKey)); return rv; } static HashAdp FetchRegyOrNew(HashAdp cache) { String key = "gfml.cacheKeys.ctxRegy"; HashAdp rv = (HashAdp)cache.Fetch(key); if (rv == null) { rv = HashAdp_.new_(); cache.Add(key, rv); } return rv; } public static final String DefaultKey = "gfml.varKeys.default"; }