]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/interestset/RecordInterestSet.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / interestset / RecordInterestSet.java
diff --git a/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/interestset/RecordInterestSet.java b/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/interestset/RecordInterestSet.java
new file mode 100644 (file)
index 0000000..7012693
--- /dev/null
@@ -0,0 +1,122 @@
+/*******************************************************************************\r
+ *  Copyright (c) 2010 Association for Decentralized Information Management in\r
+ *  Industry THTH ry.\r
+ *  All rights reserved. This program and the accompanying materials\r
+ *  are made available under the terms of the Eclipse Public License v1.0\r
+ *  which accompanies this distribution, and is available at\r
+ *  http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ *  Contributors:\r
+ *      VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.databoard.accessor.interestset;
+
+import org.simantics.databoard.annotations.Optional;\r
+import org.simantics.databoard.type.RecordType;\r
+
+/**
+ * Interest set of a Record Type.
+ *
+ * @see RecordType
+ * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
+ */
+public class RecordInterestSet extends InterestSet {
+
+       // Notifications
+       /** Interested in the _change_ to field assignments (excludes the value) */
+       public boolean notification;
+       /** Interested in the _change_ by field, null array/element if no interest */  
+       public @Optional boolean[] notifications;
+       
+       // Value Assignments
+       /** Interested in all values */ 
+       public boolean value;
+       /** Interested in values by field */
+       public @Optional boolean[] values;
+       
+       // Content
+       /** Component Interests by field, null array/element if no interest. */ 
+       public @Optional InterestSet[] componentInterests;
+       
+       public RecordInterestSet(boolean notification, boolean[] specificNotifications, boolean value, boolean[] specificValues, InterestSet[] componentInterests) {
+               this.notification = notification;
+               this.notifications = specificNotifications;
+               this.value = value;
+               this.values = specificValues;
+               this.componentInterests = componentInterests;
+       }
+       
+       /**
+        * Returns true, if interested in notifications of changes to any field assignment
+        * 
+        * @return true, if interested in notifications
+        */
+       public boolean inNotifications() {
+               return notification | value;
+       }
+
+       /**
+        * Returns true, if interested in assignment of the field at <code>fieldIndex</code>
+        * 
+        * @param fieldIndex
+        * @return true, if interested in notifications of the field at <code>fieldIndex</code>
+        */
+       public boolean inNotificationsOf(int fieldIndex) {
+               if (notification || value) return true;         
+               if (notifications != null && notifications[fieldIndex]) return true;
+               if (values != null && values[fieldIndex]) return true;
+               if (componentInterests!=null) {
+                       InterestSet compositeInterest = componentInterests[fieldIndex];
+                       return compositeInterest!=null;
+               }
+               return false;
+       }
+       
+       /**
+        * Returns true, if interested in value of all elements 
+        * 
+        * @return true, if interested in values of all elements
+        */
+       public boolean inValues() {
+               return value;
+       }
+
+       /**
+        * Returns true, if interested in the complete value of the field at
+        * <code>fieldIndex</code>.
+        * 
+        * @param fieldIndex
+        * @return true, if interested in the values of the field at <code>fieldIndex</code>
+        */
+       public boolean inValuesOf(int fieldIndex) {
+               if (value) return true;
+               if (values!=null && values[fieldIndex]) return true;
+               if (componentInterests!=null) {
+                       InterestSet compositeInterest = componentInterests[fieldIndex];
+                       return compositeInterest!=null;
+               }
+               return false;
+       }
+
+       /**
+        * Get composite intrest for the element at <code>fieldIndex</code>
+        * 
+        * @param fieldIndex
+        * @return interest of component or <code>null</code>
+        */
+       public InterestSet getComponentInterest(int fieldIndex) {
+               if (componentInterests==null) return null;
+               return componentInterests[fieldIndex];          
+       }\r
+       \r
+       /**\r
+        * Return true there is notification interest to any component\r
+        * \r
+        * @return true if there is interest in changes of components \r
+        */\r
+       public boolean inComponentNotifications() {\r
+               return (notifications!=null && notifications.length>0) || (values!=null && values.length>0) || (componentInterests!=null && componentInterests.length>0);\r
+       }
+       
+}
+