Merge changes submitted by Matt Gagne <matt.gagne@state.vt.us>
[inoclam.git] / clam.hxx
blob2c60c0dbd0c18e727f0c6665e3514ab707bed415
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>
21 * Matt Gagne <matt.gagne@state.vt.us>
24 #ifndef __CLAM_HXX
25 #define __CLAM_HXX
27 #include <confuse.h>
28 #include <pthread.h>
29 #include <string>
31 #include "config.hxx"
33 /**
34 * A lock used to serialize access to the engine. Serialized access is
35 * needed to keep clam_refresh() from changing the engine while
36 * contains_virus() is using it.
37 * @see clam_refresh()
38 * @see contains_virus()
40 extern pthread_mutex_t engine_lock;
42 /**
43 * Thread attributes used by the clam_refresh() thread. This is
44 * a global so that main() can free them when its cleaning up.
45 * @see main()
46 * @see clam_refresh()
48 extern pthread_attr_t ta;
50 /**
51 * Thread that reloads virus definitions as needed
53 void clam_refresh();
55 /**
56 * Load the virus definition files and prepare the engine.
58 void clam_init();
60 /**
61 * Scans a file for virus.
62 * @return -1 Error || 0 No Virus || +1 Virus Found
64 int clam_scan(std::string * filename, config * conf);
66 /**
67 * Free resources used by the engine.
69 void clam_exit();
71 #endif