mirror of
https://github.com/gnosygnu/xowa.git
synced 2024-10-27 20:34:16 +00:00
61 lines
2.1 KiB
Java
61 lines
2.1 KiB
Java
/*
|
|
XOWA: the XOWA Offline Wiki Application
|
|
Copyright (C) 2012-2017 gnosygnu@gmail.com
|
|
|
|
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
|
|
or alternatively under the terms of the Apache License Version 2.0.
|
|
|
|
You may use XOWA according to either of these licenses as is most appropriate
|
|
for your project on a case-by-case basis.
|
|
|
|
The terms of each license can be found in the source code repository:
|
|
|
|
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
|
|
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
|
*/
|
|
package gplx.gfml; import gplx.*;
|
|
class GfmlVarCtx {
|
|
public String Key() {return key;} private String key;
|
|
public void Add_if_dupe_use_nth(GfmlVarItm itm) {hash.Add_if_dupe_use_nth(itm.Key(), itm);}
|
|
public void Del(String key) {hash.Del(key);}
|
|
public String Fetch_Val(String key) {
|
|
GfmlVarItm itm = (GfmlVarItm)hash.Get_by(key); if (itm == null) return null;
|
|
return itm.TknVal();
|
|
}
|
|
Hash_adp hash = Hash_adp_.New();
|
|
public static GfmlVarCtx new_(String key) {
|
|
GfmlVarCtx rv = new GfmlVarCtx();
|
|
rv.key = key;
|
|
return rv;
|
|
}
|
|
}
|
|
class GfmlVarCtx_ {
|
|
public static GfmlVarCtx FetchFromCacheOrNew(Hash_adp cache, String ctxKey) {
|
|
Hash_adp ctxRegy = FetchRegyOrNew(cache);
|
|
GfmlVarCtx rv = (GfmlVarCtx)ctxRegy.Get_by(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.Add_if_dupe_use_nth(GfmlVarItm.new_("t", GfmlTkn_.raw_("\t"), GfmlVarCtx_.DefaultKey));
|
|
rv.Add_if_dupe_use_nth(GfmlVarItm.new_("n", GfmlTkn_.raw_(String_.CrLf), GfmlVarCtx_.DefaultKey));
|
|
return rv;
|
|
}
|
|
static Hash_adp FetchRegyOrNew(Hash_adp cache) {
|
|
String key = "gfml.cacheKeys.ctxRegy";
|
|
Hash_adp rv = (Hash_adp)cache.Get_by(key);
|
|
if (rv == null) {
|
|
rv = Hash_adp_.New();
|
|
cache.Add(key, rv);
|
|
}
|
|
return rv;
|
|
}
|
|
public static final String DefaultKey = "gfml.varKeys.default";
|
|
}
|