Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/Results.cs @ 1424

Last change on this file since 1424 was 1424, checked in by gkronber, 15 years ago

Fixed tooltip bug in CEDMA BubbleChart. #543 (MouseDrag events in CEDMA BubbleChart cause 100% CPU utilization)

File size: 4.7 KB
RevLine 
[560]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Core;
27using System.Collections;
28using HeuristicLab.CEDMA.DB.Interfaces;
29using System.Xml;
30using System.Runtime.Serialization;
31using System.IO;
[562]32using HeuristicLab.PluginInfrastructure;
[567]33using HeuristicLab.Data;
34using HeuristicLab.DataAnalysis;
35using System.Drawing;
[560]36
[1073]37namespace HeuristicLab.CEDMA.Core {
[1287]38  public class Results : ItemBase {
[1417]39    private const int PAGE_SIZE = 1000;
[1287]40    private string[] categoricalVariables = null;
41    public string[] CategoricalVariables {
42      get {
43        if (categoricalVariables == null) {
44          LoadModelAttributes();
45        }
46        return categoricalVariables;
47      }
48    }
[560]49
[1287]50    private string[] ordinalVariables = null;
51    public string[] OrdinalVariables {
52      get {
53        if (ordinalVariables == null) {
54          LoadModelAttributes();
55        }
56        return ordinalVariables;
57      }
58    }
59
[560]60    private IStore store;
61    public IStore Store {
62      get { return store; }
63      set {
64        store = value;
65      }
66    }
[561]67
[1287]68    private Entity dataSetEntity;
[560]69
[1287]70    public Results(IStore store) {
71      this.store = store;
[560]72    }
73
[1287]74    internal void FilterDataSet(Entity entity) {
75      this.dataSetEntity = entity;
[560]76    }
77
[1287]78    private List<ResultsEntry> entries = null;
79    private bool cached = false;
80    public IEnumerable<ResultsEntry> GetEntries() {
81      if (!cached)
82        return SelectRows();
83      return entries.AsEnumerable();
[560]84    }
85
[1287]86    private IEnumerable<ResultsEntry> SelectRows() {
[1417]87      int page = 0;
88      int resultsReturned = 0;
89      bool newEntry = false;
[1287]90      if (store == null) yield break;
91      entries = new List<ResultsEntry>();
[1417]92      do {
93        var allBindings = store.Query("<" + dataSetEntity + "> <" + Ontology.PredicateHasModel + "> ?Model ." + Environment.NewLine +
94          "?Model ?Attribute ?Value .", page, PAGE_SIZE);
95        var allModelBindings = allBindings.GroupBy(x => (Entity)x.Get("Model"));
96        resultsReturned = allBindings.Count;
97
98        foreach (var modelBindings in allModelBindings) {
99          ResultsEntry entry = entries.FirstOrDefault(x => x.Uri == modelBindings.Key.Uri);
100          newEntry = false;
101          if (entry == null) {
102            entry = new ResultsEntry();
103            entry.Uri = modelBindings.Key.Uri;
104            entries.Add(entry);
105            newEntry = true;
106          }
107          foreach (var binding in modelBindings) {
108            if (binding.Get("Value") is Literal) {
109              string name = ((Entity)binding.Get("Attribute")).Uri.Replace(Ontology.CedmaNameSpace, "");
110              if (entry.Get(name) == null) {
111                object value = ((Literal)binding.Get("Value")).Value;
112                entry.Set(name, value);
113              }
[1287]114            }
115          }
[1417]116          if (newEntry) yield return entry;
[1287]117        }
[1417]118        page++;
119      } while (resultsReturned == PAGE_SIZE);
[567]120
[1287]121      FireChanged();
122      cached = true;
[560]123    }
[567]124
[1287]125    internal IEnumerable<string> SelectModelAttributes() {
126      return CategoricalVariables.Concat(OrdinalVariables);
[567]127    }
[576]128
[1287]129    private void LoadModelAttributes() {
130      this.ordinalVariables =
[1417]131        store.Query("?ModelAttribute <" + Ontology.PredicateInstanceOf + "> <" + Ontology.TypeOrdinalAttribute + "> .", 0, 100)
[1287]132        .Select(s => ((Entity)s.Get("ModelAttribute")).Uri.Replace(Ontology.CedmaNameSpace, ""))
133        .ToArray();
134      this.categoricalVariables =
[1417]135        store.Query("?ModelAttribute <" + Ontology.PredicateInstanceOf + "> <" + Ontology.TypeCategoricalAttribute + "> .", 0, 100)
[1287]136        .Select(s => ((Entity)s.Get("ModelAttribute")).Uri.Replace(Ontology.CedmaNameSpace, ""))
137        .ToArray();
[576]138    }
[1424]139
140    public double IndexOfCategoricalValue(string variable, object value) {
141      return 1.0; // TODO
142    }
[560]143  }
144}
Note: See TracBrowser for help on using the repository browser.