r8681: if SOCKET_WRAPPER_DIR starts with ./ then strip it internally. This saves...
[bbaumbach/samba-autobuild/.git] / source4 / lib / dprintf.c
1 /* 
2    Unix SMB/CIFS implementation.
3    display print functions
4    Copyright (C) Andrew Tridgell 2001
5    
6    This program 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 2 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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21
22 /*
23   this module provides functions for printing internal strings in the "display charset"
24   This charset may be quite different from the chosen unix charset
25
26   Eventually these functions will need to take care of column count constraints
27
28   The d_ prefix on print functions in Samba refers to the display character set
29   conversion
30 */
31
32 #include "includes.h"
33
34 int d_vfprintf(FILE *f, const char *format, va_list ap) _PRINTF_ATTRIBUTE(2,0)
35 {
36         char *p, *p2;
37         int ret, maxlen, clen;
38         va_list ap2;
39
40         /* do any message translations */
41         VA_COPY(ap2, ap);
42
43         ret = vasprintf(&p, format, ap2);
44
45         if (ret <= 0) return ret;
46
47         /* now we have the string in unix format, convert it to the display
48            charset, but beware of it growing */
49         maxlen = ret*2;
50 again:
51         p2 = malloc(maxlen);
52         if (!p2) {
53                 SAFE_FREE(p);
54                 return -1;
55         }
56         clen = convert_string(CH_UNIX, CH_DISPLAY, p, ret, p2, maxlen);
57
58         if (clen >= maxlen) {
59                 /* it didn't fit - try a larger buffer */
60                 maxlen *= 2;
61                 SAFE_FREE(p2);
62                 goto again;
63         }
64
65         /* good, its converted OK */
66         SAFE_FREE(p);
67         ret = fwrite(p2, 1, clen, f);
68         SAFE_FREE(p2);
69
70         return ret;
71 }
72
73
74 int d_fprintf(FILE *f, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
75 {
76         int ret;
77         va_list ap;
78
79         va_start(ap, format);
80         ret = d_vfprintf(f, format, ap);
81         va_end(ap);
82
83         return ret;
84 }
85
86 static FILE *outfile;
87
88 int d_printf(const char *format, ...) _PRINTF_ATTRIBUTE(1,2)
89 {
90         int ret;
91         va_list ap;
92
93         if (!outfile) outfile = stdout;
94         
95         va_start(ap, format);
96         ret = d_vfprintf(outfile, format, ap);
97         va_end(ap);
98
99         return ret;
100 }
101
102 /* interactive programs need a way of tell d_*() to write to stderr instead
103    of stdout */
104 void display_set_stderr(void)
105 {
106         outfile = stderr;
107 }