source: trunk/Modules/Scheduler/Scheduler.php@ 781

Last change on this file since 781 was 781, checked in by chronos, 9 years ago
  • Modified: Network configure actions now can be executed through cmd.php interface using "php cmd.php config <action>".
File size: 4.1 KB
Line 
1<?php
2
3class ModuleScheduler extends AppModule
4{
5 function __construct($System)
6 {
7 parent::__construct($System);
8 $this->Name = 'Scheduler';
9 $this->Version = '1.0';
10 $this->Creator = 'Chronos';
11 $this->License = 'GNU/GPL';
12 $this->Description = 'Allow to setup and execute planned and recurring tasks';
13 $this->Dependencies = array();
14 }
15
16 function DoStart()
17 {
18 $this->System->FormManager->RegisterClass('Scheduler', array(
19 'Title' => 'Plánovač',
20 'Table' => 'Scheduler',
21 'DefaultSortColumn' => 'ScheduledTime',
22 'Items' => array(
23 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
24 'Enabled' => array('Type' => 'Boolean', 'Caption' => 'Povoleno', 'Default' => '0'),
25 'ScheduledTime' => array('Type' => 'DateTime', 'Caption' => 'Plánovaný čas', 'Default' => ''),
26 'Action' => array('Type' => 'TSchedulerAction', 'Caption' => 'Akce', 'Default' => ''),
27 'Period' => array('Type' => 'Integer', 'Caption' => 'Opakovat po', 'Default' => '', 'Null' => true, 'Suffix' => 'sekund'),
28 'LastExecutedTime' => array('Type' => 'DateTime', 'Caption' => 'Čas posledního spuštění', 'Default' => '', 'ReadOnly' => true),
29 'Duration' => array('Type' => 'TimeDiff', 'Caption' => 'Trvání', 'Default' => '', 'ReadOnly' => true),
30 'Log' => array('Type' => 'Text', 'Caption' => 'Poslední záznam', 'Default' => '', 'ReadOnly' => true, 'NotInList' => true),
31 ),
32 ));
33 $this->System->FormManager->RegisterClass('SchedulerAction', array(
34 'Title' => 'Akce plánovače',
35 'Table' => 'SchedulerAction',
36 'DefaultSortColumn' => 'Name',
37 'ReadOnly' => true,
38 'Items' => array(
39 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => '', 'ReadOnly' => true),
40 'Class' => array('Type' => 'String', 'Caption' => 'Vykonat třídu', 'Default' => '', 'ReadOnly' => true),
41 ),
42 ));
43 $this->System->FormManager->RegisterFormType('TSchedulerAction', array(
44 'Type' => 'Reference',
45 'Table' => 'SchedulerAction',
46 'Id' => 'Id',
47 'Name' => 'Name',
48 'Filter' => '1',
49 ));
50 $this->System->RegisterCommandLine('run-scheduler', array('ModuleScheduler', 'Run'));
51 }
52
53 function DoInstall()
54 {
55 }
56
57 function DoUnInstall()
58 {
59 }
60
61 function Run($Parameters)
62 {
63 while(true)
64 {
65 $DbResult = $this->Database->query('SELECT `Scheduler`.*, `SchedulerAction`.`Class` AS `Class` FROM `Scheduler` '.
66 'LEFT JOIN `SchedulerAction` ON `SchedulerAction`.`Id` = `Scheduler`.`Action` '.
67 'WHERE (`Scheduler`.`Enabled`=1) AND ( '.
68 '(`Scheduler`.`ScheduledTime` < "'.TimeToMysqlDateTime(time()).'") OR '.
69 '(`Scheduler`.`ScheduledTime` IS NULL))');
70 while($DbRow = $DbResult->fetch_assoc())
71 {
72 echo('Executing '.$DbRow['Name']."\n");
73 $Output = '';
74 $StartTime = time();
75 if(class_exists($DbRow['Class']))
76 {
77 $Class = new $DbRow['Class']($this->System);
78 $Output = $Class->Execute();
79 echo($Output);
80 } else echo('Class '.$DbRow['Class'].' not found'."\n");
81 $StopTime = time();
82 $Duration = $StopTime - $StartTime;
83 $this->Database->update('Scheduler', 'Id='.$DbRow['Id'],
84 array('Log' => $Output, 'LastExecutedTime' => TimeToMysqlDateTime($StartTime),
85 'Duration' => $Duration));
86 if($DbRow['Period'] != '') {
87 if($DbRow['ScheduledTime'] == '') $NewScheduledTime = $StartTime + $DbRow['Period'];
88 else $NewScheduledTime = MysqlDateTimeToTime($DbRow['ScheduledTime']) + $DbRow['Period'];
89 if($NewScheduledTime < $StopTime) $NewScheduledTime = $StopTime + $DbRow['Period'];
90 $this->Database->update('Scheduler', 'Id='.$DbRow['Id'],
91 array('ScheduledTime' => TimeToMysqlDateTime($NewScheduledTime)));
92 }
93 }
94 echo('.');
95 sleep(1);
96 }
97 }
98}
99
100class SchedulerTask extends Model
101{
102 function Execute()
103 {
104 }
105}
106
107
108class ScheduleTaskTest extends SchedulerTask
109{
110 function Execute()
111 {
112 $Output = '#';
113 return($Output);
114 }
115}
Note: See TracBrowser for help on using the repository browser.