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.layer0.request;
14 import java.util.Collection;
17 import org.simantics.db.Resource;
18 import org.simantics.db.WriteGraph;
19 import org.simantics.db.common.utils.CommonDBUtils;
20 import org.simantics.db.exception.DatabaseException;
21 import org.simantics.layer0.Layer0;
24 * Instantiates given type using templates attached to the type.
25 * @author Hannu Niemistö
27 public class InstantiateRequest extends ApplyTemplatesRequest {
30 public InstantiateRequest(Resource type, Map<String, Object> parameters,
31 Collection<Resource> contexts) {
32 super(parameters, contexts);
36 public InstantiateRequest(Resource type, Map<String, Object> parameters) {
41 public InstantiateRequest(Resource type) {
46 public Resource perform(WriteGraph g) throws DatabaseException {
47 Layer0 b = Layer0.getInstance(g);
49 Resource parent = (Resource)parameters.get("parent");
50 if(parent != null) CommonDBUtils.selectClusterSet(g, parent);
52 // Default instantiation logic
53 Resource instance = g.newResource();
54 g.newClusterSet(instance);
55 g.claim(instance, b.InstanceOf, null, type);