summaryrefslogtreecommitdiff
blob: ddc0348543be9732b4c3b0102d045be973243de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
Index: mergelog-4.5/configure.in
===================================================================
--- mergelog-4.5.orig/configure.in
+++ mergelog-4.5/configure.in
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to p
 AC_INIT(src/mergelog.c)
 
 PACKAGE=mergelog
-VERSION=4.5
+VERSION=4.5-split
 AM_INIT_AUTOMAKE($PACKAGE,$VERSION,nosubst)
 
 AC_ARG_PROGRAM
Index: mergelog-4.5/man/mergelog.1
===================================================================
--- mergelog-4.5.orig/man/mergelog.1
+++ mergelog-4.5/man/mergelog.1
@@ -1,8 +1,9 @@
-.TH MERGELOG 1 "22 Jan 2001"
+.TH MERGELOG 1 "20 Jun 2001"
 .SH NAME
 mergelog \- a fast tool to merge http log files by date
 .SH SYNOPSIS
 .B mergelog
+.IR [-vh]\ [-o\ outfmt]
 .IR logfile1
 .IR logfile2 \ ...
 .SH DESCRIPTION
Index: mergelog-4.5/man/zmergelog.1
===================================================================
--- mergelog-4.5.orig/man/zmergelog.1
+++ mergelog-4.5/man/zmergelog.1
@@ -1,8 +1,9 @@
-.TH ZMERGELOG 1 "22 Jan 2001"
+.TH ZMERGELOG 1 "20 Jun 2001"
 .SH NAME
 zmergelog \- a fast tool to merge gzipped http log files by date
 .SH SYNOPSIS
 .B zmergelog
+.IR [-vh]\ [-o\ outfmt]
 .IR logfile1
 .IR logfile2 \ ...
 .SH DESCRIPTION
Index: mergelog-4.5/src/mergelog.c
===================================================================
--- mergelog-4.5.orig/src/mergelog.c
+++ mergelog-4.5/src/mergelog.c
@@ -45,12 +45,16 @@
 #define mygets(a,b,c,d) fast_gzgets(a,b,c,d)
 #define myrewind gzrewind
 #define myclose gzclose
+#define mywrite(f,b,l) gzwrite((f),(b),(l))
+#define MYSUFFIX ".gz"
 #else
 #define myFH FILE
 #define myopen fopen
 #define mygets(a,b,c,d) fgets(a,b,c)
 #define myrewind rewind
 #define myclose fclose
+#define mywrite(f,b,l) fwrite((b),1,(l),(f))
+#define MYSUFFIX
 #endif
 
 
@@ -112,20 +116,141 @@ int main (int argc, char *argv[]) {
   char *trans_digits[60];
   char *trans_year[200];
   char months[24]="anebarprayunulugepctovec";
+  int goc;
+  int goUsage = 0, goVerbose = 0;
+  const char* goOutput = NULL;
+  const char* argv0 = *argv;
+  struct tm gotmFlags;
+  const char* goOutPtr;
+  myFH *outFile = NULL;
+  char outFileName[512];
+  struct tm outFileTM;
+  char outFileNewName[512];
+  size_t outBytes;
+
+  while((goc=getopt(argc,argv,"vho:"))!=-1) {
+    switch(goc) {
+      case 'h': /* -h print usage */
+        goUsage++;
+        break;
+      case 'v': /* -v verbose */
+        goVerbose++;
+        break;
+      case 'o': /* -o fmt output specification */
+        goOutput = optarg;
+        break;
+      default:  /* whatever.. but we better print out usage */
+        goUsage++;
+        break;
+    }
+  }
+  argv = &argv[optind];
+  argc -= optind;
 
-  /*
-    print usage if necessary
-   */
-  if (argc == 1) {
-    fprintf(stderr,"usage: %s logfile1 logfile2 ...\nmergelog %s Copyright (C) 2000-2001 Bertrand Demiddelaer\n",argv[0],VERSION);
+  if(argc<1)
+    goUsage++;
+  if(goUsage) {
+    printf(
+        "mergelog " VERSION " Copyright (c) 2000-2001 Bertrand Demiddelaer\n\n"
+        "I have at least %d reason(s) for lending you a helping hand on using the program.\n\n"
+        "Usage: %s [-vh] [-o fmt] logfile1 logfile2 ..\n\n"
+        " -h    Print this message\n"
+        " -v    Increase verbosity\n"
+        " -o    Give template for output file name to write log to\n"
+        "        instead of standard output in strftime(3) form.\n"
+        "        ( eg. -o %%Y-%%m-%%d-access.log" MYSUFFIX ")\n",
+                goUsage,argv0);
     exit(1);
   }
 
+  /* Analyze output format if given. It's better than trying to
+   * regenerate file name and compare it to the filename currently being
+   * written each time we want to dump one line. */
+  if(goOutput) {
+    memset(&gotmFlags,0,sizeof(gotmFlags));
+    for(goOutPtr=goOutput;*goOutPtr;goOutPtr++) {
+      if( (*goOutPtr=='%') && goOutPtr[1]) {
+        switch(*(++goOutPtr)) {
+          case 'a': /* abbreviated weekday */
+          case 'A': /* full weekday */
+          case 'u': /* day of week number */
+          case 'w': /* zerobased weekday number */
+            gotmFlags.tm_wday = 1;
+            break;
+          case 'b': /* abbreviated month */
+          case 'h': /* %b */
+          case 'B': /* full month */
+          case 'm': /* month number */
+            gotmFlags.tm_mon = 1;
+            break;
+          case 'C': /* century */
+          case 'y': /* centuryless year */
+          case 'Y': /* year with a century */
+            gotmFlags.tm_year = 1;
+            break;
+          case 'd': /* day of month */
+          case 'e': /* day of month space padded */
+            gotmFlags.tm_mday = 1;
+            break;
+          case 'D': /* %m/%d/%y americanism */
+            gotmFlags.tm_mon = gotmFlags.tm_mday = gotmFlags.tm_year = 1;
+            break;
+          case 'G': /* ISO 8601 year repsesentation. depends on week */
+          case 'g': /* ISO 8601 year repsesentation without century. depends on week */
+          case 'U': /* sunday-based week number */
+          case 'V': /* ISO 8601 week number */
+          case 'W': /* monday-based week number */
+          case 'x': /* preferred date representation for locale without the time */
+            gotmFlags.tm_yday = gotmFlags.tm_year = 1;
+            break;
+          case 'H': /* 24h format hour */
+          case 'I': /* 12h format hour */
+          case 'k': /* 24h format hour space padded */
+          case 'l': /* 12h format hour space padded */
+          case 'p': /* AM/PM indicator */
+          case 'P': /* am/pm indicator */
+            gotmFlags.tm_hour = 1;
+            break;
+          case 'j': /* day of year */
+            gotmFlags.tm_yday = 1;
+            break;
+          case 'M': /* minute */
+            gotmFlags.tm_min = 1;
+            break;
+          case 'n': /* newline character */
+          case 't': /* tab character */
+          case 'z': /* time zone as an offset from GMT */
+          case 'Z': /* timezone name or abbreviation */
+          case '%': /* % character */
+            break;
+          case 'r': /* %I:%M:%S %p time in am/pm notation*/
+          case 'T': /* %H:%M:%S time in 24h notation */
+          case 'X': /* preferred time representation for locale without the date */
+            gotmFlags.tm_hour = gotmFlags.tm_min = gotmFlags.tm_sec = 1;
+            break;
+          case 'R': /* %H:%M time in 24h notation without seconds */
+            gotmFlags.tm_hour = gotmFlags.tm_min = 1;
+            break;
+          case 'S': /* second */
+            gotmFlags.tm_sec = 1;
+            break;
+          case 'c': /* preferred date and time representation for locale */
+          case 'E': /* weird modifier */
+          case 'O': /* weird modifier */
+          case 's': /* number of seconds since epoch */
+          case '+': /* date and time in date(1) format */
+            memset(&gotmFlags,0xFF,sizeof(gotmFlags));
+            break;
+        }
+      }
+    }
+  }
+
 #ifdef USE_ZLIB
   /*
     check if there are enough gunzip buffers
    */
-  if(argc>MAX_FILES) {
+  if(argc>=MAX_FILES) {
     fputs("too many gzipped log files, aborting\n",stderr);
     exit(1);
   }
@@ -134,9 +259,9 @@ int main (int argc, char *argv[]) {
   /*
     open log files
   */
-  for (i=1;i<argc;i++) {
-    log_file[i-1]=myopen(argv[i],"r");
-    if (log_file[i-1] == NULL) {
+  for (i=0;i<argc;i++) {
+    log_file[i]=myopen(argv[i],"r");
+    if (log_file[i] == NULL) {
       fprintf(stderr,"can't open %s, aborting\n",argv[i]);
       exit(1);
     }
@@ -174,8 +299,8 @@ int main (int argc, char *argv[]) {
   /*
     init things for each log file and get the older date to start with
    */
-  nb_files=argc-1;
-  for (i=0;i<argc-1;i++) {
+  nb_files=argc;
+  for (i=0;i<argc;i++) {
 
 #ifdef USE_ZLIB
     /*
@@ -230,7 +355,7 @@ int main (int argc, char *argv[]) {
       */
       log_date=memchr(log_scan[i],'[',SCAN_SIZE);
       if (log_date == NULL) {
-	fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i+1],log_buffer[i]);
+	fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i],log_buffer[i]);
 	exit(1);
       }
       
@@ -239,7 +364,7 @@ int main (int argc, char *argv[]) {
        */
        for (j=0;((j == 12)&&(memcmp(months+2*j,log_date+5,2) != 0));j++);
        if (j == 12) {
-	 fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i+1],log_buffer[i]);
+	 fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i],log_buffer[i]);
 	 exit(1);
        }
        memcpy(log_month[i],trans_digits[j],2);
@@ -255,7 +380,7 @@ int main (int argc, char *argv[]) {
 	extract the date of this first line
       */
        if (sscanf(log_date+1,"%d/%3c/%d:%d:%d:%d",&day,month,&year,&hour,&minut,&second) < 6) {
-	 fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i+1],log_buffer[i]);
+	 fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i],log_buffer[i]);
 	 exit(1);
        }
       
@@ -270,7 +395,7 @@ int main (int argc, char *argv[]) {
       date->tm_isdst=-1;
       for (j=0;((j<12)&&(memcmp(months+2*j,month+1,2) != 0));j++);
       if (j == 12) {
-	fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i+1],log_buffer[i]);
+	fprintf(stderr,"abort due to a problem with %s:\n%s\n",argv[i],log_buffer[i]);
 	exit(1);
       }
       date->tm_mon=j;
@@ -303,6 +428,8 @@ int main (int argc, char *argv[]) {
     exit if we have only empty files
    */
   if (nb_files == 0) {
+    if(outFile)
+      myclose(outFile);
     exit(0);
   }
 
@@ -323,7 +450,7 @@ int main (int argc, char *argv[]) {
   /*
     start to compute since this date
   */
-  nb_files_orig=argc-1;
+  nb_files_orig=argc;
   for(;;) {
 
     /*
@@ -377,7 +504,55 @@ int main (int argc, char *argv[]) {
 	  write the log line
 	  faster than a puts and we are sure to find a '\0' in log_buffer[i]
 	 */
-	write(1,log_buffer[i],(size_t)((char *)memchr(log_buffer[i],0,BUFFER_SIZE)-log_buffer[i]));
+        if(goOutput) {
+          /* Check whether any of the date/time components concerned
+           * have changes or if we have no output file opened. It
+           * doesn't make much sense to do all the comparinsons in case
+           * we have no output file opened, but it makes even less sense
+           * to check for file handle each time we evaluate date. */
+          if(
+#         define TMCOMPARE(tmpart) ( gotmFlags.tm_##tmpart && (outFileTM.tm_##tmpart!=date->tm_##tmpart) )
+            TMCOMPARE(sec) || TMCOMPARE(min) || TMCOMPARE(hour)
+            || TMCOMPARE(mday) || TMCOMPARE(mon) || TMCOMPARE(year)
+            || TMCOMPARE(wday) || TMCOMPARE(yday)
+            || !outFile
+#         undef TMCOMPARE
+          ) {
+            if(!strftime(outFileNewName,sizeof(outFileNewName)-1,goOutput,date)) {
+              fprintf(stderr,"abort due to a failed attempt to generate output file name\n");
+              if(outFile)
+                myclose(outFile);
+              exit(1);
+            }
+            if( (!outFile) || strcmp(outFileName,outFileNewName) ) {
+              /* okay, we're about to change output file or start
+               * writing first file */
+              if(outFile) {
+                myclose(outFile);
+              }
+              if(goVerbose)
+                fprintf(stderr, "Writing to \"%s\"..\n",outFileNewName);
+              outFile = myopen(outFileNewName,"a");
+              if(!outFile) {
+                fprintf(stderr, "abort due to a failed attempt to open/create output file %s: %m\n",outFileNewName);
+                exit(1);
+              }
+              memmove(outFileName,outFileNewName,sizeof(outFileName));
+              memmove(&outFileTM,date,sizeof(outFileTM));
+            }
+          }
+          /*  %Y-%m-%d_%H-%M-%S-access.log */
+          outBytes = (size_t)((char *)memchr(log_buffer[i],0,BUFFER_SIZE)-log_buffer[i]);
+          if( mywrite(outFile,log_buffer[i],outBytes) != outBytes) {
+            fprintf(stderr,"abort due to a failed write operation on output file %s: %m\n",outFileName);
+            if(outFile)
+              myclose(outFile);
+            exit(1);
+          }
+        }else{
+          /* do it the way we would do without */
+          write(1,log_buffer[i],(size_t)((char *)memchr(log_buffer[i],0,BUFFER_SIZE)-log_buffer[i]));
+        }
 
 	/*
 	  is it an end of file ?
@@ -388,7 +563,9 @@ int main (int argc, char *argv[]) {
 	    close all log files and exit if all end of files are reached
 	   */
 	  if (--nb_files == 0) {
-	    for (j=0;j<argc-1;j++) {
+            if(outFile)
+              myclose(outFile);
+	    for (j=0;j<argc;j++) {
 	      myclose(log_file[j]);
 	    }
 	    exit(0);
@@ -425,7 +602,7 @@ int main (int argc, char *argv[]) {
 	    } else {
 	      for (j=0;((j<12)&&(memcmp(months+2*j,log_date+5,2) != 0));j++);
 	      if (j == 12) {
-		fprintf(stderr,"problem with %s:\n%s\ncontinuing...\n",argv[i+1],log_buffer[i]);
+		fprintf(stderr,"problem with %s:\n%s\ncontinuing...\n",argv[i],log_buffer[i]);
 	      } else {
 		memcpy(log_month[i],trans_digits[j],2);
 		memcpy(log_month[i]+2,months+2*j,2);
@@ -439,7 +616,7 @@ int main (int argc, char *argv[]) {
 	      }
 	    }
 	  } else {
-	    fprintf(stderr,"problem with %s:\n%s\ncontinuing...\n",argv[i+1],log_buffer[i]);
+	    fprintf(stderr,"problem with %s:\n%s\ncontinuing...\n",argv[i],log_buffer[i]);
 	  }
 	}
       }
@@ -451,3 +628,7 @@ int main (int argc, char *argv[]) {
    */
   exit(1);
 }
+/* vim:set textwidth=72:				*/
+/* vim:set cindent smartindent:				*/
+/* vim:set formatoptions-=t formatoptions+=croql:	*/
+/* vim:set expandtab shiftwidth=2:			*/