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.modeling.ui.modelBrowser2.model;
14 import java.util.List;
16 import org.eclipse.jface.viewers.ISelection;
17 import org.simantics.browsing.ui.common.node.IDeletable;
18 import org.simantics.browsing.ui.common.node.IDropTargetNode;
19 import org.simantics.db.Resource;
20 import org.simantics.db.exception.DatabaseException;
21 import org.simantics.db.layer0.variable.VariableReference;
22 import org.simantics.modeling.PropertyVariables;
23 import org.simantics.modeling.subscription.AddSubscriptionItems;
24 import org.simantics.modeling.utils.VariableReferences;
25 import org.simantics.structural.ui.modelBrowser.nodes.AbstractNode;
26 import org.simantics.ui.SimanticsUI;
27 import org.simantics.utils.ui.ErrorLogger;
28 import org.simantics.utils.ui.ISelectionUtils;
31 * @author Tuukka Lehtonen
33 public class SubscriptionNode extends AbstractNode implements IDeletable, IDropTargetNode {
35 public SubscriptionNode(Resource resource) {
40 public void drop(Object data) {
41 if (!(data instanceof ISelection))
43 final List<PropertyVariables> vars = ISelectionUtils.filterSelection((ISelection) data, PropertyVariables.class);
44 if (!vars.isEmpty()) {
45 List<VariableReference> references;
47 references = SimanticsUI.getSession().syncRequest(VariableReferences.toReferences(vars));
48 addSubscriptions(references);
49 } catch (DatabaseException e) {
50 ErrorLogger.defaultLogError(e);
53 final List<VariableReference> references = ISelectionUtils.filterSelection((ISelection) data, VariableReference.class);
54 if (!references.isEmpty()) {
55 addSubscriptions(references);
60 private void addSubscriptions(List<VariableReference> references) {
61 SimanticsUI.getSession().asyncRequest(new AddSubscriptionItems(resource, references), e -> {
63 ErrorLogger.defaultLogError(e);