Exemple #1
0
        private void Setup()
        {
            myStorageManager = BlobManagerFactory.CreateBlobManager(myRequest.ProcessConfigConn);

            //TODO: load configuration from control // mange control worng properties
            //string jsonControl = myStorageManager.ReadTextBlob(myRequest.ButlerRequest.ControlFileUri);
            //myConfig =null;
            //try
            //{
            //    if (!string.IsNullOrEmpty(jsonControl))
            //    {
            //        //instance process configuration
            //        myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject<PremiunConfig>(jsonControl);
            //    }
            //    else
            //    {
            //        if (!string.IsNullOrEmpty(this.StepConfiguration))
            //        {
            //            //general process configuration
            //            myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject<PremiunConfig>(this.StepConfiguration);
            //        }
            //    }
            //}
            //catch (Exception)
            //{
            //    Trace.TraceWarning("PremiumEncodingStep configuration Error, it will use default");
            //}

            if (myConfig == null)
            {
                //default configuration
                myConfig = new PremiunConfig()
                {
                    AssetWorkflowID = null,
                    EncodingJobName = "Media Bulter Premium Workflow encoding job " + myRequest.ProcessInstanceId,
                    EncodigTaskName = "Media Bulter Premium Workflow encoding task" + myRequest.ProcessTypeId
                };
            }
        }
Exemple #2
0
        private void Setup()
        {
            IBlobStorageManager resource = BlobManagerFactory.CreateBlobManager(myRequest.ProcessConfigConn);
            string jsonControl           = resource.ReadTextBlob(myRequest.ButlerRequest.ControlFileUri);

            myConfig = null;
            try
            {
                if (!string.IsNullOrEmpty(jsonControl))
                {
                    //instance process configuration
                    myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject <PremiunConfig>(jsonControl);
                }
                else
                {
                    if (!string.IsNullOrEmpty(this.StepConfiguration))
                    {
                        //general process configuration
                        myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject <PremiunConfig>(this.StepConfiguration);
                    }
                }
            }
            catch (Exception)
            {
                Trace.TraceWarning("PremiumEncodingStep configuration Error, it will use default");
            }

            if (myConfig == null)
            {
                //default configuration
                myConfig = new PremiunConfig()
                {
                    AssetWorkflowID = null,
                    EncodingJobName = "Media Bulter Premium Workflow encoding job",
                    EncodigTaskName = "Media Bulter Premium Workflow encoding task"
                };
            }
        }
        private void Setup()
        {
            IBlobStorageManager resource = BlobManagerFactory.CreateBlobManager(myRequest.ProcessConfigConn);
            string jsonControl = resource.ReadTextBlob(myRequest.ButlerRequest.ControlFileUri);
            myConfig =null;
            try
            {
                if (!string.IsNullOrEmpty(jsonControl))
                {
                    //instance process configuration
                    myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject<PremiunConfig>(jsonControl);
                }
                else
                {
                    if (!string.IsNullOrEmpty(this.StepConfiguration))
                    {
                        //general process configuration
                        myConfig = Newtonsoft.Json.JsonConvert.DeserializeObject<PremiunConfig>(this.StepConfiguration);
                    }
                }
            }
            catch (Exception)
            {
                Trace.TraceWarning("PremiumEncodingStep configuration Error, it will use default");
            }

            if(myConfig==null)
            {
                //default configuration
                myConfig = new PremiunConfig()
                    {
                        AssetWorkflowID = null,
                        EncodingJobName = "Media Bulter Premium Workflow encoding job",
                        EncodigTaskName = "Media Bulter Premium Workflow encoding task"
                    };
            }
        }