]> git.pond.sub.org Git - empserver/blob - src/lib/update/anno.c
Update copyright notice
[empserver] / src / lib / update / anno.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  anno.c: Delete announcements older than ANNO_KEEP_DAYS
28  *
29  *  Known contributors to this file:
30  *     Ken Stevens, 1995
31  *     Doug Hay, 1998
32  *     Steve McClure, 2000
33  *     Ron Koenderink, 2004-2006
34  *     Markus Armbruster, 2004-2010
35  */
36
37 #include <config.h>
38
39 #if defined(_WIN32) && defined(__GNUC__)
40 #include <io.h>
41 #endif
42 #include <stdio.h>
43 #include <time.h>
44 #include "tel.h"
45 #include "update.h"
46
47 static int copy_and_expire(FILE *, FILE *, char *, time_t);
48 static int copy_sink(char *, size_t, void *);
49
50 void
51 delete_old_announcements(void)
52 {
53     time_t now;
54     time_t old;
55     FILE *annfp;
56     FILE *tmpfp;
57     char tmp_filename[1024];
58     int copy_file;
59
60     if (anno_keep_days < 0)
61         return;
62
63     time(&now);
64     old = now - days(anno_keep_days);
65     logerror("Deleting annos older than %s", ctime(&old));
66
67     if ((annfp = fopen(annfil, "rb")) == NULL) {
68         logerror("can't open telegram file %s for reading", annfil);
69         return;
70     }
71     sprintf(tmp_filename, "%s.tmp", annfil);
72     if ((tmpfp = fopen(tmp_filename, "wb")) == NULL) {
73         logerror("can't open telegram file %s for writing", tmp_filename);
74         if (fclose(annfp) != 0)
75             logerror("can't close telegram file %s", annfil);
76         return;
77     }
78     copy_file = copy_and_expire(annfp, tmpfp, tmp_filename, old);
79
80     if (fclose(annfp) != 0) {
81         logerror("can't close telegram file %s", annfil);
82         copy_file = 0;
83     }
84     if (fclose(tmpfp) != 0) {
85         logerror("can't close temporary telegram file %s", tmp_filename);
86         copy_file = 0;
87     }
88 #if defined(_WIN32)
89     if (copy_file) {
90         if (unlink(annfil) != 0) {
91             logerror("can't delete telegram file %s", annfil);
92             copy_file = 0;
93         }
94     }
95 #endif
96     if (copy_file) {
97         if (rename(tmp_filename, annfil) != 0)
98             logerror("can't move temporary telegram file %s "
99                      "to telegram file %s", tmp_filename, annfil);
100     } else {
101         if (remove(tmp_filename) < 0)
102             logerror("can't delete telegram file %s", tmp_filename);
103     }
104 }
105
106 static int
107 copy_and_expire(FILE *annfp, FILE *tmpfp, char *tmp_filename,
108                 time_t expiry_time)
109 {
110     struct telstr tgm;
111     int res, writeit;
112     int deleted = 0;
113     int saved = 0;
114     int first = 1;
115
116     while ((res = tel_read_header(annfp, annfil, &tgm)) > 0) {
117         writeit = tgm.tel_date >= expiry_time;
118         if (first) {
119             first = 0;
120             if (writeit)
121                 return 0;
122         }
123         if (writeit) {
124             if (fwrite(&tgm, sizeof(tgm), 1, tmpfp) != 1) {
125                 logerror("error writing header to temporary "
126                          "telegram file %s", tmp_filename);
127                 return 0;
128             }
129             ++saved;
130         } else
131             ++deleted;
132         res = tel_read_body(annfp, annfil, &tgm,
133                             writeit ? copy_sink : NULL, tmpfp);
134         if (res < 0)
135             return 0;
136     }
137
138     if (res < 0)
139         return 0;
140     logerror("%d announcements deleted; %d announcements saved",
141              deleted, saved);
142     return 1;
143 }
144
145 static int
146 copy_sink(char *chunk, size_t sz, void *fp)
147 {
148     if (fwrite(chunk, 1, sz, fp) != sz) {
149         logerror("error writing to %s.tmp", annfil);
150         return -1;
151     }
152     return 0;
153 }