1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.db.tests.api.request.misc;
14 import java.util.ArrayList;
15 import java.util.concurrent.ConcurrentSkipListSet;
17 import org.junit.Test;
18 import org.simantics.db.AsyncReadGraph;
19 import org.simantics.db.ReadGraph;
20 import org.simantics.db.Resource;
21 import org.simantics.db.Session;
22 import org.simantics.db.exception.DatabaseException;
23 import org.simantics.db.procedure.SyncSetListener;
24 import org.simantics.db.testing.base.ExistingDatabaseTest;
25 import org.simantics.layer0.Layer0;
27 public class SyncAsyncSyncTest5 extends ExistingDatabaseTest {
30 public void test() throws Exception {
32 Session session = getSession();
34 final ConcurrentSkipListSet<String> names = new ConcurrentSkipListSet<String>();
35 final ArrayList<Resource> resources = new ArrayList<Resource>();
36 final Resource root = SyncAsyncSyncUtils.createNames(session, names, resources);
38 session.syncRequest(new TestAsyncReadRequest() {
41 public void run(AsyncReadGraph graph) {
43 Layer0 b = Layer0.getInstance(graph);
44 graph.forObjectSet(root, b.ConsistsOf, new SyncSetListener<Resource>() {
47 public void add(ReadGraph graph, final Resource resource) throws DatabaseException {
49 graph.syncRequest(new TestAsyncReadRequest() {
52 public void run(AsyncReadGraph graph) throws DatabaseException {
53 Layer0 b = Layer0.getInstance(graph);
54 graph.forObjectSet(resource, b.HasName, new SyncSetListener<Resource>() {
57 public void add(ReadGraph graph, final Resource resource) throws DatabaseException {
59 names.remove(graph.getPossibleValue(resource));
64 public void exception(ReadGraph graph, Throwable throwable) throws DatabaseException {
68 public void remove(ReadGraph graph, Resource result) throws DatabaseException {
72 public boolean isDisposed() {
77 public String toString() {
78 return "Inner procedure for " + resource.getResourceId();
87 public String toString() {
88 return "Inner request for " + resource.getResourceId();
98 public void remove(ReadGraph graph, Resource result) throws DatabaseException {
102 public void exception(ReadGraph graph, Throwable t) {
106 public boolean isDisposed() {
111 public String toString() {
112 return "Outer procedure for RootLibrary";
121 assert(names.isEmpty());