コード例 #1
0
        internal static Communicator Start(int port, ExecuteCmd executeCmd, byte[] welcomeMessage = null)
        {
            var ret = new Communicator(port, executeCmd, welcomeMessage);

            ret.Start();
            return(ret);
        }
コード例 #2
0
        private void Btn_ExecuteImport_Click(object sender, RoutedEventArgs e)
        {
            Img_Working.Visibility      = Visibility.Visible;
            Btn_ExecuteImport.IsEnabled = false;

            ExecuteCmd?.Invoke(this, new CmdExecuteArgs());
        }
コード例 #3
0
 protected virtual void OnFileChanged()
 {
     if (ExecuteOnFileChanged)
     {
         UIThread.Run(() =>
                      ExecuteCmd.ExecuteIfItCan());
     }
 }
コード例 #4
0
        public void Execute(IJobExecutionContext context)
        {
            // For installing packages
            string InstallPaclageCommand = @"""C:\Program Files\MiKTeX 2.9\miktex\bin\x64\mpm"" --admin --verbose --package-level=complete --upgrade";
            // For Updating packages
            string UpdatePaclageCommand = @"""C:\Program Files\MiKTeX 2.9\miktex\bin\x64\mpm"" --admin --verbose --package-level=complete --upgrade";

            //// Execute the command synchronously.
            ExecuteCmd exe = new ExecuteCmd();

            //exe.ExecuteCommandSync(command);

            // Execute the command asynchronously.
            exe.ExecuteCommandAsync(InstallPaclageCommand);
            exe.ExecuteCommandAsync(UpdatePaclageCommand);
        }
コード例 #5
0
        private void Btn_ExecuteExport_Click(object sender, RoutedEventArgs e)
        {
            String date;

            if (Date_DBDateBegin.SelectedDate == null)
            {
                date = "1990/01/01";
            }
            else
            {
                date = Date_DBDateBegin.SelectedDate?.ToShortDateString();
            }

            ExecuteCmd?.Invoke(this, new CmdExecuteArgs(selections,
                                                        new string[] { String.Format("'{0}'", date) },
                                                        Chk_ExportImg.IsChecked.Value,
                                                        Chk_ExportVdo.IsChecked.Value));

            Img_Working.Visibility           = Visibility.Visible;
            Btn_ExecuteExport.IsEnabled      = false;
            Btn_ResetExportSetting.IsEnabled = false;
        }
コード例 #6
0
 private Communicator(int port, ExecuteCmd executeCmd, byte[] welcomeMessage)
 {
     _executeCmd     = executeCmd;
     _welcomeMessage = welcomeMessage;
     _listener       = new TcpListener(IPAddress.Any, port);
 }
コード例 #7
0
        // 5/23/2013 6:55:24 PM

        /*
         *  Date	    {5/23/2013 12:00:00 AM}	    System.DateTime
         *  Day	        23	                        int
         *  DayOfWeek	Thursday	                System.DayOfWeek
         *  DayOfYear	143	                        int
         *  Hour	    18	                        int
         *  Kind	    Local	                    System.DateTimeKind
         *  Millisecond	553	                        int
         *  Minute	    55	                        int
         *  Month	    5	                        int
         *  Second	    24	                        int
         *  Ticks	    635049321245532856	        long
         +		TimeOfDay	{18:55:24.5532856}	        System.TimeSpan
         +      Days	            0	                int
         +      Hours	            18	                int
         +      Milliseconds	    553	                int
         +      Minutes	            55	                int
         +      Seconds	            24	                int
         +      Ticks	            681245532856	    long
         +      TotalDays	        0.7884786259907407	double
         +      TotalHours	        18.923487023777778	double
         +      TotalMilliseconds	68124553.2856	    double
         +      TotalMinutes	    1135.4092214266666	double
         +      TotalSeconds	    68124.553285599992	double
         +  Year	    2013	                    int
         */

        public MainWindow()
        {
            var isRunElevated = Convert.ToBoolean(ConfigurationManager.AppSettings.Get("isRunElevated"));

            if (isRunElevated)
            {
                ElevatePermissions();
            }

            InitializeComponent();

            if (isRunElevated)
            {
                if (!IsRunAsAdmin())
                {
                    Application.Current.Shutdown();
                }
            }

            //init lists
            ExecutedJobsDaily  = new List <Job>();
            ExecutedJobsMaster = new List <Job>();

            Globals.Current.JobsInProgress = new ObservableCollection <Job>();

            //endless loop
            int i = -1;

            while (i == -1)
            {
                // set current time per second once
                CurrentTime = DateTime.Now;

                //get jobs
                LoadXml();

                //reset executed command list per 24 hr period
                if (CurrentTime.ToLongTimeString() == DateTime.Parse("00:00:00").ToLongTimeString())
                {
                    ExecutedJobsDaily = new List <Job>();
                }

                //get commands to run and execute them
                foreach (var job in Globals.Current.Jobs)
                {
                    //get execution time
                    var jobTime = new DateTime();
                    try
                    {
                        jobTime = DateTime.Parse(job.Time);
                    }
                    catch (Exception)
                    {
                        Console.WriteLine(Properties.Resources.MainWindow_MainWindow_Job_time__0__is_in_improper_format, job.Time);
                    }

                    bool jobAlreadyExecuted = ExecutedJobsDaily.Any(theJob => (theJob.Time == job.Time) &&
                                                                    (theJob.Command == job.Command) && (theJob.CommandParams == job.CommandParams) &&
                                                                    theJob.Comment == job.Comment);

                    bool jobAlreadyListedInMaster = ExecutedJobsMaster.Any(theJob => (theJob.Time == job.Time) &&
                                                                           (theJob.Command == job.Command) && (theJob.CommandParams == job.CommandParams) &&
                                                                           theJob.Comment == job.Comment);

                    // check if command has already been executed within the current minute
                    if (jobAlreadyExecuted && (jobTime.ToShortTimeString() == CurrentTime.ToShortTimeString()))
                    {
                        continue;
                    }

                    // should we loop the job or not? - if loop is set to 0, then check to see if it's already listed in the master list
                    if (Convert.ToInt32(job.Loop) == 0 && jobAlreadyListedInMaster)
                    {
                        continue;
                    }

                    // try to execute
                    if (job.ExecuteOnTimer == 0 && CurrentTime.ToLongTimeString() == jobTime.ToLongTimeString())
                    {
                        ExecuteCmd.ExecuteCommandAsync(job.Command);

                        // add executed job to the list
                        if (!jobAlreadyExecuted)
                        {
                            ExecutedJobsDaily.Add(job);
                        }

                        //add job to a master list every day only
                        if (!jobAlreadyExecuted)
                        {
                            ExecutedJobsMaster.Add(job);
                        }
                    }
                    else if (job.ExecuteOnTimer == 1) // execute on the hour
                    {
                        //note: this logic can probably be optimized...

                        // job in progress
                        var job1 = Globals.Current.JobsInProgress.FirstOrDefault(
                            theJob => (theJob.Time == job.Time) &&
                            (theJob.Command == job.Command) &&
                            (theJob.CommandParams == job.CommandParams) &&
                            theJob.Comment == job.Comment);

                        // job from regular job queue
                        var job2 = Globals.Current.Jobs.FirstOrDefault(theJob => (theJob.Time == job.Time) &&
                                                                       (theJob.Command == job.Command) && (theJob.CommandParams == job.CommandParams) &&
                                                                       theJob.Comment == job.Comment);

                        // favor the job in progress over job queue job
                        var jobInProgress = job1 ?? job2;

                        if (jobInProgress != null)
                        {
                            if (jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer == null)
                            {
                                jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer = CurrentTime.Minute * 60 + CurrentTime.Second;
                            }

                            var currentJobTimer = jobTime.Minute * 60 + jobTime.Second;

                            if (jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer >= currentJobTimer)
                            {
                                ExecuteCmd.ExecuteCommandAsync(job.Command);
                                jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer = 0;
                            }
                            else
                            {
                                jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer++;
                            }

                            if (Globals.Current.JobsInProgress != null)
                            {
                                //update timer
                                var jobToUpdate =
                                    Globals.Current.JobsInProgress.FirstOrDefault(
                                        theJob => (theJob.Time == jobInProgress.Time) &&
                                        (theJob.Command == jobInProgress.Command) &&
                                        (theJob.CommandParams == jobInProgress.CommandParams) &&
                                        theJob.Comment == jobInProgress.Comment);

                                if (jobToUpdate != null)
                                {
                                    //update timer
                                    jobToUpdate.NonTwentyFourHourExecuteOnSecondsTimer =
                                        jobInProgress.NonTwentyFourHourExecuteOnSecondsTimer;
                                }
                                else
                                {
                                    //1st run through
                                    Globals.Current.JobsInProgress.Add(jobInProgress);
                                }
                            }
                            else
                            {
                                //this probably never gets hit
                                Globals.Current.JobsInProgress.Add(jobInProgress);
                            }
                        }
                    }
                }

                // delay 1 second
                Thread.Sleep(1000);

                LastTime = CurrentTime;
            }
        }