]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.interop/src/org/simantics/interop/test/GraphComparator.java
Path comparison does not use Resource Comparator.
[simantics/interop.git] / org.simantics.interop / src / org / simantics / interop / test / GraphComparator.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Foster Wheeler Energia Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.interop.test;
13
14 import java.util.ArrayList;
15 import java.util.Arrays;
16 import java.util.Collection;
17 import java.util.Collections;
18 import java.util.Comparator;
19 import java.util.HashMap;
20 import java.util.HashSet;
21 import java.util.List;
22 import java.util.Map;
23 import java.util.Map.Entry;
24 import java.util.Set;
25 import java.util.Stack;
26
27 import org.simantics.databoard.Bindings;
28 import org.simantics.db.ReadGraph;
29 import org.simantics.db.Resource;
30 import org.simantics.db.Session;
31 import org.simantics.db.Statement;
32 import org.simantics.db.common.request.ReadRequest;
33 import org.simantics.db.common.utils.NameUtils;
34 import org.simantics.db.exception.DatabaseException;
35 import org.simantics.interop.test.GraphChanges.Modification;
36 import org.simantics.layer0.Layer0;
37 import org.simantics.utils.datastructures.BijectionMap;
38 import org.simantics.utils.datastructures.MapList;
39 import org.simantics.utils.datastructures.Pair;
40
41 /**
42  * Compares two subgraphs and reports differences.
43  * 
44  * Assumes that subgraphs (defined using traverse relations) are not cyclic.
45  * 
46  * Assumes that properties can be used to identify objects, if relation type is not enough.
47  * 
48  * 
49  * 
50  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
51  *
52  */
53 public class GraphComparator {
54         
55         private static final boolean DEBUG = false;
56
57         private Resource r1;
58         private Resource r2;
59         private Set<Resource> strong = new HashSet<>();       // List of relations that identify object, if subject is already identified. 
60         private List<Resource> traversed = new ArrayList<>(); // list of relations that are traversed (and tested)
61         private List<Resource> tested = new ArrayList<>();    // list of relations that are tested, but not traversed
62         private List<Resource> nonTraversed = new ArrayList<>(); // list of relations that are not traversed
63         private List<Resource> nonTested = new ArrayList<>(); // list of relations that are not tested
64         
65         private List<Statement> changes1 = new ArrayList<>();
66         private List<Statement> changes2 = new ArrayList<>();
67         private List<Modification> modifications = new ArrayList<>();
68         private Set<Statement> changes1Set = new HashSet<>();
69         private Set<Statement> changes2Set = new HashSet<>();
70         private Set<Modification> modificationsSet = new HashSet<>();
71
72         private BijectionMap<Statement, Statement> comparableStatements = new BijectionMap<>();
73         private BijectionMap<Resource, Resource> comparableResources = new BijectionMap<>();
74         
75         private Set<Resource> processedResources = new HashSet<Resource>();
76         
77         private ResourceComparator comparator;
78         
79         private Comparator<Statement> scomp = new PredicateComparator();
80         private Comparator<Resource> rcomp = new ResComparator();
81         
82         private Set<Resource> nonMatchedLeft = new HashSet<Resource>();
83         private Set<Resource> nonMatchedRight = new HashSet<Resource>();
84         
85         // runtime attributes
86         
87         private ReadGraph g;
88         private Layer0 b;
89         
90         public GraphComparator(Resource r1, Resource r2) {
91                 this.r1 = r1;
92                 this.r2 = r2;
93                 comparator = new TypeComparator();
94         }
95         
96         public GraphComparator(Resource r1, Resource r2, ResourceComparator comparator) {
97                 this.r1 = r1;
98                 this.r2 = r2;
99                 this.comparator = comparator;
100         }
101         
102         ArrayList<Statement> ss1 = new ArrayList<Statement>();
103         ArrayList<Statement> ss2 = new ArrayList<Statement>();
104         
105         
106         public Comparator<Resource> getResourceComparator() {
107                 return rcomp;
108         }
109         
110         public Comparator<Statement> getStatementComparator() {
111                 return scomp;
112         }
113         
114         public Resource getR1() {
115                 return r1;
116         }
117         
118         public Resource getR2() {
119                 return r2;
120         }
121         
122         public void addTraversed(Resource rel) {
123                 traversed.add(rel);
124         }
125         
126         public void addTraversed(Collection<Resource> rels) {
127                 traversed.addAll(rels);
128         }
129         
130         public void addNonTraversed(Resource rel) {
131                 nonTraversed.add(rel);
132         }
133         
134         public void addNonTraversed(Collection<Resource> rels) {
135                 nonTraversed.addAll(rels);
136         }
137         
138         public void addTested(Resource rel) {
139                 tested.add(rel);
140         }
141         
142         public void addTested(Collection<Resource> rels) {
143                 tested.addAll(rels);
144         }
145         
146         public void addNonTested(Resource rel) {
147                 nonTested.add(rel);
148         }
149         
150         public void addNonTested(Collection<Resource> rels) {
151                 nonTested.addAll(rels);
152         }
153         
154         public void addComparableResources(Resource r1, Resource r2) {
155                 if (DEBUG)
156                         System.out.println("Preset " + r1 + " = " + r2);
157                 comparableResources.map(r1, r2);
158         }
159         
160         public void addComparableResources(BijectionMap<Resource, Resource> matching) {
161                 if (DEBUG) {
162                         for (Entry<Resource, Resource> entry : matching.getEntries())
163                                 System.out.println("Preset " + entry.getKey() + " = " + entry.getValue());
164                 }
165                 comparableResources.addAll(matching);
166         }
167         
168         public void addStrong(Resource r) {
169                 strong.add(r);
170         }
171         
172         public void addStrong(Collection<Resource> rels) {
173                 strong.addAll(rels);
174         }
175         
176         public void addNonMatchedLeft(Resource r) {
177                 nonMatchedLeft.add(r);
178         }
179         
180         public void addNonMatchedRight(Resource r) {
181                 nonMatchedRight.add(r);
182         }
183         
184         public void test(ReadGraph g) throws DatabaseException {
185                 this.g = g;
186                 this.b = Layer0.getInstance(g);
187                 comparator.setComparator(this);
188                 comparator.initialize(g, r1, r2);
189                 
190                 Stack<Resource> objectsLeft = new Stack<Resource>();
191                 Stack<Resource> objectsRight = new Stack<Resource>();
192                 objectsLeft.push(r1);
193                 objectsRight.push(r2);
194                 
195                 Set<Statement> unreliableLeft = new HashSet<Statement>();
196                 Set<Statement> unreliableRight = new HashSet<Statement>();
197                 
198                 while (true) {
199                         if (objectsLeft.isEmpty())
200                                 break;
201                         
202                         
203                         // process compares objects that are identified and searches for more resources to process. 
204                         process(objectsLeft, objectsRight, unreliableLeft, unreliableRight);
205                         // process unreliable handles cases where unidentified statements subject and object have been identified 
206                         processUnreliable(unreliableLeft, unreliableRight);
207                         // process unreliable handles cases where unidentified resources have path of length one to identified resource
208                         processUnreliable(unreliableLeft, unreliableRight,objectsLeft,objectsRight);
209                         if (objectsLeft.isEmpty() && unreliableLeft.size() > 0 && unreliableRight.size() > 0) {
210                                 processUnreliable2(unreliableLeft, unreliableRight,objectsLeft,objectsRight);
211                         }
212                         if (objectsLeft.isEmpty() && unreliableLeft.size() > 0 && unreliableRight.size() > 0) {
213                                 // comparison is ending, but we have still unprocessed unidentified resources left.
214                                 // These cases have longer path than one to identified objects.
215                                 processUnreliableDeep(unreliableLeft, unreliableRight, objectsLeft, objectsRight);
216                         }
217                         
218                 }
219                 for (Statement s : unreliableLeft) {
220                         if (!comparableStatements.containsLeft(s))
221                                 addDeletion(s);
222                 }
223                 for (Statement s : unreliableRight) {
224                         if (!comparableStatements.containsRight(s))
225                                 addAddition(s);
226                 }
227         }
228         
229         public void test(Session session) throws DatabaseException {
230                 test(session, r1, r2);
231         }
232         
233         public void test(Session session, Resource r1, Resource r2) throws DatabaseException {
234                 
235                 comparator.setComparator(this);
236                 
237                 session.syncRequest(new ReadRequest() {
238             
239             @Override
240             public void run(ReadGraph graph) throws DatabaseException {
241                 comparator.initialize(graph, r1, r2);
242             }
243         });
244                 
245                 addComparable(r1, r2);
246                 
247                 final Stack<Resource> objectsLeft = new Stack<Resource>();
248                 final Stack<Resource> objectsRight = new Stack<Resource>();
249                 objectsLeft.push(r1);
250                 objectsRight.push(r2);
251                 
252                 final Set<Statement> unreliableLeft = new HashSet<Statement>();
253                 final Set<Statement> unreliableRight = new HashSet<Statement>();
254                 
255                 while (true) {
256                         if (objectsLeft.isEmpty())
257                                 break;
258                         session.syncRequest(new ReadRequest() {
259                                 
260                                 @Override
261                                 public void run(ReadGraph graph) throws DatabaseException {
262                                         g = graph;
263                                         b = Layer0.getInstance(graph);
264                                         // process compares objects that are identified and searches for more resources to process. 
265                                         process(objectsLeft, objectsRight, unreliableLeft, unreliableRight);
266                                         // process unreliable handles cases where unidentified statements subject and object have been identified 
267                                         processUnreliable(unreliableLeft, unreliableRight);
268                                         // process unreliable handles cases where unidentified resources have path of length one to identified resource
269                                         processUnreliable(unreliableLeft, unreliableRight,objectsLeft,objectsRight);
270                                         if (objectsLeft.isEmpty() && unreliableLeft.size() > 0 && unreliableRight.size() > 0) {
271                                                 processUnreliable2(unreliableLeft, unreliableRight,objectsLeft,objectsRight);
272                                         }
273                                         if (objectsLeft.isEmpty() && unreliableLeft.size() > 0 && unreliableRight.size() > 0) {
274                                                 // comparison is ending, but we have still unprocessed unidentified resources left.
275                                                 // These cases have longer path than one to identified objects.
276                                                 processUnreliableDeep(unreliableLeft, unreliableRight, objectsLeft, objectsRight);
277                                         }
278                                         if (objectsLeft.isEmpty() && unreliableLeft.size() > 0 && unreliableRight.size() > 0) {
279                                                 // comparison is ending, but we have still unprocessed unidentified resources left.
280                                                 // These cases have longer path than one to identified objects.
281                                                 processUnreliableDeep(unreliableLeft, unreliableRight, objectsLeft, objectsRight);
282                                         }
283                                 }
284                         });
285                         
286                         
287                         
288                 }
289                 for (Statement s : unreliableLeft) {
290                         if (!comparableStatements.containsLeft(s))
291                                 addDeletion(s);
292                 }
293                 for (Statement s : unreliableRight) {
294                         if (!comparableStatements.containsRight(s))
295                                 addAddition(s);
296                 }
297                 
298                 
299         }
300         
301         private void process(Stack<Resource> objectsLeft, Stack<Resource> objectsRight, Set<Statement> unreliableLeft, Set<Statement> unreliableRight) throws DatabaseException {
302                 List<Statement> ss1 = new ArrayList<Statement>();
303                 List<Statement> ss2 = new ArrayList<Statement>();
304                 
305                 while (!objectsLeft.isEmpty()) {
306                         Resource r1 = objectsLeft.pop();
307                         Resource r2 = objectsRight.pop();
308                         
309                         if (r1.equals(r2))
310                                 continue;
311                         if (processedResources.contains(r1))
312                                 continue;
313                         processedResources.add(r1);
314                         
315                 
316                         if((comparableResources.containsLeft(r1)||comparableResources.containsRight(r2)) && !comparableResources.contains(r1, r2)) {
317                                 throw new DatabaseException("Comparator error: Trying to map " + r1 + " to " + r2 + " while mappings " + r1 + " to " + comparableResources.getRight(r1) + " and " + comparableResources.getLeft(r2) + " to " + r2 + " exist.");
318                         }
319                         addComparable(r1, r2);
320                         
321                         //System.out.println("test " + NameUtils.getSafeName(g, r1) + " " + NameUtils.getSafeName(g, r2));
322                         compareProps(r1, r2);
323                         
324                         for (Resource rel : tested) {
325                                 ss1.addAll(g.getStatements(r1, rel));
326                                 ss2.addAll(g.getStatements(r2, rel));
327                                 ss1 = filterAsserted(r1, ss1);
328                                 ss2 = filterAsserted(r2, ss2);
329                                 ss1 = filterTraversed(ss1);
330                                 ss2 = filterTraversed(ss2);
331                                 ss1 = filterNonTested(ss1);
332                                 ss2 = filterNonTested(ss2);
333                                 
334                                 
335                                 compareStatements(ss1, ss2, null, null,null,null);
336                                 ss1.clear();
337                                 ss2.clear();
338                         }
339                         
340                         for (Resource rel : traversed) {
341                                 ss1.addAll(g.getStatements(r1, rel));
342                                 ss2.addAll(g.getStatements(r2, rel));
343                                 ss1 = filterAsserted(r1, ss1);
344                                 ss2 = filterAsserted(r2, ss2);
345                                 ss1 = filterNonTraversed(ss1);
346                                 ss2 = filterNonTraversed(ss2);
347                                 compareStatements(ss1, ss2, objectsLeft, objectsRight,unreliableLeft,unreliableRight);
348                                 ss1.clear();
349                                 ss2.clear();
350                                 
351                         }
352                 }
353         }
354         
355         private void processUnreliable(Set<Statement> unreliableLeft, Set<Statement> unreliableRight) throws DatabaseException {
356                 MapList<Resource,Statement> subjectLeft = new MapList<Resource, Statement>();
357                 MapList<Resource,Statement> subjectRight = new MapList<Resource, Statement>();
358                 MapList<Resource,Statement> objectLeft = new MapList<Resource, Statement>();
359                 MapList<Resource,Statement> objectRight = new MapList<Resource, Statement>();
360                 
361                 for (Statement s : unreliableLeft) {
362                         subjectLeft.add(s.getSubject(),s);
363                         objectLeft.add(s.getObject(),s);
364                 }
365                 for (Statement s : unreliableRight) {
366                         subjectRight.add(s.getSubject(),s);
367                         objectRight.add(s.getObject(),s);
368                 }
369                 
370                 for (Resource left : subjectLeft.getKeys()) {
371                         Resource right = comparableResources.getRight(left);
372                         if (right == null)
373                                 continue;
374                         for (Statement leftS : subjectLeft.getValues(left)) {
375                                 Resource leftO = leftS.getObject();
376                                 if (!unreliableLeft.contains(leftS))
377                                         continue;
378                                 Resource rightO = comparableResources.getRight(leftO);
379                                 if (rightO == null)
380                                         continue;
381                                 for (Statement rightS : subjectRight.getValues(right)) {
382                                         if (!rightS.getObject().equals(rightO))
383                                                 continue;
384                                         if (!unreliableRight.contains(rightS))
385                                                 continue;
386                                         if (leftS.getPredicate().equals(rightS.getPredicate()) ||
387                                                 comparableResources.contains(leftS.getPredicate(), rightS.getPredicate())) {
388                                                 unreliableLeft.remove(leftS);
389                                                 unreliableRight.remove(rightS);
390                                                 addComparable(leftS, rightS);
391                                         }
392                                 }
393                         }               
394                 }
395         }
396         
397         private void processUnreliable(Set<Statement> unreliableLeft, Set<Statement> unreliableRight, Stack<Resource> objectsLeft, Stack<Resource> objectsRight) throws DatabaseException {
398                 MapList<Resource,Statement> subjectLeft = new MapList<Resource, Statement>();
399                 MapList<Resource,Statement> subjectRight = new MapList<Resource, Statement>();
400                 MapList<Resource,Statement> objectLeft = new MapList<Resource, Statement>();
401                 MapList<Resource,Statement> objectRight = new MapList<Resource, Statement>();
402                 
403                 for (Statement s : unreliableLeft) {
404                         subjectLeft.add(s.getSubject(),s);
405                         objectLeft.add(s.getObject(),s);
406                 }
407                 for (Statement s : unreliableRight) {
408                         subjectRight.add(s.getSubject(),s);
409                         objectRight.add(s.getObject(),s);
410                 }
411                 
412                 for (Resource ol : objectLeft.getKeys()) {
413                         // all statements to the left side object
414                         List<Statement> left = objectLeft.getValues(ol);
415                         // all subjects that have statements to the left side object (ol)
416                         Set<Resource> sLeft = new HashSet<Resource>();
417                         // all matching subjects on the right side
418                         Set<Resource> sRight = new HashSet<Resource>();
419                         for (Statement s : left) {
420                                 sLeft.add(s.getSubject());
421                                 sRight.add(comparableResources.getRight(s.getSubject()));
422                         }
423                         
424                         // check if object left can be reliably identified by available statements
425                         // if there are any objects on the left side with similar statements, object left cannot be mapped.
426                         boolean hasSimilar = false;
427                         MapList<Resource, Statement> comparableOLeft = new MapList<Resource, Statement>();
428                         for (Resource sl : sLeft) {
429                                 for (Statement s : subjectLeft.getValues(sl)) {
430                                         if (!s.getObject().equals(ol)) {
431                                                 comparableOLeft.add(s.getObject(),s);
432                                         }
433                                 }
434                         }
435                         
436                         compareStatements(ss1, ss2, objectsLeft, objectsRight,unreliableLeft,unreliableRight);
437                         
438                         for (Resource similarOl : comparableOLeft.getKeys()) {
439                                 List<Statement> similarLeft = comparableOLeft.getValues(similarOl);
440                                 if (similarLeft.size() == left.size()) {
441                                         boolean useL[] = new boolean[left.size()];
442                                         boolean useSL[] = new boolean[left.size()];
443                                         for (int i = 0; i < left.size(); i++) {
444                                                 useL[i] = false;
445                                                 useSL[i] = false;
446                                         }
447                                         for (int i = 0; i < left.size(); i++) {
448                                                 for (int j = 0; j < left.size(); j++) {
449                                                         if (useSL[j])
450                                                                 continue;
451                                                         // compare predicates
452                                                         Resource pl = left.get(i).getPredicate();
453                                                         Resource psl = similarLeft.get(j).getPredicate();
454                                                         if (pl.equals(psl)) {
455                                                                 // compare objects (unreliable result is interpreted as positive match)
456
457                                                                 int comp = comparator.compare(g, left.get(i).getObject(), similarLeft.get(j).getObject(), true);
458                                                                 if (comp >= 0 && comp < ResourceComparator.NO_MATCH) {
459                                                                         useL[i] = true;
460                                                                         useSL[j] = true;
461                                                                         break;
462                                                                 }
463                                                         }
464                                                 }
465                                         }
466                                         boolean diff = false;
467                                         for (int i = 0; i < left.size(); i++) {
468                                                 if (!useL[i] || !useSL[i]) {
469                                                         diff = true;
470                                                 }
471                                         }
472                                         if (!diff) {
473                                                 hasSimilar = true;
474                                                 break;
475                                         }
476                                 }
477                         }
478                         
479                         if (hasSimilar)
480                                 continue;
481                                 
482                         
483                         // all objects that subjects on the right side point to. Object left has its matching resource among these, if it has matching resource
484                         MapList<Resource,Statement> possibleOR = new MapList<Resource, Statement>();
485                         for (Resource sr : sRight) {
486                                 for (Statement s : subjectRight.getValues(sr))
487                                         possibleOR.add(s.getObject(),s);
488                         }
489                         
490                         // filter possible right side objects to those that have same amount of statements as the left side object
491                         for (Resource or : possibleOR.getKeys().toArray(new Resource[possibleOR.getKeys().size()])) {
492                                 List<Statement> right = possibleOR.getValues(or);
493                                 if (right.size() != left.size())
494                                         possibleOR.remove(or);
495                                         
496                         }
497                         
498                         // check for matching statements (comparable subjects, matching predicates)
499                         MapList<Resource,Statement> matchingOR = new MapList<Resource, Statement>(); // list of objects that have matching statements
500                         Map<Resource,Pair<int[], int[]>> matchingStatements = new HashMap<Resource, Pair<int[], int[]>>(); // matching statements
501                         for (Resource or : possibleOR.getKeys()) {
502                                 List<Statement> right = possibleOR.getValues(or);
503                                 int iLeft[] = new int[left.size()];
504                                 int iRight[] = new int[right.size()];
505                                 
506                                 for (int i = 0; i < left.size(); i++) {
507                                         iLeft[i] = -1;
508                                         iRight[i] = -1;
509                                 }
510                                 
511                                 for (int l = 0; l < left.size(); l++) {
512                                         Statement ls = left.get(l);
513                                         for (int r = 0; r < right.size(); r++) {
514                                                 if (iRight[r] >= 0)
515                                                         continue;
516                                                 Statement rs = right.get(r);
517                                                 if (!comparableResources.contains(ls.getSubject(), rs.getSubject()))
518                                                         continue;
519                                                 if (rcomp.compare(ls.getPredicate(),rs.getPredicate()) == 0) {
520                                                         // compare objects (unreliable result is not accepted)
521                                                         int comp = comparator.compare(g, ls.getObject(), rs.getObject());
522                                                         if (comp > 0 && comp < Integer.MAX_VALUE) {
523                                                                 iLeft[l] = r;
524                                                                 iRight[r] = l;
525                                                                 break;
526                                                         }
527                                                         break;
528                                                 }
529                                         }
530                                         
531                                 }
532                                 boolean success = true;
533                                 for (int i = 0; i < left.size(); i++) {
534                                         if (iLeft[i] < 0) {
535                                                 success = false;
536                                                 break;
537                                         }
538                                         if (iRight[i] < 0) {
539                                                 success = false;
540                                                 break;
541                                         }
542                                                 
543                                 }
544                                 if (success) {
545                                         for (Statement s : right) 
546                                                 matchingOR.add(or,s);
547                                         matchingStatements.put(or, new Pair<int[], int[]>(iLeft, iRight));
548                                 }
549                         }
550                         // if there is only one matching right side object, we have found a match 
551                         if (matchingOR.getKeySize() == 1) {
552                                 Resource or = matchingOR.getKeys().iterator().next();
553                                 List<Statement> right = matchingOR.getValues(or);
554                                 Pair<int[], int[]> indices = matchingStatements.get(or);
555                                 
556                                 objectsLeft.add(ol);
557                                 objectsRight.add(or);
558                                 addComparable(ol, or);
559                                 for (int l = 0; l < left.size(); l++) {
560                                         int r = indices.first[l];
561                                         Statement sl = left.get(l);
562                                         Statement sr = right.get(r);
563                                         addComparable(sl, sr);
564                                         unreliableLeft.remove(sl);
565                                         unreliableRight.remove(sr);
566                                 }
567                                 
568                         } else {
569                                 
570                         }
571
572                 }
573                 
574                 
575         }
576         
577         private void processUnreliable2(Set<Statement> unreliableLeft, Set<Statement> unreliableRight, Stack<Resource> objectsLeft, Stack<Resource> objectsRight) throws DatabaseException {
578                 MapList<Resource,Statement> subjectLeft = new MapList<Resource, Statement>();
579                 MapList<Resource,Statement> subjectRight = new MapList<Resource, Statement>();
580                 MapList<Resource,Statement> objectLeft = new MapList<Resource, Statement>();
581                 MapList<Resource,Statement> objectRight = new MapList<Resource, Statement>();
582                 
583                 for (Statement s : unreliableLeft) {
584                         subjectLeft.add(s.getSubject(),s);
585                         objectLeft.add(s.getObject(),s);
586                 }
587                 for (Statement s : unreliableRight) {
588                         subjectRight.add(s.getSubject(),s);
589                         objectRight.add(s.getObject(),s);
590                 }
591                 
592                 for (Resource ol : objectLeft.getKeys()) {
593                         // all statements to the left side object
594                         List<Statement> left = objectLeft.getValues(ol);
595                         // all subjects that have statements to the left side object (ol)
596                         Set<Resource> sLeft = new HashSet<Resource>();
597                         // all matching subjects on the right side
598                         Set<Resource> sRight = new HashSet<Resource>();
599                         for (Statement s : left) {
600                                 sLeft.add(s.getSubject());
601                                 sRight.add(comparableResources.getRight(s.getSubject()));
602                         }
603                         
604                         if (sLeft.size() == 1 && sRight.size() == 1) {
605                                 List<Statement> ss1 = new ArrayList<Statement>(subjectLeft.getValues(sLeft.iterator().next()));
606                                 List<Statement> ss2 = new ArrayList<Statement>(subjectRight.getValues(sRight.iterator().next()));
607                                 
608                                 int count = comparableStatements.size();
609                                 compareStatements(ss1, ss2, objectsLeft, objectsRight,unreliableLeft,unreliableRight);
610                                 if (comparableStatements.size() > count) {
611                                         for (Entry<Statement, Statement> entry : comparableStatements.getEntries()) {
612                                                 unreliableLeft.remove(entry.getKey());
613                                                 unreliableRight.remove(entry.getValue());
614                                         }
615                                 }
616                         }
617                 }
618         }
619         
620         private void processUnreliableDeep(Set<Statement> unreliableLeft, Set<Statement> unreliableRight, Stack<Resource> objectsLeft, Stack<Resource> objectsRight) throws DatabaseException {
621                 MapList<Resource,Statement> subjectLeft = new MapList<Resource, Statement>();
622                 MapList<Resource,Statement> subjectRight = new MapList<Resource, Statement>();
623                 MapList<Resource,Statement> objectLeft = new MapList<Resource, Statement>();
624                 MapList<Resource,Statement> objectRight = new MapList<Resource, Statement>();
625                 
626                 for (Statement s : unreliableLeft) {
627                         subjectLeft.add(s.getSubject(),s);
628                         objectLeft.add(s.getObject(),s);
629                 }
630                 for (Statement s : unreliableRight) {
631                         subjectRight.add(s.getSubject(),s);
632                         objectRight.add(s.getObject(),s);
633                 }
634                 for (Resource ol : objectLeft.getKeys()) {
635                         Set<Path> pathsLeft = new HashSet<Path>();
636                         for (Resource rel : traversed) {
637                                 pathsLeft.addAll(Path.create(g.getStatements(ol, rel)));
638                         }
639                         while (true) {
640                                 expand(pathsLeft);
641                                 if (pathsLeft.size() == 0)
642                                         break;
643                                 Collection<Path> endPaths = new ArrayList<Path>(1);
644                                 for (Path p : pathsLeft) {
645                                         if (comparableResources.containsLeft(p.getEnd())) {
646                                                 endPaths.add(p);
647                                         }
648                                 }
649                                 if (endPaths.size() > 0) {
650                                         pathsLeft.clear();
651                                         pathsLeft.addAll(endPaths);
652                                         break;
653                                 }       
654                         }
655                         if (pathsLeft.size() > 0) {
656                                 Resource sl = objectLeft.getValues(ol).get(0).getSubject();
657                                 Resource sr = comparableResources.getRight(sl);
658                                 Collection<Resource> possibleOR = new ArrayList<Resource>();
659                                 for (Statement s : subjectRight.getValues(sr)) {
660                                         possibleOR.add(s.getObject());
661                                 }
662                                 Map<Resource,Set<Path>> matchingPaths = new HashMap<Resource, Set<Path>>();
663                                 for (Resource or : possibleOR) {
664                                         Set<Path> possiblePathsRight = new HashSet<Path>();
665                                         for (Path leftPath : pathsLeft) {
666                                                 possiblePathsRight.addAll(findComparableRight(leftPath, or));
667                                         }
668                                         if (hasMatchingPaths(pathsLeft, possiblePathsRight)) {
669                                                 matchingPaths.put(or, possiblePathsRight);
670                                         }
671                                 }
672                                 if (matchingPaths.size() > 0) {
673                                         if (matchingPaths.size() == 1) {
674                                                 Resource or = matchingPaths.keySet().iterator().next();
675                                                 
676                                                 objectsLeft.add(ol);
677                                                 objectsRight.add(or);
678                                                 addComparable(ol, or);
679                                                 Collection<Statement> statementsLeft = objectLeft.getValues(ol);
680                                                 Collection<Statement> statementsRight = objectRight.getValues(or);
681                                                 unreliableLeft.removeAll(statementsLeft);
682                                                 unreliableRight.removeAll(statementsRight);
683                                                 BijectionMap<Path,Path> map = getMatchingPaths(pathsLeft, matchingPaths.get(or));
684                                                 for (Path left : map.getLeftSet()) {
685                                                         Path right = map.getRight(left);
686                                                         for (int i = 0; i < left.getLength(); i++) {
687                                                                 addComparable(left.getStatements().get(i),right.getStatements().get(i));
688                                                         }
689                                                 }
690                                         } 
691                                 }
692                         }
693                         
694                 }
695                 
696         }
697         
698         private boolean hasMatchingPaths(Set<Path> leftPaths, Set<Path> rightPaths) throws DatabaseException {
699                 if (leftPaths.size() != rightPaths.size())
700                         return false;
701                 BijectionMap<Path,Path> map = getMatchingPaths(leftPaths, rightPaths);
702                 return map.size() == leftPaths.size();
703         }
704         
705         private BijectionMap<Path,Path> getMatchingPaths(Set<Path> leftPaths, Set<Path> rightPaths) throws DatabaseException {
706                 BijectionMap<Path,Path> map = new BijectionMap<Path, Path>();
707                 for (Path leftPath : leftPaths) {
708                         for (Path rightPath : rightPaths) {
709                                 if (map.containsRight(rightPath))
710                                         continue;
711                                 if (leftPath.getLength() != rightPath.getLength())
712                                         continue;
713                                 if (comparableResources.contains(leftPath.getEnd(), rightPath.getEnd())) {
714                                         boolean match = true;
715                                         for (int i = 0; i < leftPath.getLength(); i++) {
716                                                 Statement sl = leftPath.getStatements().get(i);
717                                                 Statement sr = rightPath.getStatements().get(i);
718                                                 if (!sl.getPredicate().equals(sr.getPredicate()) && !comparableResources.contains(sl.getPredicate(), sr.getPredicate())) {
719                                                         match = false;
720                                                         break;
721                                                 }
722                                                 if ((getComparableResources().containsLeft(sl.getObject()) || getComparableResources().containsRight(sr.getObject())) && !getComparableResources().contains(sl.getObject(), sr.getObject())) {
723                                                         match = false;
724                                                         break;
725                                                 }
726                                                 if (comparator.compare(g, sl.getObject(), sr.getObject()) == ResourceComparator.NO_MATCH) {
727                                                         match = false;
728                                                         break;
729                                                 }
730                                         }
731                                         if (match) {
732                                                 map.map(leftPath, rightPath);
733                                                 break;
734                                         }
735                                 }
736                         }
737                 }
738                 return map;
739         }
740         
741         private void expand(Set<Path> paths) throws DatabaseException {
742                 Set<Path> stepPathsLeft = new HashSet<Path>();
743                 if (paths.size() == 0)
744                         return;
745                 int length = paths.iterator().next().getLength() + 1;
746                 for (Path p : paths) {
747                         for (Resource rel : traversed) {
748                                 stepPathsLeft.addAll(Path.expand(p,g.getStatements(p.getEnd(), rel)));
749                         }
750                 }
751                 paths.clear();
752                 for (Path p : stepPathsLeft) {
753                         if (p.getLength() == length)
754                                 paths.add(p);
755                 }
756         }
757         
758         private Collection<Path> findComparableRight(Path leftPath, Resource beginRight) throws DatabaseException {
759                 Set<Path> rightPaths = new HashSet<Path>();
760                 rightPaths.addAll(Path.create(g.getStatements(beginRight, getRight(leftPath.getStatements().get(0).getPredicate()))));
761                 for (int i = 1; i < leftPath.getLength(); i++) {
762                         if (rightPaths.size() == 0)
763                                 return rightPaths;
764                         Set<Path> stepPaths = new HashSet<Path>();
765                         for (Path p : rightPaths) {
766                                 stepPaths.addAll(Path.expand(p, g.getStatements(p.getEnd(), getRight(leftPath.getStatements().get(i).getPredicate()))));
767                         }
768                         rightPaths.clear();
769                         for (Path p : stepPaths)
770                                 if (p.getLength() == i+1) 
771                                         rightPaths.add(p);
772                 }
773                 return rightPaths;
774                 
775         }
776         
777         private Resource getRight(Resource r) {
778                 if (comparableResources.containsLeft(r))
779                         return comparableResources.getRight(r);
780                 return r;
781         }
782         
783
784         
785         public BijectionMap<Statement, Statement> getComparableStatements() {
786                 return comparableStatements;
787         }
788         
789         public BijectionMap<Resource, Resource> getComparableResources() {
790                 return comparableResources;
791         }
792         
793         public GraphChanges getChanges() {
794                 return new GraphChanges(r1,r2,changes1,changes2,modifications,comparableResources);
795         }
796         
797         public List<Statement> getChanges1() {
798                 return changes1;
799         }
800         
801         public List<Statement> getChanges2() {
802                 return changes2;
803         }
804         
805         private void addComparable(Statement left, Statement right) throws DatabaseException {
806                 addComparable(left.getObject(), right.getObject());
807                 comparableStatements.map(left, right);
808                 //comparableResources.map(left.getObject(), right.getObject());
809         }
810         
811         private void addComparable(Resource left, Resource right) throws DatabaseException {
812                 if(!comparableResources.contains(left, right)) {
813                         if (comparableResources.containsLeft(left)||comparableResources.containsRight(right)) {
814                                 throw new DatabaseException("Comparator error: Trying to map " + left + " to " + right + " while mappings " + left + " to " + comparableResources.getRight(left) + " and " + comparableResources.getLeft(right) + " to " + right + " exist.");
815                         } else {
816                                 if (DEBUG) System.out.println(left + " = " + right);
817                                 comparableResources.map(left, right);
818                         }
819                 }
820                 
821         }
822         
823         public List<Statement> filterAsserted(Resource r, Collection<Statement> in) throws DatabaseException {
824                 List<Statement> out = new ArrayList<Statement>();
825                 for (Statement s : in) {
826                         if (!s.isAsserted(r))
827                                 out.add(s);
828                         
829                 }
830                 return out;
831         }
832         
833         public List<Statement> filterAssertedDuplicates(Resource r, List<Statement> in) throws DatabaseException {
834                 List<Statement> out = new ArrayList<Statement>();
835                 for (int i = 0; i < in.size(); i++) {
836                         Statement s = in.get(i);
837                         if (!s.isAsserted(r))
838                                 out.add(s);
839                         else {
840                                 boolean has = false;
841                                 if (i > 0 && in.get(i-1).getPredicate().equals(s.getPredicate()))
842                                         has = true;
843                                 else if (i < in.size()-1 && in.get(i+1).getPredicate().equals(s.getPredicate()))
844                                         has = true;
845                                 if (!has)
846                                         out.add(s);
847                         }
848                         
849                 }
850                 return out;
851         }
852         
853         
854
855         private String printStatement(ReadGraph graph, Statement s) throws DatabaseException {
856                 return NameUtils.getSafeName(graph, s.getSubject()) + " " + NameUtils.getSafeName(graph, s.getPredicate()) + " " + NameUtils.getSafeName(graph, s.getObject());
857         }
858         
859         private List<Statement> filterTraversed(List<Statement> in) throws DatabaseException {
860                 return filter(traversed, in);
861         }
862         
863         private List<Statement> filterNonTested(List<Statement> in) throws DatabaseException {
864                 return filter(nonTested, in);
865         }
866         
867         private List<Statement> filterNonTraversed(List<Statement> in) throws DatabaseException {
868                 return filter(nonTraversed, in);
869         }
870         
871         private List<Statement> filter(Collection<Resource> toFilter, List<Statement> in) throws DatabaseException {
872                 if (toFilter.size() == 0)
873                         return in;
874                 List<Statement> out = new ArrayList<Statement>();
875                 for (Statement s : in) {
876                         boolean usable = true;
877                         for (Resource r : toFilter) {
878                                 if (g.isSubrelationOf(s.getPredicate(),r)) {
879                                         usable = false;
880                                         break;
881                                 }
882                         }
883                         if (usable) {
884                                 out.add(s);
885                         }
886                         
887                 }
888                 return out;
889         }
890         
891         
892         private void addDeletion(Statement s) {
893                 if (!changes1Set.contains(s)) {
894                         changes1Set.add(s);
895                         changes1.add(s);
896                 }
897         }
898         
899         private void addAddition(Statement s) {
900                 if (!changes2Set.contains(s)) {
901                         changes2Set.add(s);
902                         changes2.add(s);
903                 }
904         }
905         
906         private void addModification(Resource left, Statement leftstm, Resource right, Statement rightstm) {
907                 Modification mod = new Modification(left, right, leftstm, rightstm);
908                 if (!modificationsSet.contains(mod)) {
909                         modificationsSet.add(mod);
910                         modifications.add(mod);
911                 }
912         }
913         
914         public void sortStatement(List<Statement> list1, List<Statement> list2) {
915                 sortStatement(list1, list2, scomp);
916         }
917         
918         public void sortStatement(List<Statement> list1, List<Statement> list2, Comparator<Statement> scomp) {
919                 Collections.sort(list1,scomp);
920                 Collections.sort(list2,scomp);
921                 
922                 List<Statement> sorted1 = new ArrayList<Statement>(list1.size());
923                 List<Statement> sorted2 = new ArrayList<Statement>(list2.size());
924                 sorted1.addAll(list1);
925                 sorted2.addAll(list2);
926                 
927                 int ss1 = 0;
928                 int ss2 = 0;
929                 for (int i = 0; i < list1.size(); ) {
930                         Statement s1 = list1.get(i);
931                         int same1 = sameRel(list1, i);  
932                         for (int j = 0; j < list2.size(); j++) {
933                                 Statement s2 = list2.get(j);
934                                 if (scomp.compare(s1, s2) == 0) {
935                                         int same2 = sameRel(list2, j);
936                                         copy(sorted1,ss1,list1,i,same1);
937                                         ss1 += same1;
938                                         copy(sorted2,ss2,list2,j,same2);
939                                         ss2 += same2;
940                                         break;
941                                 }
942                         }
943                         i+= same1;
944                 }
945                 if (ss1 < sorted1.size()) {
946                         for (Statement s : list1) {
947                                 if (!sorted1.contains(s)) {
948                                         sorted1.set(ss1,s);
949                                         ss1++;
950                                 }
951                         }
952                 }
953                 if (ss2 < sorted2.size()) {
954                         for (Statement s : list2) {
955                                 if (!sorted2.contains(s)) {
956                                         sorted2.set(ss2,s);
957                                         ss2++;
958                                 }
959                         }
960                 }
961                 
962                 list1.clear();
963                 list2.clear();
964                 list1.addAll(sorted1);
965                 list2.addAll(sorted2);
966         }
967         
968         public <T> void copy(List<T> to, int toIndex, List<T> from, int fromIndex, int amount) {
969                 for (int i = 0; i <  amount; i++) {
970                         to.set(toIndex + i, from.get(fromIndex+ i));
971                 }
972         }
973         
974         public void sortResource(List<Resource> list1, List<Resource> list2) {
975                 Collections.sort(list1,rcomp);
976                 int js = 0;
977                 for (int i = 0; i < list1.size(); i++) {
978                         Resource s1 = list1.get(i);
979                         for (int j = js; j < list2.size(); j++) {
980                                 Resource s2 = list2.get(j);
981                                 if (rcomp.compare(s1, s2) == 0) {
982                                         Resource t = list2.get(js);
983                                         list2.set(js, s2);
984                                         list2.set(j, t);
985                                         break;
986                                 }
987                         }
988                         js++;
989                 }
990         }
991         
992         private void compareStatements(List<Statement> ss1, List<Statement> ss2, Stack<Resource> objectsLeft, Stack<Resource> objectsRight, Collection<Statement> unreliableLeft, Collection<Statement> unreliableRight) throws DatabaseException {
993                 sortStatement(ss1, ss2);
994                 
995                 int i1 = 0;
996                 int i2 = 0;
997                 
998                 while (true) {
999                         if (i1 >= ss1.size()) {
1000                                 if (i2 >= ss2.size()) {
1001                                         break;
1002                                 } else {
1003                                         while (i2 < ss2.size()) {
1004                                                 if (DEBUG) System.out.println("Compare Statements addition " + printStatement(g,ss2.get(i2)));
1005                                                 
1006                                                 addAddition(ss2.get(i2));
1007                                                 i2++;
1008                                         }
1009                                         break;
1010                                 }
1011                         } else if (i2 >= ss2.size()) {
1012                                 while (i1 < ss1.size()) {
1013                                         if (DEBUG) System.out.println("Compare Statements deletion " + printStatement(g,ss1.get(i1)));
1014                                         addDeletion(ss1.get(i1));
1015                                         i1++;
1016                                 }
1017                                 break;
1018                         }
1019                         int same1 = sameRel(ss1, i1);
1020                         int same2 = sameRel(ss2, i2);
1021                         int c = rcomp.compare(ss1.get(i1).getPredicate(),ss2.get(i2).getPredicate());
1022                         if (c == 0) {
1023                                 compareStatements(ss1, i1, same1, ss2, i2, same2,objectsLeft,objectsRight,unreliableLeft,unreliableRight);
1024                                 i1+=same1;
1025                                 i2+=same2;
1026                         } else if (c < 0) {
1027                                 for (int i = 0; i < same1; i++) {
1028                                         if (DEBUG) System.out.println("Compare Statements deletion " + printStatement(g,ss1.get(i+i1)));
1029                                         addDeletion(ss1.get(i+i1));
1030                                 }
1031                                 i1 += same1;
1032                         } else {
1033                                 for (int i = 0; i < same2; i++) {
1034                                         if (DEBUG) System.out.println("Compare Statements addition " + printStatement(g,ss2.get(i+i2)));
1035                                         addAddition(ss2.get(i+i2));
1036                                 }
1037                                 
1038                                 i2 += same2;
1039                         }
1040                 }
1041         }
1042         
1043
1044         
1045         private int sameRel(List<Statement> statements, int off) {
1046                 if (statements.size() <= off)
1047                         return 0;
1048                 int same = 1;
1049                 long id = statements.get(off).getPredicate().getResourceId();
1050                 for (int i = off+1; i <statements.size(); i++) {
1051                         if (statements.get(i).getPredicate().getResourceId() == id)
1052                                 same++;
1053                         else 
1054                                 break;
1055                 }
1056                 return same;
1057                 
1058         }
1059
1060         private int compareObject(Resource o1, Resource o2) throws DatabaseException {
1061                 if (o1.equals(o2))
1062                         return -1;
1063                 if (comparableResources.contains(o1, o2))
1064                         return (-1);
1065                 if (comparableResources.containsLeft(o1))
1066                         return Integer.MAX_VALUE;
1067                 if (comparableResources.containsRight(o2))
1068                         return Integer.MAX_VALUE;
1069                 if (nonMatchedLeft.contains(o1))
1070                         return Integer.MAX_VALUE;
1071                 if (nonMatchedRight.contains(o2))
1072                         return Integer.MAX_VALUE;
1073                 return comparator.compare(g, o1, o2);
1074         }
1075         
1076         private void compareStatements(List<Statement> ss1, int off1, int len1, List<Statement> ss2, int off2, int len2, Collection<Resource> objectsLeft, Collection<Resource> objectsRight, Collection<Statement> unreliableLeft, Collection<Statement> unreliableRight) throws DatabaseException {
1077                 boolean[] used1 = new boolean[len1];
1078                 for (int i = 0; i < used1.length; i++) {
1079                         used1[i] = false;
1080                 }
1081                 
1082                 boolean[] used2 = new boolean[len2];
1083                 for (int i = 0; i < used2.length; i++) {
1084                         used2[i] = false;
1085                 }
1086                 
1087                 // left, right, difference
1088                 List<List<Integer>> differences = new ArrayList<List<Integer>>();
1089                 for (int i1 = off1; i1 < off1 + len1; i1++) {
1090                         Statement s1 = ss1.get(i1);
1091                         List<Integer> diff = new ArrayList<Integer>();
1092                         for (int i2 = off2; i2 < off2 + len2; i2++) {
1093                                 Statement s2 = ss2.get(i2);
1094                                 int d = compareObject(s1.getObject(), s2.getObject());
1095                                 if (d == 0) {
1096                                         for (Resource t : strong) {
1097                                                  if (s1.getPredicate().equals(t) || g.isSubrelationOf(s1.getPredicate(), t)) {
1098                                                          d = 1;
1099                                                          break;
1100                                                  }
1101                                         }
1102                                 }
1103                                 diff.add(d);
1104                         }
1105                         differences.add(diff);
1106                 }
1107                 // difference, left
1108                 MapList<Integer, Integer> priorities = new MapList<Integer, Integer>();
1109                 for (int i = 0; i < differences.size(); i++) {
1110                         List<Integer> list = differences.get(i);
1111                         for (int j = 0; j < list.size(); j++) {
1112                                 priorities.add(list.get(j), i);
1113                         }
1114                 }
1115                 
1116                 Integer[] pris = priorities.getKeys(new Integer[]{});
1117                 Arrays.sort(pris);
1118                 
1119                 for (Integer pri : pris) {
1120                         if (pri == Integer.MAX_VALUE) {
1121
1122                         } else if (pri == 0) {
1123                                 
1124                         } else {
1125                                 List<Integer> i1s = priorities.getValues(pri);
1126                                 for (Integer i1 : i1s) {
1127                                         if (used1[i1])
1128                                                 continue;
1129                                         List<Integer> i2diff = differences.get(i1);
1130                                         for (int i2 = 0; i2 < i2diff.size(); i2++) {
1131                                                 if (i2diff.get(i2) == pri) {
1132                                                         if (used2[i2])
1133                                                                 continue;
1134                                                         used1[i1] = true;
1135                                                         used2[i2] = true;
1136                                                         Statement s1  = ss1.get(i1+off1);
1137                                                         Statement s2  = ss2.get(i2+off2);
1138                                                         
1139                                                         if (objectsLeft != null) {
1140                                                                 objectsLeft.add(s1.getObject());
1141                                                                 objectsRight.add(s2.getObject());
1142                                                         } 
1143                                                         addComparable(s1, s2);
1144                                                         break;
1145                                                 }
1146                                         }
1147                                 }
1148                         }
1149                 }
1150                 
1151                 for (Integer pri : pris) {
1152                         if (pri != 0)
1153                                 continue;
1154                         Set<Statement> s1s = new HashSet<Statement>();
1155                         Set<Statement> s2s = new HashSet<Statement>();
1156                         Set<Integer> s1i = new HashSet<Integer>();
1157                         Set<Integer> s2i = new HashSet<Integer>();
1158                         List<Integer> i1s = priorities.getValues(pri);
1159                         for (Integer i1 : i1s) {
1160                                 if (used1[i1])
1161                                         continue;
1162                                 List<Integer> i2diff = differences.get(i1);
1163                                 for (int i2 = 0; i2 < i2diff.size(); i2++) {
1164                                         if (i2diff.get(i2) == pri) {
1165                                                 if (used2[i2])
1166                                                         continue;
1167                                                 Statement s1  = ss1.get(i1+off1);
1168                                                 Statement s2  = ss2.get(i2+off2);
1169                                                 s1s.add(s1);
1170                                                 s2s.add(s2);
1171                                                 s1i.add(i1);
1172                                                 s2i.add(i2);
1173                                         }
1174                                 }
1175                         }
1176                         if (unreliableLeft != null) {
1177                                 unreliableLeft.addAll(s1s);
1178                                 unreliableRight.addAll(s2s);
1179                         }
1180                         for (Integer i : s1i)
1181                                 used1[i] = true;
1182                         for (Integer i : s2i)
1183                                 used2[i] = true;
1184
1185                 }
1186                 for (int i1 = off1; i1 < off1 + len1; i1++) {
1187                         if (!used1[i1-off1]) {
1188                                 if (DEBUG) System.out.println("Compare Object deletion " + printStatement(g,ss1.get(i1)));
1189                                 addDeletion(ss1.get(i1));
1190                         }
1191                 }
1192                 for (int i2 = off2; i2 < off2 + len2; i2++) {
1193                         if (!used2[i2-off2]) {
1194                                 if (DEBUG) System.out.println("Compare Object addition " + printStatement(g,ss2.get(i2)));
1195                                 addAddition(ss2.get(i2));
1196                         }
1197                 }
1198         }
1199         
1200         
1201         
1202         /**
1203          * compares properties, assumes functional relations
1204          * @param r1
1205          * @param r2
1206          * @throws ServiceException
1207          * @throws DoesNotContainValueException
1208          * @throws ValidationException 
1209          */
1210         private void compareProps(Resource r1, Resource r2) throws DatabaseException {
1211                 if (DEBUG) System.out.println("compareProps " + r1 + " " + NameUtils.getSafeName(g, r1) + " " + r2 + " " + NameUtils.getSafeName(g, r2));
1212                 List<Statement> ss1 = new ArrayList<Statement>();
1213                 List<Statement> ss2 = new ArrayList<Statement>();
1214                 ss1.addAll(g.getStatements(r1, b.HasProperty));
1215                 ss2.addAll(g.getStatements(r2, b.HasProperty));
1216                 ss1 = filterNonTested(ss1);
1217                 ss2 = filterNonTested(ss2);
1218                 sortStatement(ss1, ss2);
1219                 // getStatements(r1, b.HasProperty) returns both instance and asserted statements for the same property relation. 
1220                 ss1 = filterAssertedDuplicates(r1, ss1);
1221                 ss2 = filterAssertedDuplicates(r2, ss2);
1222                 
1223                 int i1 = 0; 
1224                 int i2 = 0;
1225                 
1226                 while (true) {
1227                         if (i1 >= ss1.size()) {
1228                                 if (i2 >= ss2.size())
1229                                         break;
1230                                 else {
1231                                         while (i2 < ss2.size()) {
1232                                                 Statement s = ss2.get(i2);
1233                                                 if (DEBUG) System.out.println("Compare Prop diff2 " + printStatement(g,s));
1234                                                 if (!s.isAsserted(r2))
1235                                                         addAddition(s);
1236                                                 i2++;
1237                                         }
1238                                         break;
1239                                 }
1240                         } else if (i2 >= ss2.size()) {
1241                                 while (i1 < ss1.size()) {
1242                                         Statement s = ss1.get(i1);
1243                                         if (DEBUG) System.out.println("Compare Prop diff1 " + printStatement(g,s));
1244                                         if (!s.isAsserted(r1))
1245                                                 addDeletion(s);
1246                                         i1++;
1247                                 }
1248                                 break;
1249                         }
1250                         Statement s1 = ss1.get(i1);
1251                         Statement s2 = ss2.get(i2);
1252                         if (s1.isAsserted(r1) && s2.isAsserted(r2)) {
1253                                 i1++;
1254                                 i2++;
1255                                 continue;
1256                         }
1257                         int c = scomp.compare(s1, s2);
1258                         switch (c) {
1259                                 case 0:{
1260                                         boolean b1 = g.hasValue(s1.getObject());
1261                                         boolean b2 = g.hasValue(s2.getObject());
1262                                         boolean a1 = s1.isAsserted(r1);
1263                                         boolean a2 = s2.isAsserted(r2);
1264                                         if (b1 == b2) {
1265                                                 if (b1) {
1266                                                         // Literals
1267                                                         boolean eq = compareValue(g,b,s1.getObject(), s2.getObject());
1268                                                         if (!eq) {
1269                                                                 addModification(r1,s1,r2,s2);
1270                                                                 if (!a1 && !a2)
1271                                                                         addComparable(s1, s2);
1272                                                         }
1273                                                 } else {
1274                                                         // Non literal properties.
1275                                                         int comp = comparator.compare(g, s1.getObject(), s2.getObject());
1276                                                         if (comp == ResourceComparator.NO_MATCH) {
1277                                                                 addModification(r1,s1,r2,s2);
1278                                                         } else if (comp != ResourceComparator.EXACT_MATCH) {
1279                                                                 if (!s1.getObject().equals(s1.getSubject()) && !s2.getObject().equals(s2.getSubject())) {
1280                                                                         if (!a1 && !a2) {
1281                                                                                 // compare props matches objects, so we can call that only for non asserted statements
1282                                                                                 compareProps(s1.getObject(), s2.getObject());
1283                                                                         } else if (a1 && a2) {
1284                                                                                 // TODO : compare asserted statements?
1285                                                                         } else {
1286                                                                                 addModification(r1,s1,r2,s2);
1287                                                                         }
1288                                                                 } else {
1289                                                                         addModification(r1,s1,r2,s2);
1290                                                                 }
1291                                                         } else {
1292                                                                 // Exact match, nothing to do.
1293                                                         }
1294                                                 }
1295                                         } else {
1296                                                 addModification(r1,s1,r2,s2);
1297                                         }
1298                                         i1++;
1299                                         i2++;
1300                                         break;
1301                                 }
1302                                 case -1:{
1303                                         if (DEBUG) System.out.println("Compare Prop diff1s " + printStatement(g,s1));
1304                                         // Use modification, since deletions do not support asserted statements
1305                                         addModification(r1,s1,r2,null);
1306                                         //addDeletion(s1);
1307                                         i1++;
1308                                         break;
1309                                 }
1310                                         
1311                                 case 1:{
1312                                         if (DEBUG) System.out.println("Compare Prop diff2s " + printStatement(g,s2));
1313                                         // Use modification, since additions do not support asserted statements
1314                                         addModification(r1,null,r2,s2);
1315                                         //addAddition(s2);
1316                                         i2++;
1317                                         break;
1318                                 }
1319                         }
1320
1321                 }
1322                 
1323                 ss1.clear();
1324                 ss2.clear();
1325                 
1326         }
1327         
1328         public static boolean compareValue(ReadGraph g, Layer0 b, Resource r1, Resource r2) throws DatabaseException {
1329                 Resource t1 = g.getSingleType(r1);
1330                 Resource t2 = g.getSingleType(r2);
1331                 if (!t1.equals(t2))
1332                         return false;
1333                 if (t1.equals(b.Integer)) {
1334                         int v1 = g.getValue(r1, Bindings.INTEGER);
1335                         int v2 = g.getValue(r2, Bindings.INTEGER);
1336                         return v1 == v2;
1337                 } else if (t1.equals(b.Float)) {
1338                         float v1 = g.getValue(r1, Bindings.FLOAT);
1339                         float v2 = g.getValue(r2, Bindings.FLOAT);
1340                         return v1 == v2;
1341                 } else if (t1.equals(b.Double)) {
1342                         double v1 = g.getValue(r1, Bindings.DOUBLE);
1343                         double v2 = g.getValue(r2, Bindings.DOUBLE);
1344                         return v1 == v2;
1345                 } else if (t1.equals(b.String)) {
1346                         String v1 = g.getValue(r1, Bindings.STRING);
1347                         String v2 = g.getValue(r2, Bindings.STRING);
1348                         return v1.equals(v2);
1349                 } else if (t1.equals(b.Boolean)) {
1350                         boolean v1 = g.getValue(r1, Bindings.BOOLEAN);
1351                         boolean v2 = g.getValue(r2, Bindings.BOOLEAN);
1352                         return v1 == v2;
1353                 } else if (t1.equals(b.Byte)) {
1354                         byte v1 = g.getValue(r1, Bindings.BYTE);
1355                         byte v2 = g.getValue(r2, Bindings.BYTE);
1356                         return v1 == v2;
1357                 } else if (t1.equals(b.Long)) {
1358                         long v1 = g.getValue(r1, Bindings.LONG);
1359                         long v2 = g.getValue(r2, Bindings.LONG);
1360                         return v1 == v2;
1361                 } else if (t1.equals(b.IntegerArray)) {
1362                         int[] v1 = g.getValue(r1, Bindings.INT_ARRAY);
1363                         int[] v2 = g.getValue(r2, Bindings.INT_ARRAY);
1364                         return Arrays.equals(v1,v2);
1365                 } else if (t1.equals(b.FloatArray)) {
1366                         float[] v1 = g.getValue(r1, Bindings.FLOAT_ARRAY);
1367                         float[] v2 = g.getValue(r2, Bindings.FLOAT_ARRAY);
1368                         return Arrays.equals(v1,v2);
1369                 } else if (t1.equals(b.DoubleArray)) {
1370                         double[] v1 = g.getValue(r1, Bindings.DOUBLE_ARRAY);
1371                         double[] v2 = g.getValue(r2, Bindings.DOUBLE_ARRAY);
1372                         return Arrays.equals(v1,v2);
1373                 } else if (t1.equals(b.StringArray)) {
1374                         String[] v1 = g.getValue(r1, Bindings.STRING_ARRAY);
1375                         String[] v2 = g.getValue(r2, Bindings.STRING_ARRAY);
1376                         return Arrays.equals(v1,v2);
1377                 } else if (t1.equals(b.BooleanArray)) {
1378                         boolean[] v1 = g.getValue(r1, Bindings.BOOLEAN_ARRAY);
1379                         boolean[] v2 = g.getValue(r2, Bindings.BOOLEAN_ARRAY);
1380                         return Arrays.equals(v1,v2);
1381                 } else if (t1.equals(b.ByteArray)) {
1382                         byte[] v1 = g.getValue(r1, Bindings.BYTE_ARRAY);
1383                         byte[] v2 = g.getValue(r2, Bindings.BYTE_ARRAY);
1384                         return Arrays.equals(v1,v2);
1385                 } else if (t1.equals(b.LongArray)) {
1386                         long[] v1 = g.getValue(r1, Bindings.LONG_ARRAY);
1387                         long[] v2 = g.getValue(r2, Bindings.LONG_ARRAY);
1388                         return Arrays.equals(v1,v2);
1389                 } else {
1390                         Object v1 = g.getValue(r1);
1391                         Object v2 = g.getValue(r2);
1392                         return compareValue(v1, v2);
1393                 }
1394                 
1395         }
1396         
1397         public static boolean compareValue(Object v1, Object v2) {
1398                 if (v1 instanceof Object[] && v2 instanceof Object[])
1399                         return Arrays.deepEquals((Object[])v1, (Object[])v2);
1400                 else if (v1 instanceof int[] && v2 instanceof int[]) 
1401                         return Arrays.equals((int[])v1, (int[])v2);
1402                 else if (v1 instanceof float[] && v2 instanceof float[]) 
1403                         return Arrays.equals((float[])v1, (float[])v2);
1404                 else if (v1 instanceof double[] && v2 instanceof double[]) 
1405                         return Arrays.equals((double[])v1, (double[])v2);
1406                 else if (v1 instanceof long[] && v2 instanceof long[]) 
1407                         return  Arrays.equals((long[])v1, (long[])v2);
1408                 else if (v1 instanceof byte[] && v2 instanceof byte[]) 
1409                         return Arrays.equals((byte[])v1, (byte[])v2);
1410                 else if (v1 instanceof boolean[] && v2 instanceof boolean[]) 
1411                         return Arrays.equals((boolean[])v1, (boolean[])v2);
1412                 else
1413                         return v1.equals(v2);
1414         }
1415
1416         
1417         public class PredicateComparator implements Comparator<Statement> {
1418                 @Override
1419                 public int compare(Statement o1, Statement o2) {
1420                         if (comparableResources.contains(o1.getPredicate(), o2.getPredicate()))
1421                                 return 0;
1422                         if (o1.getPredicate().getResourceId() < o2.getPredicate().getResourceId())
1423                                 return -1;
1424                         if (o1.getPredicate().getResourceId() > o2.getPredicate().getResourceId())
1425                                 return 1;
1426                         return 0;
1427                 }
1428         }
1429         
1430         public class SubjectComparator implements Comparator<Statement> {
1431                 @Override
1432                 public int compare(Statement o1, Statement o2) {
1433                         if (comparableResources.contains(o1.getSubject(), o2.getSubject()))
1434                                 return 0;
1435                         if (o1.getSubject().getResourceId() < o2.getSubject().getResourceId())
1436                                 return -1;
1437                         if (o1.getSubject().getResourceId() > o2.getSubject().getResourceId())
1438                                 return 1;
1439                         return 0;
1440                 }
1441         }
1442         
1443         public class ObjectComparator implements Comparator<Statement> {
1444                 @Override
1445                 public int compare(Statement o1, Statement o2) {
1446                         if (comparableResources.contains(o1.getObject(), o2.getObject()))
1447                                 return 0;
1448                         if (o1.getObject().getResourceId() < o2.getObject().getResourceId())
1449                                 return -1;
1450                         if (o1.getObject().getResourceId() > o2.getObject().getResourceId())
1451                                 return 1;
1452                         return 0;
1453                 }
1454         }
1455         
1456         public static class FullStatementComparator implements Comparator<Statement> {
1457                 @Override
1458                 public int compare(Statement o1, Statement o2) {
1459                         if (o1.getSubject().getResourceId() < o2.getSubject().getResourceId())
1460                                 return -1;
1461                         if (o1.getSubject().getResourceId() > o2.getSubject().getResourceId())
1462                                 return 1;
1463                         if (o1.getPredicate().getResourceId() < o2.getPredicate().getResourceId())
1464                                 return -1;
1465                         if (o1.getPredicate().getResourceId() > o2.getPredicate().getResourceId())
1466                                 return 1;
1467                         if (o1.getObject().getResourceId() < o2.getObject().getResourceId())
1468                                 return -1;
1469                         if (o1.getObject().getResourceId() > o2.getObject().getResourceId())
1470                                 return 1;
1471                         return 0;
1472                 }
1473         }
1474         
1475         public class ResComparator implements Comparator<Resource> {
1476                 @Override
1477                 public int compare(Resource o1, Resource o2) {
1478                         if (comparableResources.contains(o1, o2))
1479                                 return 0;
1480                         if (o1.getResourceId() < o2.getResourceId())
1481                                 return -1;
1482                         if (o1.getResourceId() > o2.getResourceId())
1483                                 return 1;
1484                         return 0;
1485                 }
1486         }
1487
1488 }