Exemplo n.º 1
0
        public WorkOrderTrimmed GetWorkOrder(String at, int deviceId, int workOrderId)
        {
            new AuthSvc().AuthUser(at, -1, deviceId);
            BusinessLayer.WorkOrder       wo = BusinessLayer.WorkOrder.Populate(workOrderId);
            BusinessLayer.WorkApplication wa = BusinessLayer.WorkApplication.Populate(wo.ApplicationId);


            WorkOrderTrimmed wt = new WorkOrderTrimmed();

            wt.ApplicationId     = wo.ApplicationId;
            wt.CommPackageJson   = wo.CommPackageJson;
            wt.DeviceId          = wo.DeviceId;
            wt.ReceiveTime       = wo.ReceiveTime;
            wt.SlaveWorkerId     = wo.SlaveWorkerId;
            wt.SlaveWorkerSubmit = wo.SlaveWorkerSubmit;
            wt.SlaveWorkOrderLastCommunication = wo.SlaveWorkOrderLastCommunication;
            wt.WorkOrderId               = wo.WorkOrderId;
            wt.WorkOrderResultJson       = wo.WorkOrderResultJson;
            wt.WorkOrderStatus           = wo.WorkOrderStatus;
            wt.ComputeAppIntent          = wa.ApplicationWorkIntent;
            wt.ApplicationUIResultIntent = wa.ApplicationUIResultIntent;
            wt.DeviceLocalRequestId      = wo.LocalDeviceId;
            wt.SerialisationTime         = wo.SerialisationTime;
            wt.DeserialisationTime       = wo.DeserialiationTime;

            return(wt);
        }
Exemplo n.º 2
0
        public void SubmitWorkOrderResult(string at, int workOrderId, String resultJson, DateTime compuatationStartTime, DateTime computationEndTime, decimal?resultSerialisationTime = null, decimal?requestDeserialisationTime = null)
        {
            BusinessLayer.AuthenticationToken oAt = new AuthSvc().AuthUser(at);
            BusinessLayer.WorkOrder           wo  = BusinessLayer.WorkOrder.Populate(workOrderId);

            //if (wo.SlaveWorkerId != oAt.DeviceId)
            //    throw new Exception("Cannot modify Work Order which you are not meant to be working on.");

            CloudQueues.UpdatedWorkOrderQueueClient.Send(new BrokeredMessage(new SharedClasses.WorkOrderUpdate(workOrderId, SharedClasses.WorkOrderUpdate.UpdateType.SubmitResult, oAt.DeviceId, compuatationStartTime, computationEndTime, resultJson, requestDeserialisationTime, resultSerialisationTime)));
        }
Exemplo n.º 3
0
        public void CancelWorkOrder(String at, List <int> localDeviceIdList)
        {
            BusinessLayer.AuthenticationToken oAt = new AuthSvc().AuthUser(at);

            foreach (int localDeviceId in localDeviceIdList)
            {
                BusinessLayer.WorkOrder wo = BusinessLayer.WorkOrder.PopulateLocalDeviceId(localDeviceId, oAt.DeviceId);

                CloudQueues.UpdatedWorkOrderQueueClient.Send(new BrokeredMessage(new SharedClasses.WorkOrderUpdate(wo.WorkOrderId, SharedClasses.WorkOrderUpdate.UpdateType.Cancel, oAt.DeviceId, null, null, null, null, null)));
            }
        }
Exemplo n.º 4
0
        public void MarkWorkOrderInComputation(string at, int workOrderId)
        {
            BusinessLayer.AuthenticationToken oAt = new AuthSvc().AuthUser(at);
            BusinessLayer.WorkOrder           wo  = BusinessLayer.WorkOrder.Populate(workOrderId);

            if (wo.SlaveWorkerId != oAt.DeviceId)
            {
                throw new Exception("Cannot modify Work Order which you are not meant to be working on.");
            }

            CloudQueues.UpdatedWorkOrderQueueClient.Send(new BrokeredMessage(new SharedClasses.WorkOrderUpdate(workOrderId, SharedClasses.WorkOrderUpdate.UpdateType.MarkBeingComputed, oAt.DeviceId, null, null)));
        }
Exemplo n.º 5
0
        public void AcknowledgeWorkOrder(String at, int workOrderId)
        {
            BusinessLayer.AuthenticationToken oAt = new AuthSvc().AuthUser(at);
            BusinessLayer.WorkOrder           wo  = BusinessLayer.WorkOrder.Populate(workOrderId);


            //TODO: Fix this auth issue
            //if (wo.SlaveWorkerId != oAt.DeviceId)
            //    throw new Exception("Cannot modify Work Order which you are not meant to be working on.");

            CloudQueues.UpdatedWorkOrderQueueClient.Send(new BrokeredMessage(new SharedClasses.WorkOrderUpdate(workOrderId, SharedClasses.WorkOrderUpdate.UpdateType.Acknowledge, oAt.DeviceId, null, null)));
        }
Exemplo n.º 6
0
        public BusinessLayer.WorkOrder CreateWorkOrder(String at, int deviceId, int applicationId, String paramListJson, String backgroundProcessFunction, int localDeviceWORef)
        {
            new AuthSvc().AuthUser(at, -1, deviceId);

            BusinessLayer.WorkApplication wa = BusinessLayer.WorkApplication.Populate(applicationId);
            CommPackage cp = new CommPackage();

            cp.BackgroundProcessClass    = "";
            cp.BackgroundProcessFunction = backgroundProcessFunction;
            cp.ParameterList             = CommPackage.DeserializeParamJson(paramListJson);
            cp.DeviceUIRef          = wa.ApplicationUIResultIntent;
            cp.DeviceLocalRequestId = localDeviceWORef;

            BusinessLayer.WorkOrder wo = BusinessLayer.WorkOrder.CreateWorkOrder(deviceId, applicationId, localDeviceWORef);

            cp.ComputationRequestId = wo.WorkOrderId;
            wo.CommPackageJson      = cp.SerializeJson();
            wo.Save();

            CloudQueues.NewWorkOrderQueueClient.Send(new BrokeredMessage(wo.WorkOrderId));

            return(wo);
        }