]> git.ipfire.org Git - thirdparty/sarg.git/blame - documentation/util.txt
Rename configure.in as configure.ac
[thirdparty/sarg.git] / documentation / util.txt
CommitLineData
48864d28
FM
1/*! \file util.c
2\brief Various useful functions.
3*/
4
5
6
7
8
9/*! \var static char mtab1[12][4];
10The list of the months.
11*/
12
13
14
15
e5b2c6f0 16/*! \fn void getword_start(struct getwordstruct *gwarea, char *line)
9c7c6346 17Initialize the getword buffer with the given text line.
48864d28 18
9c7c6346
FM
19\param gwarea The getword buffer to initialize.
20\param line The text line to use in the getword buffer.
21*/
22
23
24
25
26
27/*! \fn void getword_restart(struct getwordstruct *gwarea)
28Restart the getword buffer from the beginning.
29
30\param gwarea The getword buffer to reset.
31*/
32
33
34
35
36
06b39c87 37/*! \fn int getword(char *word, int limit, struct getwordstruct *gwarea, char stop)
48864d28
FM
38
39Extract one "word" from the text line and remove it from the text line. The word's boundary is defined
40by the \a stop character. If multiple stop characters are found after the word, only the first one is
41removed. Therfore, passing the line buffer again to the function will remove the next word in a column
42like manner.
43
44\param word The buffer to store the extracted word.
45\param limit The size of the buffer. If the stop character isn't found before that limit is reached,
46the function displays an error message and returns an error code.
9c7c6346 47\param gwarea The getword buffer initialized by getword_start().
48864d28
FM
48\param stop The character indicating the end of the word.
49
50\retval 0 The word is extracted.
076cbab8 51\retval -1 The stop character was not found before the limit is reached.
48864d28
FM
52
53*/
54
55
56
57
58
06b39c87 59/*! \fn int getword_limit(char *word, int limit, struct getwordstruct *gwarea, char stop)
e5b2c6f0
FM
60Extract one word with a maximum size and skip any supernumerary bytes until the stop bytes is
61found.
62
63\param word The buffer to store the extracted word.
64\param limit The size of the buffer.
65\param gwarea The getword buffer initialized by getword_start().
66\param stop The character indicating the end of the word.
67
68\retval 0 The word is extracted.
69*/
70
71
72
73
74
06b39c87 75/*! \fn int getword_multisep(char *word, int limit, struct getwordstruct *gwarea, char stop)
48864d28
FM
76
77Extract one "word" from the text line and remove it from the text line. The word's boundary is defined
78by the \a stop character. All the stop characters following the word are removed too. Therefore, passing
79the line buffer again to the function will remove words even if they are separated by multiple stop
80characters.
81
82\param word The buffer to store the extracted word.
83\param limit The size of the buffer. If the stop character isn't found before that limit is reached,
84the function displays an error message and returns an error code.
9c7c6346 85\param gwarea The getword buffer initialized by getword_start().
48864d28
FM
86\param stop The character indicating the end of the word.
87
88\retval 0 The word is extracted.
076cbab8 89\retval -1 The stop character was not found before the limit is reached.
48864d28
FM
90
91*/
92
93
94
95
06b39c87 96/*! \fn int getword_skip(int limit, struct getwordstruct *gwarea, char stop)
076cbab8
FM
97Skip one "word" from the text line and remove it from the text line. The word's boundary is defined
98by the \a stop character.
48864d28 99
076cbab8 100\param limit The maximum number of characters to skip. If the stop character isn't found before that limit is reached,
48864d28 101the function displays an error message and returns an error code.
9c7c6346 102\param gwarea The getword buffer initialized by getword_start().
48864d28
FM
103\param stop The character indicating the end of the word.
104
076cbab8
FM
105\retval 0 The word is skipped.
106\retval -1 The stop character was not found before the limit is reached.
48864d28
FM
107*/
108
109
110
111
0a4e18e1 112
06b39c87 113/*! \fn int getword_atoll(long long int *number, struct getwordstruct *gwarea, char stop)
0a4e18e1
FM
114Extract one number from the text line.
115
116\param number Where the store the extracted number.
117\param gwarea The getword buffer initialized by getword_start().
118\param stop The character indicating the end of the word.
119
e5b2c6f0 120\retval 0 The number is extracted.
0a4e18e1
FM
121\retval -1 The stop character was not found after the number.
122*/
123
124
125
126
06b39c87 127/*! \fn int getword_ptr(char *orig_line,char **word, struct getwordstruct *gwarea, char stop)
e5b2c6f0
FM
128Return a pointer to a null terminated string starting at the current position and ending
129and the stop character.
130
131\param orig_line The line that is being parsed.
132\param word A pointer to set to the beginning of the string.
133\param gwarea The getword buffer initialized by getword_start().
134\param stop The character indicating the end of the word.
135
136\retval 0 The word is skipped.
137\retval -1 Invalid \a orig_line passed to the function.
138*/
139
140
141
142
48864d28
FM
143/*! \fn long long int my_atoll (const char *nptr)
144
145Convert a string into a long long.
146
147\param nptr The string containing the number to convert.
148
149\return The number found in the string or zero if no number was found.
150
151*/
152
153
154
155
156
6798f0a7
FM
157/*! \fn static int is_absolute(const char *path)
158
159Tell if the path is absolute. On Unix, a path is absolute if it starts with a /.
160
161On Windows, we also check if the path starts with "x:" where x can be any letter.
162
163\param path The path to check.
164
165\retval 1 The path is absolute.
166\retval 0 The path is relative.
167*/
168
169
170
171
172
48864d28
FM
173/*! \fn void my_mkdir(const char *name)
174
175Create the directory and all the non existing parent directories.
176
177\param name The absolute directory to create.
178
179*/
180
181
182
183
184
e5b2c6f0 185/*! \fn void my_lltoa(unsigned long long int n, char *s, int ssize, int len)
48864d28
FM
186
187Format a long long into a string.
188
189\param n The number to format.
190\param s The buffer to write the number.
e5b2c6f0 191\param ssize The size of the output buffer.
48864d28
FM
192\param len The minimum number of digits to format in the output. If the formatted
193number is less than this length, it is padded with zeros.
194
195*/
196
197
198
199
200
fa6552b0 201/*! \fn int builddia(int day, int month, int year)
48864d28 202
fa6552b0 203Return a numerical value made of the date.
48864d28 204
fa6552b0
FM
205\param day The day of the date.
206\param month The number of the month starting from 1.
207\param year The year.
48864d28 208
fa6552b0 209\return The date in an integer format computed as year*10000+month*100+day.
48864d28
FM
210*/
211
212
213
214
215
216/*! \fn void buildymd(const char *dia, const char *mes, const char *ano, char *wdata)
217Convert the date into a machine format YYYYMMDD.
218
219\param dia The day.
220\param mes The name of the month as spelled in ::mtab1. If the month is invalid, the output date
221is set to month 13.
222\param ano The year.
223\param wdata The buffer to format the date.
224*/
225
226
227
228
229
fa6552b0 230/*! \fn int conv_month(int char *month)
48864d28
FM
231Convert the month's name into its two digits numerical equivalent.
232
fa6552b0
FM
233\param month The name of the month as spelled in ::mtab1.
234
235\return The month number on starting from one. If the month name is not in ::mtab1,
23613 is returned.
48864d28
FM
237*/
238
239
240
241
242
fa6552b0 243/*! \fn const char *conv_month_name(int month)
48864d28
FM
244Convert a month number into a name.
245
fa6552b0
FM
246\param month The number of the month in the range 1 to 12.
247
248\return The name of the month from ::mtab1 unless the month number is not between 1 and 12
249in which case, the number is returned encoded on 3 characters. If the number is
250invalid, the returned string is static and will be reused by any subsequent call to this
251function with an invalid month number.
48864d28
FM
252*/
253
254
255
256
257
258/*! \fn void name_month(char *month,int month_len)
259Get the name of the month according to the language file selected by the user.
260
261\param month The number of the month. It is replaced by the month's name if the number is between
2621 and 12 or by the name of December if the number is invalid.
263\param month_len The size of the \a month buffer.
264
265*/
266
267
268
269
270
48864d28
FM
271/*! \fn char *fixnum(long long int value, int n)
272Rewrite a number to make it more readable. The number may be written
273with the suffix K, M, G or T depending on its magnitude or the digits
274are grouped by three and separated by a dot or a comma.
275
276\param value The number to format.
277\param n If the number is abreviated and this parameter is true then append
278the suffix K, M, G or T if necessary. If it is zero, the number is shortened
279but no suffix is written.
280
281\return A static buffer containing the formatted number. It is overwritten on the next
282call of this function.
283
284*/
285
286
287
288
289
290/*! \def MAXLEN_FIXNUM
291The size of the buffer to format a number in fixnum().
292*/
293
294
295
296
297
298/*! \fn char *fixnum2(long long int value, int n)
299Format a number by grouping the digits by three and separating the groups by
300a dot or a comma.
301*/
302
303
304
305
306/*! \def MAXLEN_FIXNUM2
307The size of the buffer to format a number in fixnum2().
308*/
309
310
311
312
313
314/*! \fn void buildhref(char * href)
315Replace the path given as argument by the first part of a HTML tag to link to the given
316directory (the A tag). More precisely, the argument is replaced by <a href=" followed by the given \a href.
317
318\param href The directory to replace by a HTML A tag with the open HREF to it.
319
320*/
321
322
323
324
325
326/*! \fn char *buildtime(long long int elap)
327Write the elapsed time given in milliseconds as a string in the format HH:MM:SS.
328
329\param elap The elapsed time in milliseconds.
330
331\return A static buffer with the formatted time. It is valid until the function is called again.
332*/
333
334
335
336
337
a1de61fe 338/*! \fn void formatdate(char *date,int date_size,int year,int month,int day,int hour,int minute,int second,int dst)
9e41ca7e
FM
339Format a date to display it in the report.
340
341\param date The buffer to write the formatted date into.
342\param date_size The size of the buffer.
343\param year The absolute year to format. It must be greater than 1900.
344\param month The month to format. It must be between 1 and 12.
345\param day The day to format starting from 1.
346\param hour The hour to format.
347\param minute The minute to format.
348\param second The second to format.
a1de61fe 349\param dst A positive number if the daylight saving is active, zero if it is not active and a negative number if it is unknown.
9e41ca7e
FM
350*/
351
352
353
354
355
fa6552b0
FM
356/*! \fn void computedate(int year,int month,int day,struct tm *t);
357Fill a tm structure with the data of the date.
9426efec
FM
358
359\param year The full year with century.
fa6552b0 360\param month The number of the month starting from one.
9426efec 361\param day The day of the date.
fa6552b0 362\param t The buffer to fill with the date.
9426efec
FM
363*/
364
365
366
367
368
d25d4e6a
FM
369/*! \fn int obtuser(const char *dirname, const char *name)
370Get the number of entries stored in a report data directory. The number is read from
371the <tt>sarg-users</tt> file of the report data's directory.
48864d28 372
d25d4e6a
FM
373\param dirname The directory containing the reports.
374\param name The name of the report directory whose <tt>sarg-users</tt> file must be read.
375
376\return The number of entries in the report or zero if the file doesn't exists.
48864d28
FM
377*/
378
379
380
381
382
ea275279 383/*! \fn void obttotal(const char *dirname, const char *name, int nuser, long long int *tbytes, long long int *media)
d25d4e6a 384Count the total size transfered in a report directory and compute the average number of bytes
48864d28
FM
385per entry.
386
d25d4e6a
FM
387\param dirname The directory containing the reports.
388\param name The name of the report directory whose <tt>sarg-general</tt> file must be read.
d25d4e6a 389\param nuser The number of entries in the report directory.
ea275279
FM
390\param tbytes A variable to store the total number of bytes from this report.
391\param media A variable to store the average number of bytes per entry.
48864d28
FM
392*/
393
394
395
396
42b117e3
FM
397
398/*! \fn int getperiod_fromsarglog(const char *arqtt,struct periodstruct *period)
399Initialize the period with the content of the first line of a sarg log.
400
401\param arqtt The text at the first line of a sarg log file.
402\param period The period to initialize.
403*/
404
405
406
407
408
409/*! \fn void getperiod_fromrange(struct periodstruct *period,int dfrom,int duntil)
410Fill the period with the specified range.
411
412\param period The period to change.
413\param dfrom The start date in the form year*10000+month*100+day.
414\param duntil The end date in the form year*10000+month*100+day.
415*/
416
417
418
419
420
fa6552b0
FM
421/*! \fn int getperiod_buildtext(struct periodstruct *period)
422Build the text to display as the date range of the report.
48864d28 423
fa6552b0 424\param period The object whose text must be contructed.
48864d28 425
fa6552b0
FM
426\retval 0 No error.
427\retval -1 Resulting text too long for buffer.
48864d28
FM
428*/
429
430
431
432
fa6552b0 433
06ced858
FM
434/*! \fn static void copy_images(void)
435Copy the images (in fact all the files) from the directory ::IMAGEDIR into the output directory
436whose name is in ::outdir.
437*/
438
439
440
441
442
e6414a9d 443/*! \fn void vrfydir(const char *per1, const char *addr, const char *site, const char *us, const char *form)
48864d28
FM
444Create a directory to generate a report for the specified connection data and populate it with the a <tt>sarg-date</tt> file
445containing the current date.
446
447The function also create an <tt>images</tt> directory in \a dir and copy all the files from the <tt>SYSCONFDIR/images</tt> into
448that directory.
449
48864d28 450\param per1 The date range in the form: YYYYMMMDD-YYYYMMMDD or DDMMMYYYY-DDMMMYYYY depending on the value of
e6414a9d 451::DateFormat.
48864d28
FM
452\param addr The ip address or host name to which the report is limited. If the string is empty, all the addresses are accepted.
453\param site The destination site to which the report is limited. If the string is empty, all the sites are accepted.
454\param us The user to whom the report is limited. It is an empty string if all the users are accepted.
455\param form The email address to which the report is sent. It is currently unused.
456
457*/
458
459
460
461
462
463/*! \fn void strip_latin(char *line)
464Remove any HTML entity from the line. A HTML entity starts with an ampersand and end at the next
465semicolon.
466
467\param line The text whose html entities are to be removed.
468*/
469
470
471
472
473
120d768c 474/*! \fn void zdate(char *ftime,int ftimesize, const char *DateFormat)
48864d28
FM
475Format the current date and time according to the date format.
476
120d768c
FM
477\param ftime The buffer to format the date.
478\param ftimesize The size of the buffer to store the date
48864d28
FM
479\param DateFormat The format of the date. It can be:
480 \arg u to format as mmm/dd/YYYY HH:MM
481 \arg e to format as dd/mmm/YYYY HH:MM
482 \arg w to format as WW-HH-MM where WW is the week number in the range 00 to 53.
483*/
484
485
486
487
488
489/*! \fn char *fixtime(long int elap)
490Format a "time" into a size or a time formatted as HH:MM:SS.
491
492\param elap The "time" to format in milliseconds if it is a time and into bytes if it is a size.
493
494\return The formatted time.
495
496\bug If the elapsed time is less than 1000ms, the time is formated with the milliseconds as the seconds.
497
498\todo Review this function and documentation based on the calls made to it and the arguments passed by the callers.
499*/
500
501
502
503
504
42b117e3 505/*! \fn void date_from(char *date, int *dfrom, int *duntil)
48864d28
FM
506Split a date range into a date from and a date until. If the date range
507is not a range but just a single date, it is duplicated to make a range out
508of it.
509
510\param date The date range to split in the form <tt>from-until</tt>. If it is a single date,
511it is transformed into a range like <tt>date-date</tt>. Each date is in the form DD/MM/YYYY.
42b117e3
FM
512\param dfrom A variable to write the start date in the form YYYY*10000+MM*100+DD.
513\param duntil A variable to write the end date in the form YYYY*10000+MM*100+DD.
48864d28
FM
514*/
515
516
517
518
519
520/*! \fn char *strlow(char *string)
521Convert a string to all lowercases.
522
523\param string The string to convert.
524
525\return A pointer to the string passed as argument.
526*/
527
528
529
530
531
532/*! \fn char *strup(char *string)
533Convert a string to all uppercases.
534
535\param string The string to convert.
536
537\return A pointer to the string passed as argument.
538*/
539
540
541
542
543
48864d28 544/*! \fn void removetmp(const char *outdir)
fa6552b0 545Purge the file <tt>sarg-general</tt> from all the lines but the total.
48864d28
FM
546
547\param outdir The output directory to purge.
548*/
549
550
551
552
553
554/*! \fn void load_excludecodes(const char *ExcludeCodes)
555Load the list of the HTTP codes to exclude from the report. There must be one code per line.
556Any trailing space is removed and there is no provision for comments.
557
558\param ExcludeCodes The name of the file to load.
559
120d768c 560This function allocate the memory to store the codes and it must be freed by a call to
48864d28
FM
561free_excludecodes().
562*/
563
564
565
566
567
568/*! \fn void free_excludecodes(void)
569Free the memory allocated by load_excludecodes().
570*/
571
572
573
574
575/*! \fn int vercode(const char *code)
576Check if the code is contained in the exclusion list loaded by load_excludecodes().
577
578\param code The HTTP code to test.
579
580\retval 1 The code is excluded.
581\retval 0 The code is not excluded.
582*/
583
584
585
586
587
588/*! \fn void fixnone(char *str)
589Find if the string is the word none and clear the string if it matches. The function
590tolerates the trailing spaces and tabulations.
591
592\param str The text to test for the word "none".
593*/
594
595
596
597
598
2357ef77
FM
599/*! \fn void fixendofline(char *str)
600Remove the control codes and spaces at the end of the line. That is, it remove any ASCII
601code less than or equal to 0x20.
602
603\param str The string to truncate.
604*/
605
606
607
608
48864d28
FM
609/*! \fn int testvaliduserchar(const char *user)
610Tell if the user string contains any invalid character in a user name. The list
611of the invalid characters is defined by ::UserInvalidChar.
612
613\param user The user name to test.
614
615\retval 1 The string contains at least one invalid character.
616\retval 0 The string is valid.
617*/
618
619
620
621
622
623/*! \fn int compar( const void *a, const void *b )
624Compare two integers for bsearch.
625
626\param a A pointer to the first integer.
627\param b A pointer to the second integer.
628
629\retval 1 If a > b.
630\retval 0 If a == b.
631\retval -1 If a < b.
632*/
633
634
635
636
637
638/*! \fn int getnumlist( char *buf, numlist *list, const int len, const int maxvalue )
639Get a comma separated list of numbers and split them into separate values taking into account
640that no value may be greater than a maximum. If a value is in fact a range, it is expended.
641
642Any duplicate value is removed.
643
644\param buf The string with the list of numbers.
645\param list Where to store the numbers.
646\param len The size of the list.
647\param maxvalue The maximum value allowed in the list.
648
649\retval 0 No error.
650\retval -1 Error detected.
651*/
652
653
654
655
656
657/*! \fn void show_info(FILE *fp_ou)
658Write the HTML formatted message to indicate the version of sarg that produced
659the report and when the report was generated.
660
661\param fp_ou The HTML file to which the identification block must be appended.
662*/
663
664
665
666
667
c0ec9cc7 668/*! \fn void show_sarg(FILE *fp_ou, int depth)
48864d28
FM
669Write the header of the report to tell that it was generated by sarg.
670
671\param fp_ou The handle of the HTML file.
c0ec9cc7
FM
672\param depth How deep is the page in the directory tree. It is used to prepend the images directory name
673with as many .. as necessary. If the page is at the same level as the image directory, the depth is zero.
48864d28
FM
674*/
675
676
677
678
679
680/*! \fn char *get_size(const char *path, const char *file)
681Get the size, in human readable form and kibibytes, of the content of a directory.
682
683\param path The path containing the directory to scan.
684\param file The last part of the path to the directory to scan.
685
686\return The size of the path.
687*/
688
689
690
691
2e96438d 692/*! \fn void write_html_head(FILE *fp_ou,int depth, const char *page_title,int javascript)
7f2382f6 693Write the header of the HTML document. The DTD corresponds to a
48864d28
FM
694transitional HTML version 4.01. The title of the document is taken from
695the global variable ::Title.
696
7f2382f6 697\param fp_ou The file to which the HTML header is written.
2e96438d 698\param depth How deep is the page in the directory tree. The path of the relative javascripts is adjusted accordingly.
7f2382f6 699\param title The title of the page.
2e96438d
FM
700\param javascript Which javascript to include in the page. Is a combination of the following bits:
701 \arg HTML_JS_SORTTABLE
7f2382f6
FM
702*/
703
704
705
706
707
708/*! \fn void write_html_header(FILE *fp_ou, int depth, const char *title)
709Write the HTML header of a HTML report file including the sarg logo and
710the beginning of the header of the report.
711
712The header of the report must be closed by a call to close_html_header().
713
48864d28 714\param fp_ou The file to which the HTML header is written.
c0ec9cc7
FM
715\param depth How deep is the page in the directory tree. The depth is passed to show_sarg().
716\param title The title of the page.
2e96438d
FM
717\param javascript Which javascript to include in the page. Is a combination of bits.
718See \see write_html_header() for the possible values.
c0ec9cc7
FM
719*/
720
721
722
723
724
725/*! \fn void close_html_header(FILE *fp_ou)
726Close the header opened by write_html_header().
727
728\param fp_ou The file to which the HTML header is written.
48864d28
FM
729*/
730
731
732
733
734
48864d28
FM
735/*! \fn void url_module(const char *url, char *w2)
736Copy at most 254 bytes from the end of the URL or stops at the first /.
737
738\param url The URL to parse.
739\param w2 A buffer to store the copied portion of the URL. The buffer must
740be at least 255 characters long.
741*/
742
743
744
745
746
fa6552b0 747/*! \fn int write_html_trailer(FILE *fp_ou)
120d768c 748End the HTML file by closing the centered table that was opened by write_html_header(), writting
48864d28
FM
749the informations of show_info() and closing the body and html tag. After this function returns, the
750HTML file is complete and nothing should be written to it.
751
752\param fp_ou The HTML file to close. The file handle is not closed but you should not write anything
753to the file after this function returns.
754
fa6552b0
FM
755\retval 0 No error.
756\retval -1 Write error.
48864d28
FM
757*/
758
759
760
761
762
763/*! \fn void version(void)
764Display the current version of sarg and terminate the program.
765*/
766
767
768
769
770
771/*! \fn char *get_param_value(const char *param,char *line)
772Get the value of a parameter formatted in the string as "param value"
773without the quotes.
774
775If the parameter name matches \a param, then the value following the parameter
776is returned. If it doesn't match, the function return NULL.
777
778The function is suitable to parse configuration files because it will ignore
779comments (anything but spaces and tabulations put before the parameter will make
780it unrecognized by this function)
781
782\param param The parameter name that must be found at the beginning of the line
783with possible spaces or tabulations before.
784\param line The text line to search for the parameter and it's value.
785
786\return The beginning of the value after the equal sign and with the possible
787spaces or tabulations removed. If the line doesn't start with the parameter name,
788the function returns NULL.
789
790*/
791
792
793
794
795
dfb337be
FM
796/*! \fn void write_logo_image(FILE *fp_ou)
797Write a link of the logo of the organisation that generate the report in the HTML file. The logo
798is written in a centered table.
799
800\param fp_ou The handle of the HTML file being written.
801*/
802
803
804
805
ac422f9b
FM
806
807/*! \fn void output_html_string(FILE *fp_ou,const char *str,int maxlen)
dfb337be
FM
808Write a string in a file and replace the problematic ASCII characters by their equivalent HTML entities.
809
810\param fp_ou The handle of the output file.
811\param str The string to output.
ac422f9b
FM
812\param maxlen The maximum number of bytes to write from the string. Set to zero to have no limit.
813
814If the string is longer than the requested length, only the requested number of bytes are output and
815the string is truncated and ended by &hellip;.
816*/
817
818
819
820
821
822/*! \fn void output_html_url(FILE *fp_ou,const char *url)
823Write an URL into the file and replace any & by &amp;.
824
825\param fp_ou The handle of the output file.
826\param url The URL to output.
dfb337be 827*/
51465d08
FM
828
829
830
831
832
833/*! \fn void unlinkdir(const char *dir,int contentonly)
834Delete a directory and its content.
835
836\param dir The name of the directory to delete.
837\param contentonly \c True to delete only the content of the directory and leave the directory
838itself in place. If set to \c zero, the directory is removed too.
839*/
ac422f9b 840