r23784: use the GPLv3 boilerplate as recommended by the FSF and the license text
[tprouty/samba.git] / source / 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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 /*
22   this module provides functions for printing internal strings in the "display charset"
23   This charset may be quite different from the chosen unix charset
24
25   Eventually these functions will need to take care of column count constraints
26
27   The d_ prefix on print functions in Samba refers to the display character set
28   conversion
29 */
30
31 #include "includes.h"
32
33  int d_vfprintf(FILE *f, const char *format, va_list ap)
34 {
35         char *p, *p2;
36         int ret, maxlen, clen;
37         const char *msgstr;
38         va_list ap2;
39
40         /* do any message translations */
41         msgstr = lang_msg(format);
42         if (!msgstr) return -1;
43
44         VA_COPY(ap2, ap);
45
46         ret = vasprintf(&p, msgstr, ap2);
47
48         lang_msg_free(msgstr);
49
50         if (ret <= 0) return ret;
51
52         /* now we have the string in unix format, convert it to the display
53            charset, but beware of it growing */
54         maxlen = ret*2;
55 again:
56         p2 = (char *)SMB_MALLOC(maxlen);
57         if (!p2) {
58                 SAFE_FREE(p);
59                 return -1;
60         }
61         clen = convert_string(CH_UNIX, CH_DISPLAY, p, ret, p2, maxlen, True);
62
63         if (clen >= maxlen) {
64                 /* it didn't fit - try a larger buffer */
65                 maxlen *= 2;
66                 SAFE_FREE(p2);
67                 goto again;
68         }
69
70         /* good, its converted OK */
71         SAFE_FREE(p);
72         ret = fwrite(p2, 1, clen, f);
73         SAFE_FREE(p2);
74
75         return ret;
76 }
77
78
79  int d_fprintf(FILE *f, const char *format, ...)
80 {
81         int ret;
82         va_list ap;
83
84         va_start(ap, format);
85         ret = d_vfprintf(f, format, ap);
86         va_end(ap);
87
88         return ret;
89 }
90
91 static FILE *outfile;
92
93  int d_printf(const char *format, ...)
94 {
95         int ret;
96         va_list ap;
97
98         if (!outfile) outfile = stdout;
99         
100         va_start(ap, format);
101         ret = d_vfprintf(outfile, format, ap);
102         va_end(ap);
103
104         return ret;
105 }
106
107 /* interactive programs need a way of tell d_*() to write to stderr instead
108    of stdout */
109 void display_set_stderr(void)
110 {
111         outfile = stderr;
112 }