add device shares
[mTask.git] / Shares / mTaskShare.dcl
index e3fdd42..6cd08a9 100644 (file)
@@ -1,8 +1,40 @@
 definition module Shares.mTaskShare
 
-:: MTaskShare = {
-               initValue :: Int,
-               withTask :: String,
-               identifier :: Int,
-               realShare :: String
-       }
+import iTasks
+import iTasks._Framework.Serialization
+import mTask
+import Devices.mTaskDevice
+
+derive class iTask MTaskShare
+derive gPrint BCState
+
+:: MTaskShare =
+               {withTask  :: [String]
+               ,identifier:: Int
+               ,value     :: BCValue
+               ,humanName :: String
+               }
+
+instance == MTaskShare
+
+//Constructor
+makeShare :: String String Int BCValue -> MTaskShare
+
+//General viewing task
+manageShares :: Task [MTaskDevice]
+//manageShares :: [MTaskShare] -> Task MTaskShare
+
+updateShares :: MTaskDevice ([MTaskShare] -> [MTaskShare]) -> Task [MTaskShare]
+
+//Clean out shares when a task has been removed
+cleanSharesTask :: Int MTaskDevice -> Task [MTaskShare]
+//cleanSharesTask :: Int MTaskDevice -> Task [MTaskShare]
+//Clean out shares when a device has been removed
+
+updateShareFromPublish :: MTaskDevice Int BCValue -> Task BCValue
+//updateShare :: Int BCValue -> Task [MTaskShare]
+
+getRealShare :: MTaskDevice MTaskShare -> Shared BCValue
+//getRealShare :: MTaskDevice BCShare -> Shared BCValue
+
+//updateShare :: Int BCValue -> Task ()