]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/genericrelation/DependenciesRelation.java
Working towards multiple readers.
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / genericrelation / DependenciesRelation.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  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.layer0.genericrelation;
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.HashSet;
19 import java.util.List;
20 import java.util.Map;
21 import java.util.UUID;
22
23 import org.simantics.databoard.Bindings;
24 import org.simantics.databoard.util.ObjectUtils;
25 import org.simantics.datatypes.literal.GUID;
26 import org.simantics.db.ChangeSet;
27 import org.simantics.db.ChangeSet.StatementChange;
28 import org.simantics.db.MetadataI;
29 import org.simantics.db.ReadGraph;
30 import org.simantics.db.RequestProcessor;
31 import org.simantics.db.Resource;
32 import org.simantics.db.Session;
33 import org.simantics.db.Statement;
34 import org.simantics.db.WriteGraph;
35 import org.simantics.db.common.Indexing;
36 import org.simantics.db.common.changeset.GenericChangeListener;
37 import org.simantics.db.common.request.IndexRoot;
38 import org.simantics.db.common.request.ReadRequest;
39 import org.simantics.db.common.request.SuperTypeString;
40 import org.simantics.db.common.request.TypeString;
41 import org.simantics.db.common.request.UnaryRead;
42 import org.simantics.db.common.utils.NameUtils;
43 import org.simantics.db.event.ChangeListener;
44 import org.simantics.db.exception.DatabaseException;
45 import org.simantics.db.exception.NoSingleResultException;
46 import org.simantics.db.layer0.adapter.GenericRelation;
47 import org.simantics.db.layer0.adapter.GenericRelationIndex;
48 import org.simantics.db.layer0.genericrelation.DependencyChanges.Change;
49 import org.simantics.db.layer0.genericrelation.DependencyChanges.ComponentAddition;
50 import org.simantics.db.layer0.genericrelation.DependencyChanges.ComponentModification;
51 import org.simantics.db.layer0.genericrelation.DependencyChanges.ComponentRemoval;
52 import org.simantics.db.layer0.genericrelation.DependencyChanges.LinkChange;
53 import org.simantics.db.procedure.SyncContextMultiProcedure;
54 import org.simantics.db.procedure.SyncContextProcedure;
55 import org.simantics.db.service.CollectionSupport;
56 import org.simantics.db.service.DirectQuerySupport;
57 import org.simantics.db.service.GraphChangeListenerSupport;
58 import org.simantics.db.service.ManagementSupport;
59 import org.simantics.db.service.SerialisationSupport;
60 import org.simantics.layer0.Layer0;
61 import org.simantics.operation.Layer0X;
62 import org.simantics.utils.datastructures.Pair;
63 import org.simantics.utils.logging.TimeLogger;
64 import org.slf4j.LoggerFactory;
65
66 public class DependenciesRelation extends UnsupportedRelation implements GenericRelationIndex {
67
68     private static final org.slf4j.Logger LOGGER = LoggerFactory.getLogger(DependenciesRelation.class);
69         private static final boolean DEBUG = false;
70         static final boolean DEBUG_LISTENERS = false;
71         private static final boolean PROFILE = false;
72
73         @SuppressWarnings("unchecked")
74         private final static Pair<String, String>[] fields = new Pair[] {
75                 Pair.make(Dependencies.FIELD_MODEL, "Long"),
76                 Pair.make(Dependencies.FIELD_PARENT, "Long"),
77                 Pair.make(Dependencies.FIELD_RESOURCE, "Long"),
78                 Pair.make(Dependencies.FIELD_NAME, "String"),
79                 Pair.make(Dependencies.FIELD_TYPES, "Text"),
80                 Pair.make(Dependencies.FIELD_GUID, "Text")
81         };
82
83         final Resource resource;
84
85         public DependenciesRelation(ReadGraph graph, Resource resource) {
86                 this.resource = resource;
87                 synchronized(this) {
88                         Session session = graph.getSession();
89                         DependenciesListenerStore store = session.peekService(DependenciesListenerStore.class);
90                         if(store == null) session.registerService(DependenciesListenerStore.class, new DependenciesListenerStore());
91                 }
92         }
93
94         class Process {
95
96                 final ArrayList<Entry> result = new ArrayList<Entry>();
97                 final SyncContextMultiProcedure<Resource, Resource> structure;
98                 final SyncContextProcedure<Entry, String> names;
99                 final SyncContextProcedure<Entry, Resource> type;
100
101                 Process(ReadGraph graph, final Resource resource) throws DatabaseException {
102
103                         final Layer0 L0 = Layer0.getInstance(graph);
104                         final DirectQuerySupport dqs = graph.getService(DirectQuerySupport.class);
105                         final CollectionSupport cs = graph.getService(CollectionSupport.class);
106
107                         names = dqs.compilePossibleRelatedValue(graph, L0.HasName, new SyncContextProcedure<Entry, String>() {
108
109                                 @Override
110                                 public void execute(ReadGraph graph, Entry entry, String name) {
111                                         entry.name = name;
112                                 }
113
114                                 @Override
115                                 public void exception(ReadGraph graph, Throwable throwable) {
116                                         LOGGER.error("Could not compile possible related value for resource {}", resource, throwable);
117                                 }
118
119                         });
120
121                         type = new SyncContextProcedure<Entry, Resource>() {
122
123                                 @Override
124                                 public void execute(ReadGraph graph, Entry entry, Resource type) {
125                                         entry.principalType = type;
126                                 }
127
128                                 @Override
129                                 public void exception(ReadGraph graph, Throwable throwable) {
130                                         LOGGER.error("Could not find type for resource {}", resource, throwable);
131                                 }
132
133                         };
134
135                         structure = dqs.compileForEachObject(graph, L0.ConsistsOf, new SyncContextMultiProcedure<Resource, Resource>() {
136
137                                 @Override
138                                 public void execute(ReadGraph graph, Resource parent, Resource child) {
139                                         // WORKAROUND: don't browse virtual child resources
140                                         if(!child.isPersistent()) return;
141                                         Entry entry = new Entry(parent, child, "", "", "");
142                                         result.add(entry);
143                                         dqs.forEachObjectCompiled(graph, child, child, structure);
144                                         dqs.forPossibleRelatedValueCompiled(graph, child, entry, names);
145                                         dqs.forPossibleDirectType(graph, child, entry, type);
146                                 }
147
148                                 @Override
149                                 public void finished(ReadGraph graph, Resource parent) {
150                                 }
151
152                                 @Override
153                                 public void exception(ReadGraph graph, Throwable throwable) {
154                                     if (throwable instanceof NoSingleResultException) {
155                                         // Ignore
156                                         if (LOGGER.isDebugEnabled())
157                                             LOGGER.debug("Could not compile for resource {}", resource, throwable);
158                                     } else {
159                                         LOGGER.error("Could not compile for resource {}", resource, throwable);
160                                     }
161                                 }
162
163                         });
164
165                         graph.syncRequest(new ReadRequest() {
166
167                                 @Override
168                                 public void run(ReadGraph graph) throws DatabaseException {
169                                         dqs.forEachObjectCompiled(graph, resource, resource, structure);
170                                 }
171
172                         });
173
174             Map<Resource, String> typeStrings = cs.createMap(String.class);
175                         for(Entry e : result) {
176                                 if(e.principalType != null) {
177                                     String typeString = typeStrings.get(e.principalType);
178                                     if(typeString == null) {
179                                         typeString = graph.syncRequest(new SuperTypeString(e.principalType));
180                                         if (typeString.isEmpty()) {
181                                             LOGGER.error("No name for type", new DatabaseException("No name for type " + NameUtils.getURIOrSafeNameInternal(graph, e.resource) + " (" + e.resource + ")"));
182                                         }
183                                         typeStrings.put(e.principalType, typeString);
184                                     }
185                                     e.types = typeString;
186                                 } else {
187                                     e.types = graph.syncRequest(new TypeString(L0, graph.getTypes(e.resource)));
188                                 }
189                                 GUID id = graph.getPossibleRelatedValue(e.resource, L0.identifier, GUID.BINDING);
190                                 if(id != null)
191                                         e.id = id.indexString();
192                                 else 
193                                         e.id = "";
194                         }
195
196                         //SessionGarbageCollection.gc(null, graph.getSession(), false, null);
197                         
198                 }
199
200         }
201
202         public ArrayList<Entry> find(ReadGraph graph, final Resource model) throws DatabaseException {
203                 return new Process(graph, model).result;
204         }
205
206         @Override
207         public GenericRelation select(String bindingPattern, Object[] constants) {
208                 checkSelectionArguments(bindingPattern, constants, new String[] { Dependencies.getBindingPattern() });
209                 final long subjectId = (Long)constants[0];
210                 return new UnsupportedRelation() {
211
212                         @Override
213                         public boolean isRealizable() {
214                                 return true;
215                         }
216
217                         @Override
218                         final public List<Object[]> realize(ReadGraph graph) throws DatabaseException {
219
220                                 long time = System.nanoTime();
221
222                 SerialisationSupport ss = graph.getService(SerialisationSupport.class);
223
224                                 Resource subject = ss.getResource(subjectId); 
225                                 
226                                 Collection<Entry> entries = find(graph, subject);
227
228                                 long time2 = System.nanoTime();
229
230                                 if (PROFILE)
231                                         System.out.println("Found " + entries.size() + " dependencies in " + 1e-6 * (time2 - time) + "ms for " + graph.getPossibleURI(subject) + ".");
232
233                                 ArrayList<Object[]> result = new ArrayList<Object[]>();
234                                 for (Entry entry : entries) {
235                                         result.add(new Object[] { ss.getRandomAccessId(entry.parent), ss.getRandomAccessId(entry.resource), entry.name, entry.types, entry.id });
236                                 }
237                                 return result;
238
239                         }
240
241                 };
242         }
243
244         @Override
245         public Pair<String, String>[] getFields() {
246                 return fields;
247         }
248
249         @Override
250         public List<Map<String, Object>> query(RequestProcessor session, String search, String bindingPattern, Object[] constants, int maxResultCount) {
251                 if(!Dependencies.getBindingPattern().equals(bindingPattern)) throw new IllegalArgumentException("DependenciesRelation supports indexing only with 'bfffff'");
252                 IndexedRelations indexer = session.getService(IndexedRelations.class);
253                 return indexer.query(null, search, session, resource, (Resource)constants[0], maxResultCount);
254         }
255         
256         @Override
257         public List<Resource> queryResources(RequestProcessor session, String search, String bindingPattern, Object[] constants, int maxResultCount) {
258                 if(!Dependencies.getBindingPattern().equals(bindingPattern)) throw new IllegalArgumentException("DependenciesRelation supports indexing only with 'bfffff'");
259                 IndexedRelations indexer = session.getService(IndexedRelations.class);
260                 return indexer.queryResources(null, search, session, resource, (Resource)constants[0], maxResultCount);
261         }
262
263         @Override
264         public List<Map<String, Object>> list(RequestProcessor session, String bindingPattern, Object[] constants, int maxResultCount) {
265                 if(!Dependencies.getBindingPattern().equals(bindingPattern)) throw new IllegalArgumentException("DependenciesRelation supports indexing only with 'bfffff'");
266                 IndexedRelations indexer = session.getService(IndexedRelations.class);
267                 return indexer.query(null, null, session, resource, (Resource)constants[0], maxResultCount);
268         }
269
270         public static class DependencyChangesRequest extends UnaryRead<ChangeSet, DependencyChanges> {
271
272                 @SuppressWarnings("unused")
273                 final private static boolean LOG = false;
274
275                 public DependencyChangesRequest(ChangeSet parameter) {
276                         super(parameter);
277                 }
278
279                 @Override
280                 public DependencyChanges perform(ReadGraph graph) throws DatabaseException {
281
282                         DependencyChangesWriter w = new DependencyChangesWriter(graph);
283                         Layer0 l0 = w.l0;
284                         Resource changeInformation = graph.getPossibleResource("http://www.simantics.org/Modeling-1.2/changeInformation/Inverse");
285
286                         for (Resource value : parameter.changedValues()) {
287                                 if(!value.isPersistent()) continue;
288                                 Statement modifiedComponent = graph.getPossibleStatement(value, l0.PropertyOf);
289                                 if (modifiedComponent == null
290                                                 || modifiedComponent.getPredicate().equals(changeInformation))
291                                         continue;
292                                 //System.err.println("+comp modi " + NameUtils.getSafeName(graph, renamedComponent, true));
293                                 w.addComponentModification(modifiedComponent.getObject());
294                         }
295                         for (Resource value : parameter.changedResources()) {
296                                 // No more info => need to check further
297                                 if(!graph.isImmutable(value))
298                                         w.addComponentModification(value);
299                         }
300                         for (StatementChange change : parameter.changedStatements()) {
301                                 //System.err.println("-stm " + NameUtils.getSafeName(graph, change.getSubject(), true) + " " + NameUtils.getSafeName(graph, change.getPredicate(), true) + " " + NameUtils.getSafeName(graph, change.getObject(), true));
302                                 Resource subject = change.getSubject();
303                                 Resource predicate = change.getPredicate();
304                                 Resource object = change.getObject();
305                                 if(!object.isPersistent()) continue;
306                                 if (predicate.equals(l0.ConsistsOf)) {
307                                         if (change.isClaim())
308                                                 w.addComponentAddition(subject, object);
309                                         else 
310                                                 w.addComponentRemoval(subject, object);
311                                 } else if (predicate.equals(l0.IsLinkedTo)) {
312                                         w.addLinkChange(subject);
313                                 } else /*if (graph.isSubrelationOf(predicate, l0.DependsOn))*/ {
314                                         //System.err.println("-modi " + NameUtils.getSafeName(graph, subject, true));
315                                         w.addComponentModification(subject);
316                                 } 
317                         }
318                         return w.getResult();
319                 }
320
321         };
322
323         private static int trackers = 0;
324         
325         private static ChangeListener listener;
326
327         public static void assertFinishedTracking() {
328             if(trackers != 0) throw new IllegalStateException("Trackers should be 0 (was " + trackers + ")");
329         }
330         
331         @Override
332         public synchronized void untrack(RequestProcessor processor, final Resource model) {
333
334             trackers--;
335             
336             if(trackers < 0) throw new IllegalStateException("Dependency tracking reference count is broken");
337             
338             if(trackers == 0) {
339                 
340                 if(listener == null) throw new IllegalStateException("Dependency tracking was not active");
341             
342                 GraphChangeListenerSupport changeSupport = processor.getService(GraphChangeListenerSupport.class);
343                 changeSupport.removeMetadataListener(listener);
344                 listener = null;
345                         
346             }
347             
348         }
349
350         @Override
351         public synchronized void trackAndIndex(RequestProcessor processor, Resource model__) {
352
353             if(trackers == 0) {
354
355                 if(listener != null) throw new IllegalStateException("Dependency tracking was active");
356
357                 listener = new GenericChangeListener<DependencyChangesRequest, DependencyChanges>() {
358
359                     @Override
360                     public boolean preEventRequest() {
361                         return !Indexing.isDependenciesIndexingDisabled();
362                     }
363
364                     @Override
365                     public void onEvent(ReadGraph graph, MetadataI metadata, DependencyChanges event) throws DatabaseException {
366
367                         TimeLogger.log(DependenciesRelation.class, "trackAndIndex.onEvent: starting index update processing");
368
369                         if(DEBUG)
370                             System.err.println("Adding metadata " + event + " in revision " + graph.getService(ManagementSupport.class).getHeadRevisionId());
371
372                         WriteGraph w = (WriteGraph)graph;
373                         if(!event.isEmpty())
374                                 w.addMetadata(event);
375
376                         final Session session = graph.getSession();
377                         final IndexedRelations indexer = session.getService(IndexedRelations.class);
378                         Layer0 L0 = Layer0.getInstance(graph);
379                         SerialisationSupport ss = graph.getService(SerialisationSupport.class);
380
381                         for(Map.Entry<Resource, Change[]>  modelEntry : event.get().entrySet()) {
382
383                             final Resource model = modelEntry.getKey();
384                             final Change[] changes = modelEntry.getValue();
385
386                             boolean linkChange = false;
387
388                             Collection<Object[]> _additions = Collections.emptyList();
389                             Collection<Object> _removals = Collections.emptyList();
390                             Collection<Object> _replacementKeys = Collections.emptyList();
391                             Collection<Object[]> _replacementObjects = Collections.emptyList();
392                             Collection<Pair<String, String>> _typeChanges = Collections.emptyList();
393
394                             if(DEBUG) System.out.println("MODEL: " + NameUtils.getSafeLabel(graph, model));
395                             //                final Change[] changes = event.get(model);
396                             if(DEBUG) System.out.println("  CHANGES: " + Arrays.toString(changes));
397                             if (changes != null) {
398                                 _additions = new ArrayList<Object[]>();
399                                 _removals = new ArrayList<Object>();
400                                 _replacementKeys = new ArrayList<Object>();
401                                 _replacementObjects = new ArrayList<Object[]>();
402                                 _typeChanges = new HashSet<Pair<String, String>>();
403
404                                 for (Change _entry : changes) {
405                                     if (_entry instanceof ComponentAddition) {
406                                         ComponentAddition entry = (ComponentAddition)_entry;
407                                         final String name = graph.getPossibleRelatedValue(entry.component, L0.HasName, Bindings.STRING);
408                                         final GUID id = graph.getPossibleRelatedValue(entry.component, L0.identifier, GUID.BINDING);
409                                         final String types = graph.syncRequest(new TypeString(L0, graph.getTypes(entry.component)));
410                                         if (name != null && types != null) {
411                                                 if(!entry.isValid(graph)) continue;
412                                             Resource parent = graph.getPossibleObject(entry.component, L0.PartOf);
413                                             if (parent != null) {
414                                                 _additions.add(new Object[] { ss.getRandomAccessId(parent), ss.getRandomAccessId(entry.component), name, types, id != null ? id.indexString() : "" });
415                                             } else {
416                                                     //System.err.println("resource " + entry.component + ": no parent for entry " + name + " " + types);
417                                             }
418                                         } else {
419                                             //System.err.println("resource " + entry.component + ": " + name + " " + types);
420                                         }
421                                     } else if(_entry instanceof ComponentModification) {
422                                         ComponentModification entry = (ComponentModification)_entry;
423                                         final String name = graph.getPossibleRelatedValue(entry.component, L0.HasName, Bindings.STRING);
424                                         final GUID id = graph.getPossibleRelatedValue(entry.component, L0.identifier, GUID.BINDING);
425                                         if(graph.isInstanceOf(entry.component, L0.Type)) {
426                                             SerialisationSupport support = session.getService(SerialisationSupport.class);
427                                             _typeChanges.add(new Pair<String, String>(name, String.valueOf(support.getRandomAccessId((Resource) entry.component))));
428                                         } else {
429                                             final String types = graph.syncRequest(new TypeString(L0, graph.getTypes(entry.component)));
430                                             if (name != null && types != null) {
431                                                 Resource part = graph.getPossibleObject(entry.component, L0.PartOf);
432                                                 if(part != null) {
433                                                     _replacementKeys.add(ss.getRandomAccessId(entry.component));
434                                                     _replacementObjects.add(new Object[] { ss.getRandomAccessId(part), 
435                                                             ss.getRandomAccessId(entry.component), name, types, id != null ? id.indexString() : "" });
436                                                 }
437                                             }
438                                         }
439                                     } else if (_entry instanceof ComponentRemoval) {
440                                         ComponentRemoval entry = (ComponentRemoval)_entry;
441                                         if(!entry.isValid(graph)) continue;
442                                         _removals.add(ss.getRandomAccessId(((ComponentRemoval)_entry).component));
443                                     } else if (_entry instanceof LinkChange) {
444                                         linkChange = true;
445                                     }
446                                 }
447                             }
448
449                             final boolean reset = linkChange || event.hasUnresolved;
450                             //System.err.println("dependencies(" + NameUtils.getSafeLabel(graph, model) + "): reset=" + reset + " linkChange=" + linkChange + " unresolved=" + event.hasUnresolved );
451
452                             if (reset || !_additions.isEmpty() || !_removals.isEmpty() || !_replacementKeys.isEmpty() || !_typeChanges.isEmpty()) {
453
454                                 TimeLogger.log(DependenciesRelation.class, "trackAndIndex.onEvent: starting index update");
455
456                                 final Collection<Object[]> additions = _additions;
457                                 final Collection<Object> removals = _removals;
458                                 final Collection<Object> replacementKeys = _replacementKeys;
459                                 final Collection<Object[]> replacementObjects = _replacementObjects; 
460                                 final boolean typeNameChanges = typeNameChanges(graph, indexer, model, _typeChanges);
461
462                             final UUID pending = Indexing.makeIndexPending();
463
464                             {
465                                 {
466                                         try {
467                                             boolean didChange = false;
468                                             // Unresolved and linkChanges are not relevant any more
469                                             boolean doReset = typeNameChanges;
470
471                                             if (doReset) {
472
473                                             if(DEBUG) {
474                                                 System.err.println("resetIndex " + reset + " " + typeNameChanges);
475                                             }
476
477                                                 indexer.removeAll(null, graph, DependenciesRelation.this, resource, model);
478                                                 didChange = true;
479
480                                             } else {
481
482                                                 if (!replacementKeys.isEmpty() && (replacementKeys.size() == replacementObjects.size())) {
483                                                     if(DEBUG) {
484                                                         System.out.println(replacementKeys.size() + " index replacements: " + replacementKeys);
485                                                     }
486                                                     didChange |= indexer.replace(null, graph, DependenciesRelation.this, resource, model, Dependencies.FIELD_RESOURCE, replacementKeys, replacementObjects);
487                                                 }
488                                                 if (!removals.isEmpty()) {
489                                                     if(DEBUG) {
490                                                         System.out.println(removals.size() + " index removals: " + removals);
491                                                     }
492                                                     indexer.remove(null, graph, DependenciesRelation.this, resource, model, Dependencies.FIELD_RESOURCE, removals);
493                                                     didChange = true;
494                                                 }
495                                                 if (!additions.isEmpty()) {
496                                                     if(DEBUG) {
497                                                         for(Object[] os : additions) System.err.println("Adding to index " + model + ": " + Arrays.toString(os));
498                                                     }
499                                                     //System.out.println(additions.size() + " index insertions");
500                                                     indexer.insert(null, graph, DependenciesRelation.this, resource, model, additions);
501                                                     didChange = true;
502                                                 }
503
504                                             }
505
506                                             if (didChange)
507                                                 // TODO: because this data is ran with
508                                                 // ThreadUtils.getBlockingWorkExecutor()
509                                                 // fireListeners needs to use peekService,
510                                                 // not getService since there is no
511                                                 // guarantee that the session isn't being
512                                                 // disposed while this method is executing.
513                                                 fireListeners(graph, model);
514
515                                         } catch (Throwable t) {
516                                             // Just to know if something unexpected happens here.
517                                             LOGGER.error("Dependencies index update failed for model "
518                                                 + model + " and relation " + resource + ".", t);
519
520                                             // NOTE: Last resort: failure to update index
521                                             // properly results in removal of the whole index.
522                                             // This is the only thing that can be done
523                                             // at this point to ensure that the index will
524                                             // return correct results in the future, through
525                                             // complete reinitialization. 
526                                             //indexer.removeAll(null, session, DependenciesRelation.this, resource, model);
527                                         } finally {
528                                             Indexing.releaseIndexPending(pending);
529                                             Indexing.clearCaches(model);
530                                         }
531                                 }
532                             }
533
534                                 TimeLogger.log(DependenciesRelation.class, "trackAndIndex.onEvent: index update done");
535                             }
536                         }
537
538                     }
539
540                 };
541
542                 GraphChangeListenerSupport changeSupport = processor.getService(GraphChangeListenerSupport.class);
543                 changeSupport.addMetadataListener(listener);
544
545             }
546
547             trackers++;
548
549         }
550
551         private boolean typeNameChanges(ReadGraph graph, IndexedRelations indexer,
552                         Resource model, final Collection<Pair<String, String>> typeChanges)
553                         throws DatabaseException {
554                 if (typeChanges.isEmpty())
555                         return false;
556
557                 for (Pair<String, String> nr : typeChanges) {
558                         String query = Dependencies.FIELD_RESOURCE + ":[" + nr.second + " TO " + nr.second + "]";
559                         //System.out.println("query: " + query);
560                         List<Map<String, Object>> results = indexer.query(null, query, graph, resource, model, Integer.MAX_VALUE);
561                         if (results.size() != 1) {
562                                 return true;
563                         } else {
564                                 Map<String, Object> result = results.get(0);
565                                 if (!ObjectUtils.objectEquals(result.get(Dependencies.FIELD_NAME), nr.first)) {
566                                         return true;
567                                 }
568                         }
569 //                      System.err.println("Type " + nr.first + " was unchanged.");
570                 }
571                 return false;
572         }
573
574         @Override
575         public void addListener(RequestProcessor processor, Resource model, Runnable observer) {
576                 DependenciesListenerStore store = processor.getSession().getService(DependenciesListenerStore.class);
577                 store.addListener(model, observer);
578         }
579
580         @Override
581         public void removeListener(RequestProcessor processor, Resource model, Runnable observer) {
582                 DependenciesListenerStore store = processor.getSession().getService(DependenciesListenerStore.class);
583                 store.removeListener(model, observer);
584         }
585
586         void fireListeners(RequestProcessor processor, Resource model) {
587                 DependenciesListenerStore store = processor.getSession().peekService(DependenciesListenerStore.class);
588                 if (store != null)
589                         store.fireListeners(model);
590         }
591
592         @Override
593         public void reset(RequestProcessor processor, Resource input) {
594                 if (DEBUG) {
595                         System.out.println("DependenciesRelation.reset: " + input);
596                         new Exception("DependenciesRelation.reset(" + listener + ")").printStackTrace(System.out);
597                 }
598                 DependenciesListenerStore store = processor.getSession().getService(DependenciesListenerStore.class);
599                 store.fireListeners(input);
600         }
601
602         public static void addSubtree(ReadGraph graph, Resource root) throws DatabaseException {
603
604                 Resource indexRoot = graph.syncRequest(new IndexRoot(root));
605                 addSubtree(graph, indexRoot, root);
606
607         }
608
609         public static void addSubtree(ReadGraph graph, Resource indexRoot, Resource subtreeRoot) throws DatabaseException {
610                 
611                 DependenciesRelation dr = new DependenciesRelation(graph, indexRoot);
612         SerialisationSupport ss = graph.getService(SerialisationSupport.class);
613
614         ArrayList<Entry> entries = dr.find(graph, subtreeRoot);
615         entries.add(new Entry(graph, subtreeRoot));
616
617                 ArrayList<Object[]> result = new ArrayList<Object[]>(entries.size());
618                 for (Entry entry : entries) {
619                         result.add(new Object[] { ss.getRandomAccessId(entry.parent), ss.getRandomAccessId(entry.resource), entry.name, entry.types, entry.id });
620                 }
621
622                 Layer0X L0X = Layer0X.getInstance(graph);
623         IndexedRelations indexer = graph.getService(IndexedRelations.class);
624         indexer.insert(null, graph, dr, L0X.DependenciesRelation, indexRoot, result);
625                 
626         }
627         
628 }