/* 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.dbs.engines.tdbs; import gplx.*; import gplx.dbs.*; import gplx.dbs.engines.*; import gplx.core.stores.*; class TdbDbLoadMgr { public TdbDatabase LoadTbls(Io_url dbInfo) { TdbDatabase db = TdbDatabase.new_(dbInfo); if (!Io_mgr.Instance.ExistsFil(dbInfo)) { db.IsNew_set(true); return db; } DataRdr rdr = MakeDataRdr(dbInfo); LoadTblsByRdr(db, rdr); return db; } public void LoadTbl(TdbDatabase db, TdbTable tbl) { DataRdr rootRdr = MakeDataRdr(tbl.File().Path()); LoadTblsByRdr(db, rootRdr); } void LoadTblsByRdr(TdbDatabase db, DataRdr rootRdr) { DataRdr rdr = rootRdr.Subs(); while (rdr.MoveNextPeer()) { String name = rdr.NameOfNode(); if (String_.Eq(name, TdbFileList.StoreTblName)) db.Files().DataObj_Rdr(rdr); else if (String_.Eq(name, TdbTableList.StoreTableName)) db.Tables().DataObj_Rdr(rdr, db.Files()); else db.Tables().Get_by_or_fail(rdr.NameOfNode()).DataObj_Rdr(rdr); } if (db.Files().Count() == 0) throw Err_.new_wo_type("fatal error: db has no files", "connectInfo", db.DbUrl()); } DataRdr MakeDataRdr(Io_url fil) { String text = Io_mgr.Instance.LoadFilStr(fil); return TdbStores.rdr_(text); } public static TdbDbLoadMgr new_() {return new TdbDbLoadMgr();} TdbDbLoadMgr() {} }