/* 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.core.primitives; import gplx.*; import gplx.core.*; import gplx.core.brys.*; public class Bry_cache { private final Hash_adp hash = Hash_adp_.New(); private final Bry_obj_ref hash_ref = Bry_obj_ref.New_empty(); public byte[] Get_or_new(String v) {return Get_or_new(Bry_.new_u8(v));} public byte[] Get_or_new(byte[] v) { if (v.length == 0) return Bry_.Empty; Object rv = hash.Get_by(hash_ref.Val_(v)); if (rv == null) { Bry_obj_ref bry = Bry_obj_ref.New(v); hash.Add_as_key_and_val(bry); return v; } else return ((Bry_obj_ref)rv).Val(); } public static final Bry_cache Instance = new Bry_cache(); Bry_cache() {} }