public void Clear() { codesCell.Clear(); codes.Clear(); decodeTree.Clear(); codesHelp.Clear(); }
public void Load(IEnumerable <object[]> rec_flow) { acell.Clear(); acell.Fill(new object[0]); foreach (object[] rec in rec_flow) { acell.Root.AppendElement(new object[] { rec[0], rec[1], false }); } acell.Flush(); xcell.Clear(); xcell.Fill2(acell.Root.Get()); xcell.Flush(); xcell.Root.Sort((PxEntry entry) => (string)entry.Field(0).Get()); // Это надо привести в соответствие с типом ключа }
public void Create() { icell.Clear(); object[] ivalue = table.Root.Elements().Select(rec => { return(new object[] { ((object[])rec.Get())[field_numb], rec.offset }); }).ToArray(); icell.Fill2(ivalue); icell.Flush(); icell.Root.Sort(entry => (string)entry.Field(0).Get()); //icell.Root.SortComparison((e1, e2) => ((string)((object[])e1.Get().Value)[0]).CompareTo((string)((object[])e2.Get().Value)[0])); Console.WriteLine(icell.Root.Count()); }
public void Load(string[] rdf_files) { DateTime tt0 = DateTime.Now; // Закроем использование if (triplets != null) { triplets.Close(); triplets = null; } if (graph_x != null) { graph_x.Close(); graph_x = null; } // Создадим ячейки triplets = new PaCell(tp_triplets, path + "triplets.pac", false); triplets.Clear(); quads = new PaCell(tp_quads, path + "quads.pac", false); graph_a = new PaCell(tp_graph, path + "graph_a.pac", false); graph_x = new PxCell(tp_graph, path + "graph_x.pxc", false); graph_x.Clear(); n4 = new PaCell(tp_n4, path + "n4.pac", false); n4.Clear(); Console.WriteLine("cells initiated duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; TripletSerialInput(triplets, rdf_files); Console.WriteLine("After TripletSerialInput. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; LoadQuadsAndSort(); Console.WriteLine("After LoadQuadsAndSort(). duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; FormingSerialGraph(new SerialBuffer(graph_a, 3)); Console.WriteLine("Forming serial graph ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // произвести объектное представление object g_value = graph_a.Root.Get().Value; graph_x.Fill2(g_value); Console.WriteLine("Forming fixed graph ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // ========= Завершение загрузки ========= // Закроем файлы и уничтожим ненужные triplets.Close(); quads.Close(); File.Delete(path + "quads.pac"); graph_a.Close(); File.Delete(path + "graph_a.pac"); graph_x.Close(); // Откроем для использования InitCells(); }
public void Build() { DateTime tt0 = DateTime.Now; otriples.Flush(); dtriples.Flush(); literals.Flush(); // ======== Формирование вторичных ячеек ======== PaCell otriples_op = new PaCell(tp_otriples, path + "otriples_op.pac", false); otriples_op.Clear(); otriples_op.Fill(new object[0]); // Другой вариант - копирование файла otriples.Root.Scan((off, pobj) => { otriples_op.Root.AppendElement(pobj); return(true); }); otriples_op.Flush(); Console.WriteLine("Additional files ok. duration={0}", (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // ======= Сортировки ======= // Упорядочивание otriples по s-p-o SPOComparer spo_compare = new SPOComparer(); otriples.Root.SortByKey <SubjPredObjInt>(rec => new SubjPredObjInt(rec), spo_compare); Console.WriteLine("otriples.Root.Sort ok. Duration={0} msec.", (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; SPComparer sp_compare = new SPComparer(); // Упорядочивание otriples_op по o-p otriples_op.Root.SortByKey <SubjPredInt>(rec => { object[] r = (object[])rec; return(new SubjPredInt() { pred = (int)r[1], subj = (int)r[2] }); }, sp_compare); Console.WriteLine("otriples_op Sort ok. Duration={0} msec.", (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Упорядочивание dtriples_sp по s-p dtriples.Root.SortByKey(rec => { object[] r = (object[])rec; return(new SubjPredInt() { pred = (int)r[1], subj = (int)r[0] }); }, sp_compare); Console.WriteLine("dtriples.Root.Sort ok. Duration={0} msec.", (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // ==== Определение количества сущностей ==== // Делаю три упрощенных сканера DiapasonScanner <int> i_fields = new DiapasonScanner <int>(dtriples, ent => (int)((object[])ent.Get())[0]); DiapasonScanner <int> i_direct = new DiapasonScanner <int>(otriples, ent => (int)((object[])ent.Get())[0]); DiapasonScanner <int> i_inverse = new DiapasonScanner <int>(otriples_op, ent => (int)((object[])ent.Get())[2]); int n_entities = 0; i_fields.Start(); i_direct.Start(); i_inverse.Start(); while (i_fields.HasValue || i_direct.HasValue || i_inverse.HasValue) { n_entities++; int id0 = i_fields.HasValue ? i_fields.KeyCurrent : Int32.MaxValue; int id1 = i_direct.HasValue ? i_direct.KeyCurrent : Int32.MaxValue; int id2 = i_inverse.HasValue ? i_inverse.KeyCurrent : Int32.MaxValue; // Минимальное значение кода идентификатора int id = Math.Min(id0, Math.Min(id1, id2)); if (id0 == id) { i_fields.Next(); } if (id1 == id) { i_direct.Next(); } if (id2 == id) { i_inverse.Next(); } } Console.WriteLine("Scan3count ok. Duration={0} msec. cnt_e={1} ", (DateTime.Now - tt0).Ticks / 10000L, n_entities); tt0 = DateTime.Now; // ==== Построение дерева слиянием трех ячеек ==== // Делаю три сканера из трех ячеек DiapasonElementsScanner <SubjPredInt> fields = new DiapasonElementsScanner <SubjPredInt>(dtriples, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[0], pred = (int)v[1] }); }); DiapasonElementsScanner <SubjPredInt> direct = new DiapasonElementsScanner <SubjPredInt>(otriples, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[0], pred = (int)v[1] }); }); DiapasonElementsScanner <SubjPredInt> inverse = new DiapasonElementsScanner <SubjPredInt>(otriples_op, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[2], pred = (int)v[1] }); }); // Стартуем сканеры fields.Start(); direct.Start(); inverse.Start(); // Заведем ячейку для результата сканирования tree_fix.Clear(); tree_fix.Root.SetRepeat(n_entities); Console.WriteLine("tree_fix length={0}", tree_fix.Root.Count()); long longindex = 0; int cnt_e = 0; // для отладки long c1 = 0, c2 = 0, c3 = 0; // для отладки //PaEntry ent_dtriples = dtriples.Root.Element(0); // вход для доступа к литералам // Начинаем тройное сканирование while (fields.HasValue || direct.HasValue || inverse.HasValue) { // Здесь у нас НОВОЕ значение идентификатора cnt_e++; if (cnt_e % 10000000 == 0) { Console.Write("{0} ", cnt_e / 10000000); } int id0 = fields.HasValue ? fields.KeyCurrent.subj : Int32.MaxValue; int id1 = direct.HasValue ? direct.KeyCurrent.subj : Int32.MaxValue; int id2 = inverse.HasValue ? inverse.KeyCurrent.subj : Int32.MaxValue; // Минимальное значение кода идентификатора int id = Math.Min(id0, Math.Min(id1, id2)); // массив для получения "однородных" элементов из сканнеров object[] elements; List <object[]> list_fields = new List <object[]>(); while (fields.HasValue && fields.KeyCurrent.subj == id) { int su = fields.KeyCurrent.subj; int pr = fields.KeyCurrent.pred; var diap = fields.Next(out elements); c3 += diap.numb; list_fields.AddRange(elements.Cast <object[]>().Select(e3 => new object[] { e3[1], e3[2] })); } List <object[]> list_direct = new List <object[]>(); while (direct.HasValue && direct.KeyCurrent.subj == id) { int su = direct.KeyCurrent.subj; int pr = direct.KeyCurrent.pred; var diap = direct.Next(out elements); c1 += diap.numb; list_direct.AddRange(elements.Cast <object[]>().Select(e3 => new object[] { e3[1], e3[2] })); } List <object[]> list_inverse = new List <object[]>(); while (inverse.HasValue && inverse.KeyCurrent.subj == id) { int su = inverse.KeyCurrent.subj; int pr = inverse.KeyCurrent.pred; var diap = inverse.Next(out elements); c2 += diap.numb; object[] pr_sources_pair = new object[2]; pr_sources_pair[0] = pr; pr_sources_pair[1] = elements.Cast <object[]>().Select(e3 => e3[0]).ToArray(); list_inverse.Add(pr_sources_pair); } //Собираем полную запись object[] record = new object[] { id, list_fields.ToArray(), list_direct.ToArray(), list_inverse.ToArray() }; // Записываем в качестве элемента последовательности tree_fix.Root.Element(longindex).Set(record); longindex++; } tree_fix.Close(); Console.WriteLine("tree_fix ok. Duration={0} msec.", (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; otriples.Close(); otriples_op.Close(); dtriples.Close(); literals.Close(); }
public int MakeTreeFix() { DateTime tt0 = DateTime.Now; // Служебная часть. Она не нужна, если параметрами будут PaCell otriples, PaCell otriples_op, PaCell dtriples_sp PType tp_entity = new PType(PTypeEnumeration.integer); PType tp_otriple_seq = new PTypeSequence(new PTypeRecord( new NamedType("subject", tp_entity), new NamedType("predicate", tp_entity), new NamedType("object", tp_entity))); //PType tp_dtriple_seq = new PTypeSequence(new PTypeRecord( // new NamedType("subject", tp_entity), // new NamedType("predicate", tp_entity), // new NamedType("data", tp_literal))); PType tp_dtriple_spf = new PTypeSequence(new PTypeRecord( new NamedType("subject", tp_entity), new NamedType("predicate", tp_entity), new NamedType("offset", new PType(PTypeEnumeration.longinteger)))); otriples = new PaCell(tp_otriple_seq, path + "otriples.pac", true); PaCell otriples_op = new PaCell(tp_otriple_seq, path + "otriples_op.pac", true); PaCell dtriples_sp = new PaCell(tp_dtriple_spf, path + "dtriples.pac", true); // ==== Определение количества сущностей ==== // Делаю три упрощенных сканера DiapasonScanner <int> i_fields = new DiapasonScanner <int>(dtriples_sp, ent => { object[] v = (object[])ent.Get(); return((int)v[0]); }); DiapasonScanner <int> i_direct = new DiapasonScanner <int>(otriples, ent => { object[] v = (object[])ent.Get(); return((int)v[0]); }); DiapasonScanner <int> i_inverse = new DiapasonScanner <int>(otriples_op, ent => { object[] v = (object[])ent.Get(); return((int)v[2]); }); int n_entities = 0; i_fields.Start(); i_direct.Start(); i_inverse.Start(); while (i_fields.HasValue || i_direct.HasValue || i_inverse.HasValue) { n_entities++; int id0 = i_fields.HasValue ? i_fields.KeyCurrent : Int32.MaxValue; int id1 = i_direct.HasValue ? i_direct.KeyCurrent : Int32.MaxValue; int id2 = i_inverse.HasValue ? i_inverse.KeyCurrent : Int32.MaxValue; // Минимальное значение кода идентификатора int id = Math.Min(id0, Math.Min(id1, id2)); if (id0 == id) { i_fields.Next(); } if (id1 == id) { i_direct.Next(); } if (id2 == id) { i_inverse.Next(); } } Console.WriteLine("Scan3count ok. Duration={0} msec. cnt_e={1} ", (DateTime.Now - tt0).Ticks / 10000L, n_entities); tt0 = DateTime.Now; // ==== Построение дерева слиянием отрех ячеек ==== // Делаю три сканера из трех ячеек DiapasonElementsScanner <SubjPredInt> fields = new DiapasonElementsScanner <SubjPredInt>(dtriples_sp, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[0], pred = (int)v[1] }); }); DiapasonElementsScanner <SubjPredInt> direct = new DiapasonElementsScanner <SubjPredInt>(otriples, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[0], pred = (int)v[1] }); }); DiapasonElementsScanner <SubjPredInt> inverse = new DiapasonElementsScanner <SubjPredInt>(otriples_op, ob => { object[] v = (object[])ob; return(new SubjPredInt() { subj = (int)v[2], pred = (int)v[1] }); }); // Стартуем сканеры fields.Start(); direct.Start(); inverse.Start(); // Заведем ячейку для результата сканирования PxCell tree_fix = this.entitiesTree; //new PxCell(tp_entitiesTree, path + "tree_fix.pxc", false); tree_fix.Clear(); tree_fix.Root.SetRepeat(namespaceMaper.coding.Count); Console.WriteLine("tree_fix length={0}", tree_fix.Root.Count()); int cnt_e = 0; // для отладки long c1 = 0, c2 = 0, c3 = 0; // для отладки //PaEntry ent_dtriples = dtriples.Root.Element(0); // вход для доступа к литералам // Начинаем тройное сканирование while (fields.HasValue || direct.HasValue || inverse.HasValue) { // Здесь у нас НОВОЕ значение идентификатора cnt_e++; if (cnt_e % 10000000 == 0) { Console.Write("{0} ", cnt_e / 10000000); } int id0 = fields.HasValue ? fields.KeyCurrent.subj : Int32.MaxValue; int id1 = direct.HasValue ? direct.KeyCurrent.subj : Int32.MaxValue; int id2 = inverse.HasValue ? inverse.KeyCurrent.subj : Int32.MaxValue; // Минимальное значение кода идентификатора int id = Math.Min(id0, Math.Min(id1, id2)); // массив для получения "однородных" элементов из сканнеров object[] elements; List <object[]> list_fields = new List <object[]>(); while (fields.HasValue && fields.KeyCurrent.subj == id) { int su = fields.KeyCurrent.subj; int pr = fields.KeyCurrent.pred; var diap = fields.Next(out elements); c3 += diap.numb; list_fields.AddRange(elements.Cast <object[]>().Select(e3 => new object[] { e3[1], e3[2] })); } List <object[]> list_direct = new List <object[]>(); while (direct.HasValue && direct.KeyCurrent.subj == id) { int su = direct.KeyCurrent.subj; int pr = direct.KeyCurrent.pred; var diap = direct.Next(out elements); c1 += diap.numb; list_direct.AddRange(elements.Cast <object[]>().Select(e3 => new object[] { e3[1], e3[2] })); } List <object[]> list_inverse = new List <object[]>(); while (inverse.HasValue && inverse.KeyCurrent.subj == id) { int su = inverse.KeyCurrent.subj; int pr = inverse.KeyCurrent.pred; var diap = inverse.Next(out elements); c2 += diap.numb; object[] pr_sources_pair = new object[2]; pr_sources_pair[0] = pr; pr_sources_pair[1] = elements.Cast <object[]>().Select(e3 => e3[0]).ToArray(); list_inverse.Add(pr_sources_pair); } //Собираем полную запись object[] record = new object[] { id, list_fields.ToArray(), list_direct.ToArray(), list_inverse.ToArray() }; // Записываем в качестве элемента последовательности if (id == 0) { Console.WriteLine("sfgh"); } tree_fix.Root.Element(id).Set(record); } tree_fix.Close(); this.entitiesTree = new PxCell(tp_entitiesTree, path + "entitiesTree.pxc", false); Console.WriteLine("Scan3fix ok. Duration={0} msec. cnt_e={1} ", (DateTime.Now - tt0).Ticks / 10000L, cnt_e); tt0 = DateTime.Now; return(cnt_e); }
static void Main(string[] args) { string path = @"..\..\..\Databases\"; InitTypes(); DateTime tt0 = DateTime.Now; // Проверка объекта object[] testdb = new object[] { new object[] { 1, new object[] { "a", "b", "c" } }, new object[] { 1, new object[] { "a1", "b1", "c1" } }, new object[] { 2, new object[] { "da", "db", "dc", "lang" } } }; Console.WriteLine(seqtriplets.Interpret(testdb)); // Создание ячейки плавающего формата string testpacfilename = path + "test.pac"; if (System.IO.File.Exists(testpacfilename)) { System.IO.File.Delete(testpacfilename); } PaCell cell = new PaCell(seqtriplets, testpacfilename, false); // false - чтобы заполнять // Заполнение ячейки данными из объекта cell.Fill(testdb); // Проверка того, что имеется в ячейке var cell_pvalue = cell.Root.GetValue(); Console.WriteLine(cell_pvalue.Type.Interpret(cell_pvalue.Value)); PTypeUnion tp_u = new PTypeUnion(); tp_u.Variants = new[] { new NamedType("empty", new PType(PTypeEnumeration.none)), new NamedType("node", new PTypeRecord( new NamedType("f0", new PType(PTypeEnumeration.boolean)), new NamedType("f1", new PTypeSequence(tp_u)))) }; object[] vv = new object[] { 1, new object[] { true, new object[] { new object[] { 1, new object[] { false, new object[0] } } } } }; PxCell xcell = new PxCell(tp_u, path + "xcell.pxc", false); xcell.Fill(vv); PxEntry e1 = xcell.Root.UElement().Field(1); PxEntry e2 = e1.Element(0); var v = e2.GetValue(); Console.WriteLine(v.Type.Interpret(v.Value)); return; //cell.Clear(); //cell.Fill(testtriplets); // проверка на то, что при неочищенной ячейке, записать в нее нельзя //cell.Close(); //cell.Clear(); //cell.Fill(testtriplets); // проверка на то, что при очищении, записать можно //// Проверка серийного буфера, в него загружаются данные из XML-файла, в ячейку ничего не помещается //// Этот тест, для начала, можно пропустить. //tt0 = DateTime.Now; //SerialBuffer buff = new SerialBuffer(new SerialFlowReceiverStub(seqtriplets)); //TestSerialInput(buff, path); //Console.WriteLine("Число элементов в объекте:" + ((object[])buff.Result).LongLength); //Console.WriteLine("Forming buffer ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Проверка ввода из серийного скобочного потока для ячейки свободного формата // В данном случае, поток порождается при сканировании XML-документа tt0 = DateTime.Now; cell.Clear(); TestSerialInput(cell, path); Console.WriteLine("Число элементов в объекте:" + cell.Root.Count()); Console.WriteLine("Serial input ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; cell.Close(); // Ячейка закрыта, теперь ее нельзя использовать // Проверка создания ячейки в режиме чтения PaCell cell2pac = new PaCell(seqtriplets, testpacfilename); long cnt2 = cell2pac.Root.Count(); var pval2 = cell2pac.Root.Element(100000).GetValue(); Console.WriteLine("cnt2=" + cnt2 + " Element(100000).Get()=" + pval2.Type.Interpret(pval2.Value)); Console.WriteLine("ReadObly cell ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Создание ячейки фиксированного формата xcell.Clear(); xcell = new PxCell(seqtriplets, path + "test.pxc", false); var pv = cell2pac.Root.Get(); tt0 = DateTime.Now; xcell.Fill2(pv); // Плохой метод, заменю на хороший Console.WriteLine("xcell Fill ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Проверка наполнения PxEntry rxt = xcell.Root; var ele = rxt.Element(400000).GetValue(); Console.WriteLine(ele.Type.Interpret(ele.Value)); Console.WriteLine("ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; }
// Из XML базы данных, выбирается множество RDF-дуг (DatatypeProperty) с предикатом http://fogid.net/o/name и формируется // последовательность пар (записей) имя-сущности - идентификатор сущности. Задача заключается в том, чтобы по частичному // имени, определить множество идентификаторов сущностей, для которых имеется похожее имя public static void Main(string[] args) { string path = @"..\..\..\Databases\"; // Тестирование сортировки по ключу со слиянием PaEntry.bufferBytes = 40; PaCell cell_simple = new PaCell(new PTypeSequence(new PType(PTypeEnumeration.integer)), path + "cimple.pac", false); cell_simple.Clear(); object[] arr = { 97, 1, 3, 2, 4, 9, 8, 7, 6, 0, 5, 99, 98 }; cell_simple.Fill(arr); cell_simple.Flush(); Console.WriteLine(cell_simple.Type.Interpret(cell_simple.Root.Get())); cell_simple.Root.SortByKey <int>(i_key => (int)i_key); Console.WriteLine(cell_simple.Type.Interpret(cell_simple.Root.Get())); return; PType tp_seq = new PTypeSequence(new PTypeRecord( new NamedType("name", new PType(PTypeEnumeration.sstring)), new NamedType("id", new PType(PTypeEnumeration.sstring)))); DateTime tt0 = DateTime.Now; Console.WriteLine("Start"); PaCell cella = new PaCell(tp_seq, path + "cella.pac", false); cella.Clear(); // Заполним ячейку данными XElement db = XElement.Load(path + "0001.xml"); cella.StartSerialFlow(); cella.S(); foreach (XElement rec in db.Elements()) { XAttribute about_att = rec.Attribute(sema2012m.ONames.rdfabout); if (about_att == null) { continue; } foreach (XElement prop in rec.Elements().Where(pr => pr.Name.LocalName == "name")) { cella.V(new object[] { prop.Value, about_att.Value }); } } cella.Se(); cella.EndSerialFlow(); // Проверим, что данные прочитались (должно получится 40361 пар имя-идентификатор) Console.WriteLine(cella.Root.Count()); // Надо перевести данные в фиксированный формат PxCell cell_seqnameid = new PxCell(tp_seq, path + "seqnameid.pxc", false); // очистим и перекинем данные cell_seqnameid.Clear(); cell_seqnameid.Fill2(cella.Root.Get()); Console.WriteLine("======Fill ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; //// Теперь сортируем пары по первому (нулевому) полю //cell_seqnameid.Root.SortComparison((e1, e2) => //{ // string s1 = (string)e1.Field(0).Get(); // string s2 = (string)e2.Field(0).Get(); // return s1.CompareTo(s2); //}); //Console.WriteLine("======Sort ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Сортируем по-другому cell_seqnameid.Root.Sort(e => { return((string)e.Field(0).Get()); }); Console.WriteLine("======Sort2 ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Посмотрим первые 100 var qu = cell_seqnameid.Root.Elements().Skip(100).Take(10); foreach (var c in qu) { var v = c.GetValue(); Console.WriteLine(v.Type.Interpret(v.Value)); } Console.WriteLine("======First 10 after 100. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // поищем чего-нибудь string name = "Марчук Александр Гурьевич"; var found = cell_seqnameid.Root.BinarySearchFirst(e => { string nm = (string)e.Field(0).Get(); return(nm.CompareTo(name)); }); var f = found.GetValue(); Console.WriteLine(f.Type.Interpret(f.Value)); Console.WriteLine("======BinarySearchFirst. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // поищем по-другому string name2 = "марчук"; var found2 = cell_seqnameid.Root.BinarySearchFirst(e => { string nm = ((string)e.Field(0).Get()).ToLower(); if (nm.StartsWith(name2)) { return(0); } return(nm.CompareTo(name)); }); var f2 = found.GetValue(); Console.WriteLine(f2.Type.Interpret(f2.Value)); Console.WriteLine("======BinarySearchFirst variant 2. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Поиск всех, удовлетворяющих условию string name3 = "белинский"; var found3 = cell_seqnameid.Root.BinarySearchAll(e => { string nm = ((string)e.Field(0).Get()).ToLower(); if (nm.StartsWith(name3)) { return(0); } return(nm.CompareTo(name3)); }); foreach (var ff in found3) { var f3 = ff.GetValue(); Console.WriteLine(f3.Type.Interpret(f3.Value)); } Console.WriteLine("======BinarySearchAll ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; // Проверка "вручную" правильности поиска всех var query = cell_seqnameid.Root.Elements(); foreach (var rec in query) { object[] value = (object[])rec.Get(); string nam = ((string)value[0]).ToLower(); if (nam.StartsWith(name3)) { Console.WriteLine("{0} {1}", value[0], value[1]); } } Console.WriteLine("======Fin. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; cella.Close(); cell_seqnameid.Close(); System.IO.File.Delete(path + "cella.pac"); System.IO.File.Delete(path + "seqnameid.pxc"); }
// Проверка эффективности работы последовательностей фиксированного формата static void Main(string[] args) { string path = @"..\..\..\Databases\"; DateTime tt0 = DateTime.Now; Random rnd = new Random(7777777); PaCell icell = new PaCell(new PTypeSequence(new PType(PTypeEnumeration.integer)), path + "icell.pac", false); PxCell xcell = new PxCell(new PTypeSequence(new PType(PTypeEnumeration.integer)), path + "xcell.pac", false); bool toload = false; int nvalues = 10000000; if (toload) { icell.Clear(); icell.Fill(new object[0]); for (int i = 0; i < nvalues; i++) { icell.Root.AppendElement(rnd.Next()); } icell.Flush(); Console.WriteLine("Load1 ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; PaEntry.bufferBytes = 200000000; icell.Root.SortByKey <int>(ob => (int)ob);; Console.WriteLine("Sort ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; } bool toload2 = false; if (toload2) { xcell.Clear(); //xcell.Root.SetRepeat(nvalues); //for (int i = 0; i < nvalues; i++) //{ // xcell.Root.Element(i).Set(icell.Root.Element(i).Get()); //} //xcell.Flush(); //xcell.Fill(icell.Root.Get()); xcell.Root.Set(icell.Root.Get()); Console.WriteLine("Load2 ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; xcell.Flush(); } //foreach (var v in icell.Root.ElementValues()) ; //var ooo = xcell.Root.Get(); foreach (var xent in xcell.Root.Elements()) { var xxx = xent.Get(); } Console.WriteLine("WarmUp ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; rnd = new Random(7777777); int start = nvalues / 2; for (int i = 0; i < start; i++) { int r0 = rnd.Next(); } for (int i = start; i < start + 10000; i++) { int r = rnd.Next(nvalues - 1); int v = (int)icell.Root.Element(r).Get(); //int v = (int)xcell.Root.Element(r).Get(); } Console.WriteLine("ok. duration=" + (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; rnd = new Random(7777777); for (int i = 0; i < start; i++) { int r0 = rnd.Next(); } // Пропустили половину чисел int found = 0; for (int i = start; i < start + 10000; i++) { int r = rnd.Next(); PaEntry entry = icell.Root.BinarySearchFirst(en => ((int)en.Get()).CompareTo(r)); //PxEntry entry = xcell.Root.BinarySearchFirst(en => ((int)en.Get()).CompareTo(r)); if (entry.IsEmpty) { continue; } int v = (int)entry.Get(); //int v = (int)xcell.Root.Element(r).Get(); found++; } Console.WriteLine("found {0} ok. duration={1}", found, (DateTime.Now - tt0).Ticks / 10000L); tt0 = DateTime.Now; }