Fixes for installation phase
[mailer.git] / inc / stats-functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/25/2009 *
4  * ===============                              Last change: 10/25/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : stats-functions.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Automatical purging of outdated mail links       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auto-Loeschung von veralteten Mail-Links         *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Init stats system
45 function initStatsSystem () {
46         // Is stats cache loaded?
47         if ((!isset($GLOBALS['stats_loaded'])) && (getConfig('STATS_ENABLED') == 'Y')) {
48                 // Load stats cache
49                 $GLOBALS['stats_fqfn'] = sprintf("%sinc/cache/stats.cache", getConfig('PATH'));
50
51                 // Is the file readable?
52                 if (isFileReadable($GLOBALS['stats_fqfn'])) {
53                         // Yes, so load it and eval
54                         eval(readFromFile($GLOBALS['stats_fqfn']));
55                 } else {
56                         // Generate it only
57                         touch($GLOBALS['stats_fqfn']);
58                 }
59
60                 // Stats are loaded!
61                 $GLOBALS['stats_loaded'] = true;
62         } // END - if
63 }
64
65 // Checks if we have a statistics entry
66 function isStatsEntrySet ($entry) {
67         // Do we have the entry?
68         return (isset($GLOBALS['stats'][$entry]));
69 }
70
71 // Increments a statistics entry
72 function incrementStatsEntry ($entry, $amount=1) {
73         // Is it there?
74         if (isStatsEntrySet($entry)) {
75                 // Then increment it
76                 $GLOBALS['stats'][$entry] += $amount;
77         } else {
78                 // Write it
79                 $GLOBALS['stats'][$entry] = $amount;
80         }
81 }
82
83 // Getter for stats
84 function getStatsEntry ($entry) {
85         // Default is zero
86         $stats = 0;
87
88         // Is it there?
89         if (isStatsEntrySet($entry)) {
90                 // Then use it
91                 $stats = $GLOBALS['stats'][$entry];
92         } // END - if
93
94         // Return the value
95         return $stats;
96 }
97
98 // Setter for stats
99 function setStatsEntry ($entry, $value) {
100         $GLOBALS['stats'][$entry] = $value;
101 }
102
103 // Filter for flushing statistics
104 function FILTER_FLUSH_STATS () {
105         // Now do we have stats?
106         if ((isset($GLOBALS['stats'])) && (getConfig('STATS_ENABLED') == 'Y')) {
107                 // Then prepare it for writing
108                 foreach ($GLOBALS['stats'] as $key=>$value) {
109                         $stats[] = '$GLOBALS[\'stats\'][\'' . $key . '\'] = ' . $value . ';';
110                 } // END - foreach
111
112                 // Add empty line
113                 $stats[] = '';
114
115                 // And flush all out
116                 writeToFile($GLOBALS['stats_fqfn'], implode("\n", $stats), true);
117         } // END - if
118 }
119
120 // [EOF]
121 ?>