Huge Windows utf8 I/O patch.
[platform/upstream/flac.git] / src / metaflac / utils.c
1 /* metaflac - Command-line FLAC metadata editor
2  * Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #if HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include <ctype.h>
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include "utils.h"
29 #include "FLAC/assert.h"
30 #include "share/alloc.h"
31 #include "share/safe_str.h"
32 #include "share/utf8.h"
33 #include "share/compat.h"
34
35 void die(const char *message)
36 {
37         FLAC__ASSERT(0 != message);
38         flac_fprintf(stderr, "ERROR: %s\n", message);
39         exit(1);
40 }
41
42 #ifdef FLAC__VALGRIND_TESTING
43 size_t local_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
44 {
45         size_t ret = fwrite(ptr, size, nmemb, stream);
46         if(!ferror(stream))
47                 fflush(stream);
48         return ret;
49 }
50 #endif
51
52 char *local_strdup(const char *source)
53 {
54         char *ret;
55         FLAC__ASSERT(0 != source);
56         if(0 == (ret = strdup(source)))
57                 die("out of memory during strdup()");
58         return ret;
59 }
60
61 void local_strcat(char **dest, const char *source)
62 {
63         size_t ndest, nsource;
64
65         FLAC__ASSERT(0 != dest);
66         FLAC__ASSERT(0 != source);
67
68         ndest = *dest? strlen(*dest) : 0;
69         nsource = strlen(source);
70
71         if(nsource == 0)
72                 return;
73
74         *dest = safe_realloc_add_3op_(*dest, ndest, /*+*/nsource, /*+*/1);
75         if(0 == *dest)
76                 die("out of memory growing string");
77         safe_strncpy((*dest)+ndest, source, ndest + nsource + 1);
78 }
79
80 void hexdump(const char *filename, const FLAC__byte *buf, unsigned bytes, const char *indent)
81 {
82         unsigned i, left = bytes;
83         const FLAC__byte *b = buf;
84
85         for(i = 0; i < bytes; i += 16) {
86                 flac_printf("%s%s%s%08X: "
87                         "%02X %02X %02X %02X %02X %02X %02X %02X "
88                         "%02X %02X %02X %02X %02X %02X %02X %02X "
89                         "%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c\n",
90                         filename? filename:"", filename? ":":"",
91                         indent, i,
92                         left >  0? (unsigned char)b[ 0] : 0,
93                         left >  1? (unsigned char)b[ 1] : 0,
94                         left >  2? (unsigned char)b[ 2] : 0,
95                         left >  3? (unsigned char)b[ 3] : 0,
96                         left >  4? (unsigned char)b[ 4] : 0,
97                         left >  5? (unsigned char)b[ 5] : 0,
98                         left >  6? (unsigned char)b[ 6] : 0,
99                         left >  7? (unsigned char)b[ 7] : 0,
100                         left >  8? (unsigned char)b[ 8] : 0,
101                         left >  9? (unsigned char)b[ 9] : 0,
102                         left > 10? (unsigned char)b[10] : 0,
103                         left > 11? (unsigned char)b[11] : 0,
104                         left > 12? (unsigned char)b[12] : 0,
105                         left > 13? (unsigned char)b[13] : 0,
106                         left > 14? (unsigned char)b[14] : 0,
107                         left > 15? (unsigned char)b[15] : 0,
108                         (left >  0) ? (isprint(b[ 0]) ? b[ 0] : '.') : ' ',
109                         (left >  1) ? (isprint(b[ 1]) ? b[ 1] : '.') : ' ',
110                         (left >  2) ? (isprint(b[ 2]) ? b[ 2] : '.') : ' ',
111                         (left >  3) ? (isprint(b[ 3]) ? b[ 3] : '.') : ' ',
112                         (left >  4) ? (isprint(b[ 4]) ? b[ 4] : '.') : ' ',
113                         (left >  5) ? (isprint(b[ 5]) ? b[ 5] : '.') : ' ',
114                         (left >  6) ? (isprint(b[ 6]) ? b[ 6] : '.') : ' ',
115                         (left >  7) ? (isprint(b[ 7]) ? b[ 7] : '.') : ' ',
116                         (left >  8) ? (isprint(b[ 8]) ? b[ 8] : '.') : ' ',
117                         (left >  9) ? (isprint(b[ 9]) ? b[ 9] : '.') : ' ',
118                         (left > 10) ? (isprint(b[10]) ? b[10] : '.') : ' ',
119                         (left > 11) ? (isprint(b[11]) ? b[11] : '.') : ' ',
120                         (left > 12) ? (isprint(b[12]) ? b[12] : '.') : ' ',
121                         (left > 13) ? (isprint(b[13]) ? b[13] : '.') : ' ',
122                         (left > 14) ? (isprint(b[14]) ? b[14] : '.') : ' ',
123                         (left > 15) ? (isprint(b[15]) ? b[15] : '.') : ' '
124                 );
125                 left -= 16;
126                 b += 16;
127    }
128 }
129
130 void print_error_with_chain_status(FLAC__Metadata_Chain *chain, const char *format, ...)
131 {
132         const FLAC__Metadata_ChainStatus status = FLAC__metadata_chain_status(chain);
133         va_list args;
134
135         FLAC__ASSERT(0 != format);
136
137         va_start(args, format);
138
139         (void) vfprintf(stderr, format, args);
140
141         va_end(args);
142
143         flac_fprintf(stderr, ", status = \"%s\"\n", FLAC__Metadata_ChainStatusString[status]);
144
145         if(status == FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE) {
146                 flac_fprintf(stderr, "\n"
147                         "The FLAC file could not be opened.  Most likely the file does not exist\n"
148                         "or is not readable.\n"
149                 );
150         }
151         else if(status == FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE) {
152                 flac_fprintf(stderr, "\n"
153                         "The file does not appear to be a FLAC file.\n"
154                 );
155         }
156         else if(status == FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE) {
157                 flac_fprintf(stderr, "\n"
158                         "The FLAC file does not have write permissions.\n"
159                 );
160         }
161         else if(status == FLAC__METADATA_CHAIN_STATUS_BAD_METADATA) {
162                 flac_fprintf(stderr, "\n"
163                         "The metadata to be writted does not conform to the FLAC metadata\n"
164                         "specifications.\n"
165                 );
166         }
167         else if(status == FLAC__METADATA_CHAIN_STATUS_READ_ERROR) {
168                 flac_fprintf(stderr, "\n"
169                         "There was an error while reading the FLAC file.\n"
170                 );
171         }
172         else if(status == FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR) {
173                 flac_fprintf(stderr, "\n"
174                         "There was an error while writing FLAC file; most probably the disk is\n"
175                         "full.\n"
176                 );
177         }
178         else if(status == FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR) {
179                 flac_fprintf(stderr, "\n"
180                         "There was an error removing the temporary FLAC file.\n"
181                 );
182         }
183 }
184
185 FLAC__bool parse_vorbis_comment_field(const char *field_ref, char **field, char **name, char **value, unsigned *length, const char **violation)
186 {
187         static const char * const violations[] = {
188                 "field name contains invalid character",
189                 "field contains no '=' character"
190         };
191
192         char *p, *q, *s;
193
194         if(0 != field)
195                 *field = local_strdup(field_ref);
196
197         s = local_strdup(field_ref);
198
199         if(0 == (p = strchr(s, '='))) {
200                 free(s);
201                 *violation = violations[1];
202                 return false;
203         }
204         *p++ = '\0';
205
206         for(q = s; *q; q++) {
207                 if(*q < 0x20 || *q > 0x7d || *q == 0x3d) {
208                         free(s);
209                         *violation = violations[0];
210                         return false;
211                 }
212         }
213
214         *name = local_strdup(s);
215         *value = local_strdup(p);
216         *length = strlen(p);
217
218         free(s);
219         return true;
220 }
221
222 void write_vc_field(const char *filename, const FLAC__StreamMetadata_VorbisComment_Entry *entry, FLAC__bool raw, FILE *f)
223 {
224         if(0 != entry->entry) {
225                 if(filename)
226                         fprintf(f, "%s:", filename);
227
228                 if(!raw) {
229                         /*
230                          * WATCHOUT: comments that contain an embedded null will
231                          * be truncated by utf_decode().
232                          */
233                         char *converted;
234
235                         if(utf8_decode((const char *)entry->entry, &converted) >= 0) {
236                                 (void) local_fwrite(converted, 1, strlen(converted), f);
237                                 free(converted);
238                         }
239                         else {
240                                 (void) local_fwrite(entry->entry, 1, entry->length, f);
241                         }
242                 }
243                 else {
244                         (void) local_fwrite(entry->entry, 1, entry->length, f);
245                 }
246         }
247
248         putc('\n', f);
249 }
250
251 void write_vc_fields(const char *filename, const char *field_name, const FLAC__StreamMetadata_VorbisComment_Entry entry[], unsigned num_entries, FLAC__bool raw, FILE *f)
252 {
253         unsigned i;
254         const unsigned field_name_length = (0 != field_name)? strlen(field_name) : 0;
255
256         for(i = 0; i < num_entries; i++) {
257                 if(0 == field_name || FLAC__metadata_object_vorbiscomment_entry_matches(entry[i], field_name, field_name_length))
258                         write_vc_field(filename, entry + i, raw, f);
259         }
260 }