]> granicus.if.org Git - fcron/blob - doc/en/todo.sgml
print dates and time in standard formats.
[fcron] / doc / en / todo.sgml
1 <!-- 
2 Fcron documentation
3 Copyright 2000-2014 Thibault Godouet <fcron@free.fr>
4 Permission is granted to copy, distribute and/or modify this
5 document under the terms of the GNU Free Documentation License,
6 Version 1.1 or any later version published by the Free Software
7 Foundation.
8 A copy of the license is included in gfdl.sgml.
9 -->
10
11
12    <sect1 id="todo">
13       <title>Todo</title>
14       <para>Here are some things that should be done ... Note that some of these
15          entries are just some ideas, which <emphasis>may</emphasis> be done in
16          the long run.</para> 
17       <para>If you see something you'd really like to see implemented here, feel
18          free to send me a mail: it may make me move it to the top of my to-do list ;) .
19       </para>
20       <para>If you plan to help me, please send a mail at &email; to prevent two
21          people from doing the same thing. You can send me some propositions as
22          well, or ask me to move something to the top of the heap ;) .</para>
23       <sect2>
24          <title>High priority</title>
25          <itemizedlist>
26             <listitem>
27                <para>Option to compile and install from git sources without generating the doc</para>
28             </listitem>
29             <listitem>
30                <para></para>
31             </listitem>
32          </itemizedlist>
33       </sect2>
34       <sect2>
35          <title>Low priority</title>
36          <itemizedlist>
37             <listitem>
38                <para>Add unit tests using some unit-test framework (turn the tests/* code into unit tests)</para>
39             </listitem>
40            <listitem>
41                <para>For environment settings, make a var substitution.</para>
42             </listitem>
43             <listitem>
44                <para>add a mailsubject option, for custom mail subjects (for instance, in case of a job containing something secret -- password, etc -- in the command line).</para>
45             </listitem>
46             <listitem>
47                <para>Use directory notifications (FAM) / inotify, and support a fcrontab
48                and a cron.d as Vixie cron does (directly included in fcron itself, not thanks to a script as now).
49                However the parsing work is done by fcrontab, and should probably keep on being done by fcrontab for
50                security and stability reasons: have fcron call fcrontab to do that job?</para>
51             </listitem>
52             <listitem>
53                <para>could be worth checking fcron for memory leaks using specialized library (just in case...)</para>
54             </listitem>
55             <listitem>
56                <para>option to put a maximum limit on the execution time of a task + terminate it if not finished yet + send email to let the user know</para>
57             </listitem>
58             <listitem>
59                <para>setting to limit the number of jobs of a single user in the serialq/lavgq to X jobs + make sure root always has Y slots that it can use in those queues (i.e. number of slots used by root + number of free slots >= Y)</para>
60             </listitem>
61             <listitem>
62                <para>Test (and use ?) docbook2x-man -- xlstproc ? cf http://antoine.ginies.free.fr/docbook/ch09.html</para>
63             </listitem>
64             <listitem>
65                <para>find way to have the non translated pages of the French translation be updated automatically (changes, todo, etc -> copied from the English doc)</para>
66             </listitem>
67             <listitem>
68                <para>add a return code for jobs which would mean that they
69                   should not be run again (in case of an error, etc...).</para>
70             </listitem>
71             <listitem>
72                <para>PAM support (included in fcron, but needs more tests by
73                   people using PAM - not implemented in fcrondyn: is it needed
74                   in fcrondyn anyway?)</para>
75             </listitem>
76             <listitem>
77                <para>support for per user serial queue (especially for root)</para>
78             </listitem>
79          </itemizedlist>
80       </sect2>
81       <sect2>
82          <title>Ideas</title>
83          <itemizedlist>
84             <listitem>
85                <para>add a system of modules: at startup, fcron loads some
86                   modules (.so files). Then, when fcron should run the job, it
87                   calls a function of the module, and let it manage the job
88                   (threads?). (do linux dlopen(), etc exist on other systems?
89                   - yes: thanks Harring ;) dlopen exists on all POSIX system -
90                   even windoze - abait it does not use the same insterface of
91                   function calls. But it can be easily implemented to port to
92                   another system.).</para>
93             </listitem>
94             <listitem>
95                <para>(related to the system of modules? create a kind of
96                   dependencies?)  Add a way to run a job only if a command
97                   returns true. It would permit, for instance, to run some jobs
98                   on a laptop only if it is on AC power.</para>
99                <para>and depending on the return value of the command, cancel
100                   the execution, or wait x seconds before trying again, etc. 
101                In this case, needs change the way the jobs are queued?</para>
102             </listitem>
103             <listitem>
104                <para>add an option/module to prevent fcron from running a job if the
105                   system is running on battery (anacron does it?)</para>
106             </listitem>
107             <listitem>
108                <para>Add a way to stop a job (SIGSTOP) if the lavg gets to high,
109                   and restart it (SIGCONT) when the lavg has decreased.</para>
110             </listitem>
111             <listitem>
112                <para>Add a timeout for task completion: if a task takes more
113                   than a specified timeout, then start another script with the
114                   initial task PID as argument.  That would allow a kill with
115                   different signals (-HUP, -TERM -STOP, .... or any other action
116                   like sending a mail to sysadmin to alert him/her that a task
117                   is taking too much time and that he has to have a look at it.)
118                   (add an option to specify the cmd, and combine w/ option until)
119                </para>
120             </listitem>
121          </itemizedlist>
122       </sect2>
123    </sect1>
124
125
126 <!-- Keep this comment at the end of the file
127 Local variables:
128 mode: sgml
129 sgml-parent-document:("fcron-doc.sgml" "book" "chapter" "sect1" "")
130 End:
131 -->