aboutsummaryrefslogtreecommitdiff
path: root/src/uk/ac/ox/cs/pagoda/reasoner/MyQueryReasoner.java
blob: 8445713da44d099e11180866839d67cd6b461973 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
package uk.ac.ox.cs.pagoda.reasoner;

import org.semanticweb.karma2.profile.ELHOProfile;
import org.semanticweb.owlapi.model.OWLOntology;
import uk.ac.ox.cs.pagoda.multistage.MultiStageQueryEngine;
import uk.ac.ox.cs.pagoda.owl.EqualitiesEliminator;
import uk.ac.ox.cs.pagoda.owl.OWLHelper;
import uk.ac.ox.cs.pagoda.query.AnswerTuples;
import uk.ac.ox.cs.pagoda.query.GapByStore4ID;
import uk.ac.ox.cs.pagoda.query.GapByStore4ID2;
import uk.ac.ox.cs.pagoda.query.QueryRecord;
import uk.ac.ox.cs.pagoda.query.QueryRecord.Step;
import uk.ac.ox.cs.pagoda.reasoner.full.Checker;
import uk.ac.ox.cs.pagoda.reasoner.light.BasicQueryEngine;
import uk.ac.ox.cs.pagoda.reasoner.light.KarmaQueryEngine;
import uk.ac.ox.cs.pagoda.rules.DatalogProgram;
import uk.ac.ox.cs.pagoda.summary.HermitSummaryFilter;
import uk.ac.ox.cs.pagoda.tracking.QueryTracker;
import uk.ac.ox.cs.pagoda.tracking.TrackingRuleEncoder;
import uk.ac.ox.cs.pagoda.tracking.TrackingRuleEncoderDisjVar1;
import uk.ac.ox.cs.pagoda.tracking.TrackingRuleEncoderWithGap;
import uk.ac.ox.cs.pagoda.util.Timer;
import uk.ac.ox.cs.pagoda.util.Utility;
import uk.ac.ox.cs.pagoda.util.disposable.DisposedException;
import uk.ac.ox.cs.pagoda.util.tuples.Tuple;

import java.util.Collection;

class MyQueryReasoner extends QueryReasoner {

    OWLOntology ontology;
    DatalogProgram program;

    //	String additonalDataFile;
    BasicQueryEngine rlLowerStore = null;
    BasicQueryEngine lazyUpperStore = null;
    MultiStageQueryEngine limitedSkolemUpperStore;
    OWLOntology elho_ontology;
    //	boolean[] namedIndividuals_lazyUpper;
    KarmaQueryEngine elLowerStore = null;
    BasicQueryEngine trackingStore = null;
    //	boolean[] namedIndividuals_tracking;
    TrackingRuleEncoder encoder;
    private boolean equalityTag;
    private boolean multiStageTag;
    private Timer t = new Timer();
    private Collection<String> predicatesWithGap = null;
    private SatisfiabilityStatus satisfiable;
    private ConsistencyManager consistency = new ConsistencyManager(this);
    private boolean useUpperStores = false;

    public MyQueryReasoner() {
        setup(true, true);
    }

    public MyQueryReasoner(boolean multiStageTag, boolean considerEqualities) {
        setup(multiStageTag, considerEqualities);
    }

    public void setup(boolean multiStageTag, boolean considerEqualities) {
        if(isDisposed()) throw new DisposedException();
        satisfiable = SatisfiabilityStatus.UNCHECKED;
        this.multiStageTag = multiStageTag;
        this.equalityTag = considerEqualities;

        rlLowerStore = new BasicQueryEngine("rl-lower-bound");
        elLowerStore = new KarmaQueryEngine("elho-lower-bound");

        trackingStore = getUpperStore("tracking", false);
    }

    @Override
    public void loadOntology(OWLOntology o) {
        if(isDisposed()) throw new DisposedException();
        if(!equalityTag) {
            EqualitiesEliminator eliminator = new EqualitiesEliminator(o);
            o = eliminator.getOutputOntology();
            eliminator.save();
        }

        ontology = o;
        program = new DatalogProgram(ontology, properties.getToClassify());
//		program.getLower().save();
//		program.getUpper().save();
//		program.getGeneral().save();

        useUpperStores = multiStageTag && !program.getGeneral().isHorn();
        if(useUpperStores) {
            lazyUpperStore = getUpperStore("lazy-upper-bound", true);
            limitedSkolemUpperStore = new MultiStageQueryEngine("limited-skolem-upper-bound", true);
        }

        importData(program.getAdditionalDataFile());

        elho_ontology = new ELHOProfile().getFragment(ontology);
        elLowerStore.processOntology(elho_ontology);
    }

    public Collection<String> getPredicatesWithGap() {
        if(isDisposed()) throw new DisposedException();
        return predicatesWithGap;
    }

    @Override
    public boolean preprocess() {
        if(isDisposed()) throw new DisposedException();
        t.reset();
        Utility.logInfo("Preprocessing... checking satisfiability... ");

        String name = "data", datafile = importedData.toString();
        rlLowerStore.importRDFData(name, datafile);
        rlLowerStore.materialise("lower program", program.getLower().toString());
//		program.getLower().save();
        if(!consistency.checkRLLowerBound()) return false;
        Utility.logInfo("The number of sameAs assertions in RL lower store: " + rlLowerStore.getSameAsNumber());

        String originalMarkProgram = OWLHelper.getOriginalMarkProgram(ontology);

        elLowerStore.importRDFData(name, datafile);
        elLowerStore.materialise("saturate named individuals", originalMarkProgram);
        elLowerStore.materialise("lower program", program.getLower().toString());
        elLowerStore.initialiseKarma();
        if(!consistency.checkELLowerBound()) return false;

        if(lazyUpperStore != null) {
            lazyUpperStore.importRDFData(name, datafile);
            lazyUpperStore.materialise("saturate named individuals", originalMarkProgram);
            int tag = lazyUpperStore.materialiseRestrictedly(program, null);
            if(tag != 1) {
                lazyUpperStore.dispose();
                lazyUpperStore = null;
            }
            if(tag == -1) return false;
        }
        if(consistency.checkUpper(lazyUpperStore)) {
            satisfiable = SatisfiabilityStatus.SATISFIABLE;
            Utility.logInfo("time for satisfiability checking: " + t.duration());
        }

        if(limitedSkolemUpperStore != null) {
            limitedSkolemUpperStore.importRDFData(name, datafile);
            limitedSkolemUpperStore.materialise("saturate named individuals", originalMarkProgram);
            int tag = limitedSkolemUpperStore.materialiseSkolemly(program, null);
            if(tag != 1) {
                limitedSkolemUpperStore.dispose();
                limitedSkolemUpperStore = null;
            }
            if(tag == -1) return false;
        }
        if(satisfiable == SatisfiabilityStatus.UNCHECKED && consistency.checkUpper(limitedSkolemUpperStore)) {
            satisfiable = SatisfiabilityStatus.SATISFIABLE;
            Utility.logInfo("time for satisfiability checking: " + t.duration());
        }

        trackingStore.importRDFData(name, datafile);
        trackingStore.materialise("saturate named individuals", originalMarkProgram);

//		materialiseFullUpper();
//		GapByStore4ID gap = new GapByStore4ID(trackingStore);
        GapByStore4ID gap = new GapByStore4ID2(trackingStore, rlLowerStore);
        trackingStore.materialiseFoldedly(program, gap);
        predicatesWithGap = gap.getPredicatesWithGap();
        gap.clear();

        if(program.getGeneral().isHorn())
            encoder = new TrackingRuleEncoderWithGap(program.getUpper(), trackingStore);
        else
            encoder = new TrackingRuleEncoderDisjVar1(program.getUpper(), trackingStore);
//			encoder = new TrackingRuleEncoderDisj1(program.getUpper(), trackingStore);
//			encoder = new TrackingRuleEncoderDisjVar2(program.getUpper(), trackingStore);
//			encoder = new TrackingRuleEncoderDisj2(program.getUpper(), trackingStore);

        if(!isConsistent())
            return false;

        consistency.extractBottomFragment();
        consistency.dispose();

        program.dispose();

        return true;
    }

    @Override
    public boolean isConsistent() {
        if(isDisposed()) throw new DisposedException();
        if(satisfiable == SatisfiabilityStatus.UNCHECKED) {
            satisfiable = consistency.check() ? SatisfiabilityStatus.SATISFIABLE : SatisfiabilityStatus.UNSATISFIABLE;
            Utility.logInfo("time for satisfiability checking: " + t.duration());
        }
        return satisfiable == SatisfiabilityStatus.SATISFIABLE;
    }

    @Override
    public void evaluate(QueryRecord queryRecord) {
        if(isDisposed()) throw new DisposedException();
        if(queryBounds(queryRecord))
            return;

        OWLOntology relevantOntologySubset = extractRelevantOntologySubset(queryRecord);

        int aBoxCount = relevantOntologySubset.getABoxAxioms(true).size();
        Utility.logInfo("Relevant ontology subset: ABox_axioms=" + aBoxCount + " TBox_axioms=" + (relevantOntologySubset
                .getAxiomCount() - aBoxCount));
//		queryRecord.saveRelevantOntology("fragment_query" + queryRecord.getQueryID() + ".owl");

        if(querySkolemisedRelevantSubset(relevantOntologySubset, queryRecord))
            return;

        Timer t = new Timer();
        Checker summarisedChecker = new HermitSummaryFilter(queryRecord, properties.getToCallHermiT());
        summarisedChecker.check(queryRecord.getGapAnswers());
        summarisedChecker.dispose();
        Utility.logDebug("Total time for full reasoner: " + t.duration());
        queryRecord.markAsProcessed();
        Utility.logDebug("Difficulty of this query: " + queryRecord.getDifficulty());
    }

    @Override
    public void evaluateUpper(QueryRecord queryRecord) {
        if(isDisposed()) throw new DisposedException();
        // TODO add new upper store
        AnswerTuples rlAnswer = null;
        boolean useFull = queryRecord.isBottom() || lazyUpperStore == null;
        try {
            rlAnswer =
                    (useFull ? trackingStore : lazyUpperStore).evaluate(queryRecord.getQueryText(), queryRecord.getAnswerVariables());
            queryRecord.updateUpperBoundAnswers(rlAnswer, true);
        } finally {
            if(rlAnswer != null) rlAnswer.dispose();
        }
    }

    @Override
    public void dispose() {
        super.dispose();

        if(encoder != null) encoder.dispose();
        if(rlLowerStore != null) rlLowerStore.dispose();
        if(lazyUpperStore != null) lazyUpperStore.dispose();
        if(elLowerStore != null) elLowerStore.dispose();
        if(trackingStore != null) trackingStore.dispose();
        if(limitedSkolemUpperStore != null) limitedSkolemUpperStore.dispose();

    }

    private BasicQueryEngine getUpperStore(String name, boolean checkValidity) {
        if(multiStageTag)
            return new MultiStageQueryEngine(name, checkValidity);
//			return new TwoStageQueryEngine(name, checkValidity);
        else
            return new BasicQueryEngine(name);
    }

    protected void internal_importDataFile(String name, String datafile) {
//		addDataFile(datafile);
        rlLowerStore.importRDFData(name, datafile);
        if(lazyUpperStore != null)
            lazyUpperStore.importRDFData(name, datafile);
        elLowerStore.importRDFData(name, datafile);
        trackingStore.importRDFData(name, datafile);
    }

    /**
     * It deals with blanks nodes differently from variables
     * according to SPARQL semantics for OWL2 Entailment Regime.
     * <p>
     * In particular variables are matched only against named individuals,
     * and blank nodes against named and anonymous individuals.
     */
    private boolean queryUpperStore(BasicQueryEngine upperStore, QueryRecord queryRecord,
                                    Tuple<String> extendedQuery, Step step) {

        if(queryRecord.hasNonAnsDistinguishedVariables())
            queryUpperBound(upperStore, queryRecord, extendedQuery.get(0), queryRecord.getAnswerVariables());
        else
            queryUpperBound(upperStore, queryRecord, queryRecord.getQueryText(), queryRecord.getAnswerVariables());

        queryRecord.addProcessingTime(step, t.duration());
        if(queryRecord.isProcessed()) {
            queryRecord.setDifficulty(step);
            return true;
        }
        return false;
    }

    /**
     * Returns the part of the ontology relevant for Hermit, while computing the bound answers.
     */
    private boolean queryBounds(QueryRecord queryRecord) {
        AnswerTuples rlAnswer = null, elAnswer = null;

        t.reset();
        try {
            rlAnswer = rlLowerStore.evaluate(queryRecord.getQueryText(), queryRecord.getAnswerVariables());
            Utility.logDebug(t.duration());
            queryRecord.updateLowerBoundAnswers(rlAnswer);
        } finally {
            if(rlAnswer != null) rlAnswer.dispose();
        }
        queryRecord.addProcessingTime(Step.LOWER_BOUND, t.duration());

        t.reset();

        Tuple<String> extendedQueryTexts = queryRecord.getExtendedQueryText();

        Utility.logDebug("Tracking store");
        if(queryUpperStore(trackingStore, queryRecord, extendedQueryTexts, Step.SIMPLE_UPPER_BOUND))
            return true;

        if(!queryRecord.isBottom()) {
            Utility.logDebug("Lazy store");
            if(lazyUpperStore != null && queryUpperStore(lazyUpperStore, queryRecord, extendedQueryTexts, Step.LAZY_UPPER_BOUND))
                return true;
//			Utility.logDebug("Skolem store");
//			if(limitedSkolemUpperStore != null && queryUpperStore(limitedSkolemUpperStore, queryRecord, extendedQueryTexts, Step.L_SKOLEM_UPPER_BOUND))
//				return null;
        }

        t.reset();
        try {
            elAnswer = elLowerStore.evaluate(extendedQueryTexts.get(0),
                                             queryRecord.getAnswerVariables(),
                                             queryRecord.getLowerBoundAnswers());
            Utility.logDebug(t.duration());
            queryRecord.updateLowerBoundAnswers(elAnswer);
        } finally {
            if(elAnswer != null) elAnswer.dispose();
        }
        queryRecord.addProcessingTime(Step.EL_LOWER_BOUND, t.duration());

        if(queryRecord.isProcessed()) {
            queryRecord.setDifficulty(Step.EL_LOWER_BOUND);
            return true;
        }

        return false;
    }

    private OWLOntology extractRelevantOntologySubset(QueryRecord queryRecord) {
        t.reset();

        QueryTracker tracker = new QueryTracker(encoder, rlLowerStore, queryRecord);
        OWLOntology relevantOntologySubset = tracker.extract(trackingStore, consistency.getQueryRecords(), true);

        queryRecord.addProcessingTime(Step.FRAGMENT, t.duration());

        return relevantOntologySubset;
    }

    private void queryUpperBound(BasicQueryEngine upperStore, QueryRecord queryRecord, String queryText, String[] answerVariables) {
        AnswerTuples rlAnswer = null;
        try {
            Utility.logDebug(queryText);
            rlAnswer = upperStore.evaluate(queryText, answerVariables);
            Utility.logDebug(t.duration());
            queryRecord.updateUpperBoundAnswers(rlAnswer);
        } finally {
            if(rlAnswer != null) rlAnswer.dispose();
        }
    }

    private boolean querySkolemisedRelevantSubset(OWLOntology relevantSubset, QueryRecord queryRecord) {
        DatalogProgram relevantProgram = new DatalogProgram(relevantSubset, false); // toClassify is false

        MultiStageQueryEngine relevantStore =
                new MultiStageQueryEngine("Relevant-store", true); // checkValidity is true
//        relevantStore.importRDFData("data", relevantProgram.getAdditionalDataFile()); // tried, doesn't work
        relevantStore.importDataFromABoxOf(relevantSubset);

        int materialisationResult = relevantStore.materialiseSkolemly(relevantProgram, null);
//        int materialisationResult = relevantStore.materialiseRestrictedly(relevantProgram, null); // DOESN'T WORK!!!
        if(materialisationResult != 1)
            throw new RuntimeException("Skolemised materialisation error"); // TODO check consistency
//        relevantStore.materialiseRestrictedly(relevantProgram, null); // it has been tried

        return queryUpperStore(relevantStore, queryRecord, queryRecord.getExtendedQueryText(), Step.L_SKOLEM_UPPER_BOUND);

//        return queryUpperStore(limitedSkolemUpperStore, queryRecord, queryRecord.getExtendedQueryText(), Step.L_SKOLEM_UPPER_BOUND);
    }

    enum SatisfiabilityStatus {SATISFIABLE, UNSATISFIABLE, UNCHECKED}

}