]> granicus.if.org Git - fcron/blob - doc/en/todo.sgml
6c5956fbcced9baf4e018c170082ff0b1c84c32b
[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>register in OS suspend/hibernate mechanism to stop fcron when going to sleep and start it again when resuming from sleep (see FAQ entry).</para>
31             </listitem>
32             <listitem>
33                <para></para>
34             </listitem>
35          </itemizedlist>
36       </sect2>
37       <sect2>
38          <title>Low priority</title>
39          <itemizedlist>
40             <listitem>
41                <para>Add unit tests using some unit-test framework (turn the tests/* code into unit tests)</para>
42             </listitem>
43            <listitem>
44                <para>For environment settings, make a var substitution.</para>
45             </listitem>
46             <listitem>
47                <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>
48             </listitem>
49             <listitem>
50                <para>Use directory notifications (FAM) / inotify, and support a fcrontab
51                and a cron.d as Vixie cron does (directly included in fcron itself, not thanks to a script as now).
52                However the parsing work is done by fcrontab, and should probably keep on being done by fcrontab for
53                security and stability reasons: have fcron call fcrontab to do that job?</para>
54             </listitem>
55             <listitem>
56                <para>could be worth checking fcron for memory leaks using specialized library (just in case...)</para>
57             </listitem>
58             <listitem>
59                <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>
60             </listitem>
61             <listitem>
62                <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>
63             </listitem>
64             <listitem>
65                <para>Test (and use ?) docbook2x-man -- xlstproc ? cf http://antoine.ginies.free.fr/docbook/ch09.html</para>
66             </listitem>
67             <listitem>
68                <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>
69             </listitem>
70             <listitem>
71                <para>add a return code for jobs which would mean that they
72                   should not be run again (in case of an error, etc...).</para>
73             </listitem>
74             <listitem>
75                <para>PAM support (included in fcron, but needs more tests by
76                   people using PAM - not implemented in fcrondyn: is it needed
77                   in fcrondyn anyway?)</para>
78             </listitem>
79             <listitem>
80                <para>support for per user serial queue (especially for root)</para>
81             </listitem>
82          </itemizedlist>
83       </sect2>
84       <sect2>
85          <title>Ideas</title>
86          <itemizedlist>
87             <listitem>
88                <para>add a system of modules: at startup, fcron loads some
89                   modules (.so files). Then, when fcron should run the job, it
90                   calls a function of the module, and let it manage the job
91                   (threads?). (do linux dlopen(), etc exist on other systems?
92                   - yes: thanks Harring ;) dlopen exists on all POSIX system -
93                   even windoze - abait it does not use the same insterface of
94                   function calls. But it can be easily implemented to port to
95                   another system.).</para>
96             </listitem>
97             <listitem>
98                <para>(related to the system of modules? create a kind of
99                   dependencies?)  Add a way to run a job only if a command
100                   returns true. It would permit, for instance, to run some jobs
101                   on a laptop only if it is on AC power.</para>
102                <para>and depending on the return value of the command, cancel
103                   the execution, or wait x seconds before trying again, etc. 
104                In this case, needs change the way the jobs are queued?</para>
105             </listitem>
106             <listitem>
107                <para>add an option/module to prevent fcron from running a job if the
108                   system is running on battery (anacron does it?)</para>
109             </listitem>
110             <listitem>
111                <para>Add a way to stop a job (SIGSTOP) if the lavg gets to high,
112                   and restart it (SIGCONT) when the lavg has decreased.</para>
113             </listitem>
114             <listitem>
115                <para>Add a timeout for task completion: if a task takes more
116                   than a specified timeout, then start another script with the
117                   initial task PID as argument.  That would allow a kill with
118                   different signals (-HUP, -TERM -STOP, .... or any other action
119                   like sending a mail to sysadmin to alert him/her that a task
120                   is taking too much time and that he has to have a look at it.)
121                   (add an option to specify the cmd, and combine w/ option until)
122                </para>
123             </listitem>
124          </itemizedlist>
125       </sect2>
126    </sect1>
127
128
129 <!-- Keep this comment at the end of the file
130 Local variables:
131 mode: sgml
132 sgml-parent-document:("fcron-doc.sgml" "book" "chapter" "sect1" "")
133 End:
134 -->