Implement pre functions.
[whenjobs.git] / tools / whenjobs.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 whenjobs - A powerful but simple cron replacement
6
7 =head1 SYNOPSIS
8
9 Editing the jobs script:
10
11  whenjobs -e | --edit
12  whenjobs -l | --list
13
14 Get and set variables:
15
16  whenjobs --get variable
17  whenjobs --set variable value [--type bool|int|float|string]
18  whenjobs --variables
19
20 Start and stop the per-user daemon:
21
22  whenjobs --daemon-start
23  whenjobs --daemon-stop
24  whenjobs --daemon-status
25  whenjobs --daemon-restart
26
27 Examine running jobs:
28
29  whenjobs --jobs
30  whenjobs --cancel serial
31  whenjobs --start "name"
32
33 =head1 DESCRIPTION
34
35 Whenjobs is a powerful but simple replacement for cron.  It lets you
36 run jobs periodically like cron, but it also lets you trigger jobs to
37 run when user-defined variables are set or change value.
38
39 Periodic jobs are written like this:
40
41  every 10 minutes :
42  <<
43    # Get the current load average.
44    load=`awk '{print $1}' /proc/loadavg`
45    whenjobs --set load $load --type float
46  >>
47
48 When-statements let you create jobs that run based on variables set
49 elsewhere:
50
51  when load >= 6 :
52  <<
53    mail -s "ALERT: high load average: $load" $LOGNAME < /dev/null
54  >>
55
56 (When statements are "edge-triggered", meaning that this job will only
57 run when the load goes from under 6 to E<ge> 6).
58
59 Like L<crontab(5)>, whenjobs are controlled by a jobs file which can
60 be edited from the command line:
61
62  $ whenjobs -e
63
64 Whenjobs uses a daemon called L<whenjobsd(8)>.  Unlike crond, this
65 daemon runs as the same user.  Each user who wants to use whenjobs
66 starts their own daemon:
67
68  $ whenjobs --daemon-start
69
70 You can also have the daemon start as you when the machine boots by
71 adding the following line to a boot file such as C</etc/rc.local>.
72 Replace C<username> with your username:
73
74  su username -c /usr/sbin/whenjobsd
75
76 Variables are the key to expressing dependencies between whenjobs.
77 Variables are stored (per-user) in the daemon.  You can use the
78 command line tool to examine and set variables:
79
80  $ whenjobs --variables
81  load=0.9
82  $ whenjobs --set cat sushi
83  $ whenjobs --get cat
84  sushi
85
86 The act of setting a variable (using I<--set>) can trigger jobs to run.
87
88 =head1 OPTIONS
89
90 =over 4
91
92 =item B<--cancel> serial
93
94 Cancel the job with the given serial number.
95
96 Use I<--jobs> to list running jobs along with their serial numbers.
97 The serial number is also available in the job script (as
98 C<$JOBSERIAL>) and in the log file.
99
100 =item B<--daemon-start>
101
102 =item B<--daemon-stop>
103
104 Start and stop the per-user daemon.
105
106 =item B<--daemon-status>
107
108 Prints the status of the daemon: C<up> or C<down>.
109
110 =item B<--daemon-restart>
111
112 Restart the daemon.  (If it is not running, then this command
113 starts it).
114
115 =item B<-e>
116
117 =item B<--edit>
118
119 Edit the jobs script.  If you make changes to the jobs script, then it
120 is automatically uploaded to the daemon.
121
122 The C<$EDITOR> environment variable is used for editing.  If not set,
123 C<vi> is used.
124
125 =item B<--get> variable
126
127 Print the value of a variable.
128
129 =item B<--jobs>
130
131 List all running jobs.
132
133 Note that it is possible for the same job to be running more than once
134 (for example, a periodic job that takes longer than the period to run).
135
136 =item B<-l>
137
138 =item B<--list>
139
140 List the jobs script.
141
142 =item B<--lib> directory
143
144 Set the library directory which needs to contain the auxiliary files
145 C<pa_when.cmo> and C<whenlib.cma>.  Normally you do not need to
146 specify this.  However if you are running whenjobs without installing
147 it, then you need to point this to the C<lib/> directory from the
148 source, eg:
149
150  whenjobs --lib $builddir/lib -e
151
152 =item B<--start> "job name"
153
154 Start the job immediately and unconditionally.
155
156 This runs the job even if its normal preconditions are not met.  This
157 may cause unexpected results, so use with caution.
158
159 =item B<--set> variable value
160
161 =item B<--type> bool|int|float|string|unit
162
163 I<--set> sets the variable named C<variable> to the new C<value>.  The
164 variable is created if it does not already exist.  Note that setting a
165 variable can cause jobs to run immediately.
166
167 To unset a variable, set it to the empty string:
168
169  whenjobs --set var ""
170
171 By default variables are strings.  You can also set the type of a
172 variable when setting it by adding the optional I<--type> parameter:
173
174  whenjobs --set free_space 10000 --type int
175
176 See the discussion of variable types in the L</REFERENCE> section
177 below.
178
179 =item B<--upload>
180
181 Compile the jobs script and upload it to the daemon, without editing.
182 Note that the I<--edit> option does this automatically.  Furthermore,
183 when the daemon is started it checks for a jobs script and loads it if
184 found.
185
186 =item B<--variables>
187
188 Display all the variables and their values, in the format C<name=value>.
189
190 =item B<-V>
191
192 =item B<--version>
193
194 Display the name and version of the program and exit.
195
196 =item B<-help>
197
198 =item B<--help>
199
200 Display brief usage and exit.
201
202 =back
203
204 =head1 REFERENCE
205
206 A whenjobs file consists of a series of one or more "every" or "when"
207 statements.
208
209 Comments in the file can be written using C<(* ... *)>.  Comments
210 may be nested.
211
212 Shell script fragments are written using C<E<lt>E<lt> ... E<gt>E<gt>>.
213 Within shell script fragments, use C<#> for comments (as in ordinary
214 shell scripts).  Because C<E<gt>E<gt>> has a special meaning, it
215 cannot be used in the shell script (ie. for redirection).  You have to
216 write C<E<gt>\E<gt>> instead which is replaced with C<E<gt>E<gt>> when
217 the shell script is parsed.
218
219 =head2 EVERY STATEMENTS (PERIODIC JOBS)
220
221 An every statement has the form:
222
223  every <period> :
224  <<
225    # shell script
226  >>
227
228 where C<E<lt>periodE<gt>> is a I<period expression>, which may take
229 one of the forms below.  Don't forget the colon character between the
230 period expression and the shell script.
231
232 An every statement is a job which runs periodically.
233
234 =head3 PERIOD EXPRESSIONS
235
236 =over 4
237
238 =item B<every second>
239
240 The job runs every second.
241
242 =item B<every minute>
243
244 The job runs every minute.
245
246 =item B<every hour>
247
248 The job runs every hour.
249
250 =item B<every day>
251
252 The job runs every day, at midnight UTC.
253
254 =item B<every week>
255
256 The job runs every week, on a Thursday at midnight UTC.
257
258 =item B<every month>
259
260 The job runs every month, on the first of the month at midnight UTC.
261
262 =item B<every year>
263
264 The job runs every year, on the first day of the year at midnight UTC.
265
266 =item B<every decade>
267
268 =item B<every century>
269
270 =item B<every millenium>
271
272 The job runs every 10, 100 or 1000 years.
273
274 =item B<every I<N> seconds>
275
276 The job runs every I<N> seconds (I<N> is any number E<ge> 1).
277
278 =item B<every I<N> minutes>
279
280 The job runs every I<N> minutes.
281
282 =item B<every I<N> hours>
283
284 The job runs every I<N> hours.
285
286 =item B<every I<N> days>
287
288 The job runs every I<N> days.
289
290 =item B<every I<N> weeks>
291
292 The job runs every I<N> weeks.
293
294 =item B<every I<N> months>
295
296 The job runs every I<N> months.
297
298 =item B<every I<N> years>
299
300 =item B<every I<N> decades>
301
302 =item B<every I<N> centuries>
303
304 =item B<every I<N> millenia>
305
306 The job runs every I<N>, I<10*N>, I<100*N> or I<1000*N> years.
307
308 =back
309
310 =head2 WHEN STATEMENTS (DEPENDENT JOBS)
311
312 A when statement has the form:
313
314  when <expr> :
315  <<
316    # shell script
317  >>
318
319 where C<E<lt>exprE<gt>> is a I<when expression>, described below.
320 Don't forget the colon character between the period expression and the
321 shell script.
322
323 A when statement is a job which runs when the conditions described in
324 its when-expression become true.
325
326 When jobs are I<edge triggered>.  This means that they run when the
327 condition changes from false to true (or in the case where the
328 expression has not been evaluated before, when it evaluates initially
329 to true).
330
331 =head3 WHEN EXPRESSIONS
332
333 When expressions are fully recursive expressions constructed from the
334 following elements:
335
336 =over 4
337
338 =item I<expr> B<&&> I<expr>
339
340 =item I<expr> B<||> I<expr>
341
342 The boolean "and" or "or" of the two sub-expressions.
343
344 =item I<expr> B<E<lt>> I<expr>
345
346 =item I<expr> B<E<lt>=> I<expr>
347
348 =item I<expr> B<==> I<expr>
349
350 =item I<expr> B<E<gt>=> I<expr>
351
352 =item I<expr> B<E<gt>> I<expr>
353
354 The two sub-expressions are evaluated and the usual comparison
355 operator is performed.
356
357 If the sub-expressions are numeric, then numeric comparison is done.
358 If either sub-expression is non-numeric, then both expressions are
359 converted (if necessary) to strings and string comparison is done.
360
361 =item B<!> I<expr>
362
363 Boolean negative of I<expr>.
364
365 =item I<expr> B<+> I<expr>
366
367 For numeric sub-expressions, this performs addition.
368
369 If both sub-expressions are strings, this performs string
370 concatenation.
371
372 Other types give an error.
373
374 =item I<expr> B<-> I<expr>
375
376 =item I<expr> B<*> I<expr>
377
378 =item I<expr> B</> I<expr>
379
380 =item I<expr> B<mod> I<expr>
381
382 Both sub-expressions are evaluated, and if both are numeric, then the
383 result is subtraction, multiplication, division or modulo.
384
385 Other types give an error.  Note that I<mod> really is an infix
386 operator.
387
388 =item B<len> I<expr>
389
390 If I<expr> is a string, this returns the length of the string.
391
392 =item I<variable>
393
394 The value of the named variable.
395
396 Previously undefined variables are automatically initialized to the
397 empty string.
398
399 =item B<prev> I<variable>
400
401 The I<previous> value of the named variable.  This means, the value
402 that it had last time this when-job ran.
403
404 If the when-job has not run yet, then this returns C<"">.
405
406 =item B<changes> I<variable>
407
408 If the named variable has changed since this job last ran, then this
409 evaluates to true, else false.
410
411 This is the same as writing C<prev variable == variable>.
412
413 =item B<increases> I<variable>
414
415 If the named variable has changed and increased since this job last
416 ran, then this evaluates to true, else false.
417
418 This is the same as writing C<prev variable E<lt> variable>.
419
420 =item B<decreases> I<variable>
421
422 If the named variable has changed and decreased since this job last
423 ran, then this evaluates to true, else false.
424
425 This is the same as writing C<prev variable E<gt> variable>.
426
427 B<Note:> There is a subtle gotcha with the I<decreases> operator: The
428 first time the expression is evaluated, the job has (by definition)
429 not yet run.  Therefore C<prev variable> evaluates to C<""> (see
430 definition of I<prev> above).  Since it is always true that
431
432  "" < anything
433
434 the I<decreases> operator evaluates to false, and since this usually
435 means the job does not run, the operator always evaluates to false.
436
437 To fix this, ensure that the variable is initialized (see
438 L</SETTING THE INITIAL VALUE OF VARIABLES> below).
439
440 =item B<reloaded ()>
441
442 This evaluates to true the first time the expression is evaluated
443 after the jobs file has been reloaded or the daemon restarted.
444 Thereafter it evaluates to false.
445
446 Don't use this to initialize variables: it won't do what you mean.
447
448 =item B<false>
449
450 =item B<true>
451
452 Constants that evaluate to boolean false or true respectively.
453
454 =item I<"any string">
455
456 Any string.
457
458 In a boolean context, the empty string evaluates to false, and
459 non-empty strings evaluate to true.
460
461 =item I<N>
462
463 Any integer.  (Arbitrarily large integers are supported.)
464
465 In a boolean context, 0 evaluates to false, and non-zero evaluates to
466 true.
467
468 =item I<N.>
469
470 =item I<.N>
471
472 =item I<N.N>
473
474 =item I<N.NeN>
475
476 Any floating point number.
477
478 In a boolean context, 0 evaluates to false, and non-zero evaluates to
479 true.
480
481 =back
482
483 =head2 SHELL SCRIPTS
484
485 The code between C<E<lt>E<lt> ... E<gt>E<gt>> is a shell script.  It
486 is executed using C<$SHELL>, or if that environment variable is not
487 set then C</bin/sh>.
488
489 =head3 SHELL SCRIPT VARIABLES
490
491 Every variable that has been set (using the whenjobs I<--set> option)
492 is exported to the script, so you can simply get the value of any
493 variable by writing C<$name>.
494
495 In addition, there are some special variables available:
496
497 =over 4
498
499 =item C<$JOBNAME>
500
501 The name of the job.  If the job has been named explicitly, then that
502 name is available through this variable, else it will be some implicit
503 name like C<job$1>.
504
505 =item C<$JOBSERIAL>
506
507 The serial number of the job.  This is simply a variable that
508 increments each time a job is run, and is unique to that run of the
509 job.
510
511 =back
512
513 Other environment variables such as C<$HOME>, C<$LOGNAME> etc are
514 available as normal.
515
516 =head3 SHELL SCRIPT TEMPORARY CURRENT DIRECTORY
517
518 The shell script runs with its current directory set to a temporary
519 directory.  The temporary directory is removed when the shell script
520 exits.  Therefore you can write temporary files here without worrying
521 about cleaning them up.
522
523 If you want to store permanent state, then you have to save it to a
524 well-known directory, eg. C<$HOME>, C</var> etc.
525
526 =head3 SHELL SCRIPT USER
527
528 The shell script runs as the ordinary user.  It has no special
529 privileges.
530
531 =head2 JOB NAMES
532
533 Jobs are given implicit names (C<job$1>, C<job$2> etc.).  You can also
534 name jobs explicitly by preceeding the "every" or "when" statement
535 with C<job "name">:
536
537  job "poll source"
538  every 10 seconds :
539  <<
540    # ...
541  >>
542
543 The job name is passed to the shell script in the C<$JOBNAME>
544 environment variable.
545
546 =head2 OCAML EXPRESSIONS
547
548 As well as simple "every" and "when" expressions, advanced users may
549 want to use arbitrary OCaml expressions, functions, etc in the jobs
550 script.  These are useful for factoring common code or strings, for
551 setting the initial values of variables, or for defining pre and post
552 functions.
553
554 A simple example of an OCaml expression is:
555
556  let prefix = "daily_"
557  
558  job (prefix ^ "virus_scan")
559  every day :
560  <<
561    # ...
562  >>
563  
564  job (prefix ^ "disk_check")
565  every day :
566  <<
567    # ...
568  >>
569
570 which creates two jobs called C<"daily_virus_scan"> and
571 C<"daily_disk_check"> (C<^> is the OCaml string concatenation
572 operator).
573
574 OCaml expressions have access to a library of functions called
575 B<Whentools> which is described below.  It lets you set variables,
576 create jobs algorithmically, etc.
577
578 The OCaml expressions run once, when the jobs file is being loaded or
579 reloaded.
580
581 =head3 SETTING THE INITIAL VALUE OF VARIABLES
582
583 Variables are created when they are referenced, and until set they
584 have the value empty string (just like the shell).  Across file
585 reloads, the previous values of variables are preserved.
586
587 To initialize a variable to a known value when the jobs file is
588 loaded, call one of the C<Whentools.set_variable*> functions as in
589 this example:
590
591  let () =
592    Whentools.set_variable "name" "Richard";
593    Whentools.set_variable_int "counter" 0
594
595 =head3 PRE FUNCTIONS
596
597 Before a job runs, you can arrange that a C<pre> function is called.
598 This function may decide not to run the job (by returning C<false>).
599
600 One use for this is to prevent a particular job from running if there
601 is already an instance of the same job running:
602
603  job "only one"
604  pre (Whentools.one ())
605  every 10 seconds :
606  <<
607    # Takes longer than 10 seconds to run, but 'Whentools.one ()'
608    # will ensure only one is ever running.
609    sleep 11
610  >>
611
612 When using pre functions, jobs must be given an explicit name, ie.
613 you must use the C<job> statement.
614
615 A number of pre functions are available in the library; see below.
616
617 You can also write your own post functions (in OCaml).  The function
618 is passed one argument which is a C<Whentools.preinfo> struct, defined
619 below.  It should return a boolean: C<true> if the job should run, and
620 C<false> if the job should not run.
621
622 Note that a fresh serial number (see L</JOBSERIAL>) is assigned to
623 each run, whether or not the job actually runs because of
624 preconditions.
625
626 =head3 POST FUNCTIONS
627
628 After a job runs, you can control what happens to its output by
629 writing a C<post> function.  To write a post function you have to
630 name the job (ie. have an explicit C<job> statement).  Put C<post ...>
631 after the job name like this:
632
633  job "poll source"
634  post (Whentools.mailto "you@example.com")
635  every 10 seconds :
636  <<
637    # ...
638  >>
639
640 A number of post functions are available in the library; see below.
641
642 You can also write your own post functions (in OCaml).  The
643 function is passed one argument which is a C<Whentools.result> struct,
644 defined below.
645
646 =head3 WHENTOOLS LIBRARY
647
648 =head4 Functions
649
650 =over 4
651
652 =item B<Whentools.mailto> [I<~only_on_failure:true>]
653 [I<~from:from_address>] I<email_address> I<result>
654
655 This built-in post function sends the result of the script by email to
656 the given email address.
657
658 If the optional C<~only_on_failure:true> flag is set, then it is only
659 sent out if the script failed.
660
661 If the optional C<~from> flag is set, then the from address is set
662 accordingly.  This is sometimes needed when sending mail.
663
664 Note the C<result> parameter is passed implicitly by the daemon.  You
665 do not need to add it.
666
667 Here are some examples of using the mailto function:
668
669  job "ex.1"
670  post (Whentools.mailto "you@example.com")
671  every 10 seconds :
672  <<
673    # do something
674  >>
675
676  job "ex.2"
677  post (Whentools.mailto ~only_on_failure:true
678                         "you@example.com")
679  every 10 seconds :
680  <<
681    # do something
682  >>
683
684  let from = "me@example.com"
685  let to_addr = "you@example.com"
686  
687  job "ex.3"
688  post (Whentools.mailto ~from to_addr)
689  every 10 seconds :
690  <<
691    # do something
692  >>
693
694 =item B<Whentools.max> I<n>
695
696 This built-in pre function ensures that a maximum of I<n> instances of
697 the job are running.
698
699 It checks the list of running jobs, and if I<n> or more instances are
700 already running, then it returns C<false>, which ensures that the new
701 job is not started.
702
703 =item B<Whentools.one> I<()>
704
705 This built-in pre function ensures that only one instance of the job
706 is running.  It is the same as calling:
707
708  Whentools.max 1
709
710 =item B<Whentools.set_variable> I<name> I<string>
711
712 Set variable I<name> to the string.
713
714 =item B<Whentools.set_variable_bool> I<name> I<b>
715
716 Set variable I<name> to the boolean value I<b>.
717
718 =item B<Whentools.set_variable_int> I<name> I<i>
719
720 Set variable I<name> to the integer value I<i>.
721
722 =item B<Whentools.set_variable_string> I<name> I<s>
723
724 Set variable I<name> to the string value <s>.  This is
725 the same as I<Whentools.set_variable>.
726
727 =item B<Whentools.set_variable_float> I<name> I<f>
728
729 Set variable I<name> to the floating point value I<f>.
730
731 =back
732
733 =head4 Structures
734
735 =over 4
736
737 =item B<Whentools.preinfo>
738
739 This structure is passed to pre functions.  It has the following
740 fields:
741
742  type preinfo = {
743    pi_job_name : string;           # Job name.
744    pi_serial : Big_int.big_int;    # Job serial number.
745    pi_variables : (string * variable) list; # Variables set in job.
746    pi_running : preinfo_running_job list;   # List of running jobs.
747  }
748  and preinfo_running_job = {
749    pirun_job_name : string;        # Running job name.
750    pirun_serial : Big_int.big_int; # Running job serial number.
751    pirun_start_time : float;       # Running job start time.
752    pirun_pid : int;                # Running job process ID.
753  }
754
755 =item B<Whentools.result>
756
757 This structure is passed to post functions.  It has the following
758 fields:
759
760  type result = {
761    res_job_name : string;  # job name
762    res_serial : big_int;   # job serial (same as $JOBSERIAL)
763    res_code : int;         # return code from the shell script
764    res_tmpdir : string;    # temporary directory script ran in
765    res_output : string;    # filename of stdout/stderr output
766    res_start_time : float; # when the job started
767  }
768
769 =back
770
771 =head1 FILES
772
773
774
775 =head1 ENVIRONMENT VARIABLES
776
777
778
779 =head1 SEE ALSO
780
781 L<whenjobsd(8)>
782
783 =head1 AUTHOR
784
785 Richard W.M. Jones L<http://people.redhat.com/~rjones/>
786
787 =head1 COPYRIGHT
788
789 Copyright (C) 2012 Red Hat Inc.
790
791 This program is free software; you can redistribute it and/or modify
792 it under the terms of the GNU General Public License as published by
793 the Free Software Foundation; either version 2 of the License, or
794 (at your option) any later version.
795
796 This program is distributed in the hope that it will be useful,
797 but WITHOUT ANY WARRANTY; without even the implied warranty of
798 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
799 GNU General Public License for more details.
800
801 You should have received a copy of the GNU General Public License
802 along with this program; if not, write to the Free Software
803 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.