]> git.ipfire.org Git - thirdparty/sarg.git/blame - language.c
Adjustments to run sarg on windows outside of msys.
[thirdparty/sarg.git] / language.c
CommitLineData
c37945ed
FM
1/*
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26#include "include/conf.h"
5f3cfd1d 27#include "include/defs.h"
c37945ed 28
32e71fa4 29void language_load(const char *language)
c37945ed 30{
4bcb77cf 31 char lfile[FILENAME_MAX];
c37945ed 32 FILE *fp_text;
07e9bc49 33 char buf[MAXLEN];
c37945ed
FM
34 int record=0;
35
b3695c67
FM
36 if (snprintf(lfile,sizeof(lfile),LANGDIR"/%s",language)>=sizeof(lfile)) {
37 fprintf(stderr, "SARG: (language) language name is too long: %s/%s\n",LANGDIR,language);
32e71fa4
FM
38 exit(1);
39 }
c37945ed 40
4bcb77cf
FM
41 if((fp_text=fopen(lfile,"r"))==NULL) {
42 fprintf(stderr, "SARG: (language) Cannot open language file: %s\n",lfile);
c37945ed
FM
43 exit(1);
44 }
07e9bc49
FM
45 if(langcode)
46 printf("Reading language from %s\n",lfile);
c37945ed 47
07e9bc49 48 while(record<sizeof(text)/sizeof(text[0]) && fgets(buf,sizeof(buf),fp_text)!=NULL) {
4bcb77cf
FM
49 if (getword(warea,sizeof(warea),buf,'"')<0 || getword(warea,sizeof(warea),buf,'"')<0) {
50 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",lfile);
51 exit(1);
52 }
c37945ed
FM
53 strcpy(text[record],warea);
54
55 if(langcode)
32e71fa4 56 printf("%d %s\n",record,warea);
c37945ed
FM
57
58 record++;
59 }
60
61 fclose(fp_text);
62
63 return;
64}