summaryrefslogtreecommitdiff
path: root/csvncgi/html.c
blob: df50a61b5501116dad5186eab16b2d39f876859b (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
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <stdio.h>
#include <sys/sysinfo.h>
#include <sys/types.h>
#include <stdint.h>
#include <dirent.h>
#include <sys/stat.h> /* chmod(2)    */
#include <sys/file.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <limits.h>
#include <string.h>   /* strdup(3)   */
#include <libgen.h>   /* basename(3) */
#include <ctype.h>    /* tolower(3)  */
#include <errno.h>
#include <time.h>
#include <sys/time.h>
#include <pwd.h>
#include <grp.h>
#include <stdarg.h>
#include <unistd.h>

#include <defs.h>
#include <fatal.h>
#include <http.h>
#include <html.h>
#include <strbuf.h>


#define HTML_ERRMSG_SIZE 4096

void html_error( const char *fmt, ... )
{
  va_list arg_ptr;
  char  buf[HTML_ERRMSG_SIZE];
  char  msg[HTML_ERRMSG_SIZE];
  char *format = "%s: %s\n";

  va_start( arg_ptr, fmt );

  vsnprintf( msg, HTML_ERRMSG_SIZE, (const void *)fmt, arg_ptr );

  va_end( arg_ptr ); /* Reset variable arguments. */

  snprintf( buf, HTML_ERRMSG_SIZE, format, "http", msg );

  (void)write( STDERR_FILENO, buf, strlen( buf ) );

  exit( 1 );
}

html_errfunc html_fatal = html_error;


void html_raw( const char *data, size_t size )
{
  if( write( STDOUT_FILENO, data, size ) != size )
    html_fatal( "write error on html output" );
}

void html( const char *txt )
{
  html_raw( txt, strlen(txt) );
}

void htmlf( const char *format, ... )
{
  va_list args;
  struct strbuf buf = STRBUF_INIT;

  va_start( args, format );
  strbuf_vaddf( &buf, format, args );
  va_end( args );
  html( buf.buf );
  strbuf_release( &buf );
}