c -> c++
[inoclam.git] / inoclam.cxx
blob6733f781840063641d0ddc26479e32d58ea739a5
1 /*
2 * inoclam - Inotify+ClamAV virus scanner
3 * Copyright (C) 2007 Vermont Department of Taxes
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * Contributor(s):
20 * Tom Cort <tom.cort@state.vt.us>
23 #include <libdaemon/dlog.h>
25 #include "clam.hxx"
26 #include "inotify.hxx"
27 #include "monitor.hxx"
28 #include "signal.hxx"
30 int main(int argc, char *argv[], char *envp[])
33 /* Default Values for Global Variables */
34 exit_now = 0;
36 /* Sanity Checks */
37 if (argc < 1 || !argv || !argv[0]) {
38 daemon_log(LOG_ERR, "(%u:%s) Cannot determine program name from argv[0]\n", __FILE__, __LINE__);
39 return 1;
42 /* Configure Logging */
43 daemon_log_ident = daemon_ident_from_argv0(argv[0]);
46 * TODO: pid file
47 * TODO: run as daemon
48 * TODO: config file
49 * TODO: at least a couple command line options
52 /* Install Signal Handlers */
53 install_signal_handlers();
55 /* Initialize Virus Detection Engine and Load Virus Definitions */
56 clam_init();
58 inotify_main(".");
60 /* Free resources used by libclamav */
61 clam_exit();
63 monitor_wait(); /* thread cleanup */
64 pthread_mutex_destroy(&engine_lock);
65 pthread_attr_destroy(&ta);
67 daemon_log(LOG_INFO, "(%s:%u) Exiting...", __FILE__, __LINE__);
68 return 0;