File: AP_commons.cpp

package info (click to toggle)
gtkpod 2.1.5-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,412 kB
  • ctags: 6,307
  • sloc: ansic: 51,604; xml: 16,135; sh: 11,916; cpp: 7,545; perl: 1,449; makefile: 1,378; lex: 638; awk: 73; python: 35
file content (370 lines) | stat: -rw-r--r-- 14,228 bytes parent folder | download | duplicates (6)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
//==================================================================//
/*
 AtomicParsley - AP_commons.cpp

 AtomicParsley is GPL software; you can freely distribute,
 redistribute, modify & use under the terms of the GNU General
 Public License; either version 2 or its successor.

 AtomicParsley is distributed under the GPL "AS IS", without
 any warranty; without the implied warranty of merchantability
 or fitness for either an expressed or implied particular purpose.

 Please see the included GNU General Public License (GPL) for
 your rights and further details; see the file COPYING. If you
 cannot, write to the Free Software Foundation, 59 Temple Place
 Suite 330, Boston, MA 02111-1307, USA.  Or www.fsf.org

 Copyright �2006 puck_lock

 ----------------------
 Code Contributions by:

 * SLarew - prevent writing past array in Convert_multibyteUTF16_to_wchar bugfix

 */
//==================================================================//
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <wchar.h>

#include "AP_commons.h"
#include "AP_iconv.h"
#include "AtomicParsley.h"

#if defined (_MSC_VER)

///////////////////////////////////////////////////////////////////////////////////////
//                 Win32 function to support 2-4GB large files                       //
///////////////////////////////////////////////////////////////////////////////////////

int fseeko(FILE *stream, uint64_t pos, int whence) { //only using SEEK_SET here
    if (whence == SEEK_SET) {
        fpos_t fpos = pos;
        return fsetpos(stream, &fpos);
    }
    else {
        return -1;
    }
    return -1;
}
#endif

///////////////////////////////////////////////////////////////////////////////////////
//                             File reading routines                                 //
///////////////////////////////////////////////////////////////////////////////////////

uint8_t APar_read8(FILE* m4afile, uint32_t pos) {
    uint8_t a_byte = 0;
    fseeko(m4afile, pos, SEEK_SET);
    fread(&a_byte, 1, 1, m4afile);
    return a_byte;
}

uint16_t APar_read16(char* buffer, FILE* m4afile, uint32_t pos) {
    fseeko(m4afile, pos, SEEK_SET);
    fread(buffer, 1, 2, m4afile);
    return UInt16FromBigEndian(buffer);
}

uint32_t APar_read32(char* buffer, FILE* m4afile, uint32_t pos) {
    fseeko(m4afile, pos, SEEK_SET);
    fread(buffer, 1, 4, m4afile);
    return UInt32FromBigEndian(buffer);
}

void APar_readX(char* buffer, FILE* m4afile, uint32_t pos, uint32_t length) {
    fseeko(m4afile, pos, SEEK_SET);
    fread(buffer, 1, length, m4afile);
    return;
}

uint32_t APar_FindValueInAtom(char* uint32_buffer, FILE* m4afile, short an_atom, uint32_t start_position, uint32_t eval_number) {
    uint32_t current_pos = start_position;
    memset(uint32_buffer, 0, 5);
    while (current_pos <= parsedAtoms[an_atom].AtomicLength) {
        current_pos++;
        if (eval_number > 65535) {
            //current_pos +=4;
            if (APar_read32(uint32_buffer, m4afile, parsedAtoms[an_atom].AtomicStart + current_pos) == eval_number) {
                break;
            }
        }
        else {
            //current_pos +=2;
            if (APar_read16(uint32_buffer, m4afile, parsedAtoms[an_atom].AtomicStart + current_pos)
                    == (uint16_t) eval_number) {
                break;
            }
        }
        if (current_pos >= parsedAtoms[an_atom].AtomicLength) {
            current_pos = 0;
            break;
        }
    }
    return current_pos;
}

///////////////////////////////////////////////////////////////////////////////////////
//                                Language specifics                                 //
///////////////////////////////////////////////////////////////////////////////////////

void APar_UnpackLanguage(unsigned char lang_code[], uint16_t packed_language) {
    lang_code[3] = 0;
    lang_code[2] = (packed_language & 0x1F) + 0x60;
    lang_code[1] = ((packed_language >> 5) & 0x1F) + 0x60;
    lang_code[0] = ((packed_language >> 10) & 0x1F) + 0x60;
    return;
}

uint16_t PackLanguage(const char* language_code, uint8_t lang_offset) { //?? is there a problem here? und does't work http://www.w3.org/WAI/ER/IG/ert/iso639.htm
    //I think Apple's 3gp asses decoder is a little off. First, it doesn't support a lot of those 3 letter language codes above on that page. for example 'zul' blocks *all* metadata from showing up. 'fre' is a no-no, but 'fra' is fine.
    //then, the spec calls for all strings to be null terminated. So then why does a '� 2005' (with a NULL at the end) show up as '� 2005' in 'pol', but '� 2005 ?' in 'fas' Farsi? Must be Apple's implementation, because the files are identical except for the uint16_t lang setting.

    uint16_t packed_language = 0;

    if (language_code[0 + lang_offset] < 97 || language_code[0 + lang_offset] > 122
            || language_code[1 + lang_offset] < 97 || language_code[1 + lang_offset] > 122
            || language_code[2 + lang_offset] < 97 || language_code[2 + lang_offset] > 122) {

        return packed_language;
    }

    packed_language = (((language_code[0 + lang_offset] - 0x60) & 0x1F) << 10)
            | ((language_code[1 + lang_offset] - 0x60) & 0x1F) << 5 | ((language_code[2 + lang_offset] - 0x60) & 0x1F);
    return packed_language;
}

///////////////////////////////////////////////////////////////////////////////////////
//                                platform specifics                                 //
///////////////////////////////////////////////////////////////////////////////////////

#if defined (_MSC_VER)
int lroundf(float a) {
    return a/1;
}
#endif

#if ( defined (WIN32) && !defined (__CYGWIN__) && !defined (_LIBC) ) || defined (_MSC_VER)
// use glibc's strsep only on windows when cygwin & libc are undefined; otherwise the internal strsep will be used
// This marks the point where a ./configure & makefile combo would make this easier

/* Copyright (C) 1992, 93, 96, 97, 98, 99, 2004 Free Software Foundation, Inc.
 This strsep function is part of the GNU C Library - v2.3.5; LGPL.
 */

char *strsep (char **stringp, const char *delim)
{
    char *begin, *end;

    begin = *stringp;
    if (begin == NULL)
    return NULL;

    //A frequent case is when the delimiter string contains only one character.  Here we don't need to call the expensive `strpbrk' function and instead work using `strchr'.
    if (delim[0] == '\0' || delim[1] == '\0')
    {
        char ch = delim[0];

        if (ch == '\0')
        end = NULL;
        else
        {
            if (*begin == ch)
            end = begin;
            else if (*begin == '\0')
            end = NULL;
            else
            end = strchr (begin + 1, ch);
        }
    }
    else

    end = strpbrk (begin, delim); //Find the end of the token.

    if (end)
    {
        *end++ = '\0'; //Terminate the token and set *STRINGP past NUL character.
        *stringp = end;
    }
    else
    *stringp = NULL; //No more delimiters; this is the last token.

    return begin;
}
#endif

///////////////////////////////////////////////////////////////////////////////////////
//                                     strings                                       //
///////////////////////////////////////////////////////////////////////////////////////

wchar_t* Convert_multibyteUTF16_to_wchar(char* input_unicode, size_t glyph_length, bool skip_BOM) { //TODO: is this like wcstombs?
    int BOM_mark_bytes = 0;
    if (skip_BOM) {
        BOM_mark_bytes = 2;
    }

    wchar_t* utf16_data = (wchar_t*) malloc(sizeof(wchar_t) * glyph_length); //just to be sure there will be a trailing NULL
    wmemset(utf16_data, 0, glyph_length);

    for (size_t i = 0; i < glyph_length; i++) {
#if defined (__ppc__) || defined (__ppc64__)
        utf16_data[i] = (input_unicode[2*i + BOM_mark_bytes] & 0x00ff) << 8 | (input_unicode[2*i + 1 + BOM_mark_bytes]) << 0; //+2 & +3 to skip over the BOM
#else
        utf16_data[i] = (input_unicode[2 * i + BOM_mark_bytes] << 8)
                | ((input_unicode[2 * i + 1 + BOM_mark_bytes]) & 0x00ff) << 0; //+2 & +3 to skip over the BOM
#endif
    }
    return utf16_data;
}

unsigned char* Convert_multibyteUTF16_to_UTF8(char* input_utf16, size_t glyph_length, size_t byte_count) {
    unsigned char* utf8_data = (unsigned char*) malloc(sizeof(unsigned char) * glyph_length);
    memset(utf8_data, 0, glyph_length);

    UTF16BEToUTF8(utf8_data, glyph_length, (unsigned char*) input_utf16 + 2, byte_count);
    return utf8_data;
}

wchar_t* Convert_multibyteUTF8_to_wchar(const char* input_utf8) { //TODO: is this like mbstowcs?
    size_t string_length = strlen(input_utf8) + 1; //account for terminating NULL
    size_t char_glyphs = mbstowcs(NULL, input_utf8, string_length); //passing NULL pre-calculates the size of wchar_t needed

    unsigned char* utf16_conversion = (unsigned char*) malloc(sizeof(unsigned char) * string_length * 2);
    memset(utf16_conversion, 0, string_length * 2);

    int utf_16_glyphs = UTF8ToUTF16BE(utf16_conversion, char_glyphs * 2, (unsigned char*) input_utf8, string_length);
    return Convert_multibyteUTF16_to_wchar((char*) utf16_conversion, (size_t) utf_16_glyphs, false);
}

///////////////////////////////////////////////////////////////////////////////////////
//                                     generics                                      //
///////////////////////////////////////////////////////////////////////////////////////

uint16_t UInt16FromBigEndian(const char *string) {
#if defined (__ppc__) || defined (__ppc64__)
    uint16_t test;
    memcpy(&test,string,2);
    return test;
#else
    return (((string[0] & 0xff) << 8) | (string[1] & 0xff) << 0);
#endif
}

uint32_t UInt32FromBigEndian(const char *string) {
#if defined (__ppc__) || defined (__ppc64__)
    uint32_t test;
    memcpy(&test,string,4);
    return test;
#else
    return (((string[0] & 0xff) << 24) | ((string[1] & 0xff) << 16) | ((string[2] & 0xff) << 8)
            | (string[3] & 0xff) << 0);
#endif
}

uint64_t UInt64FromBigEndian(const char *string) {
#if defined (__ppc__) || defined (__ppc64__)
    uint64_t test;
    memcpy(&test,string,8);
    return test;
#else
    return (((string[0] & 0xff) >> 0) | ((string[1] & 0xff) >> 8) | ((string[2] & 0xff) >> 16)
            | ((string[3] & 0xff) >> 24) | ((string[4] & 0xff) << 24) | ((string[5] & 0xff) << 16)
            | ((string[6] & 0xff) << 8) | (string[7] & 0xff) << 0);
#endif
}

void char4TOuint32(uint32_t lnum, char* data) {
    data[0] = (lnum >> 24) & 0xff;
    data[1] = (lnum >> 16) & 0xff;
    data[2] = (lnum >> 8) & 0xff;
    data[3] = (lnum >> 0) & 0xff;
    return;
}

void char8TOuint64(uint64_t ullnum, char* data) {
    data[0] = (ullnum >> 56) & 0xff;
    data[1] = (ullnum >> 48) & 0xff;
    data[2] = (ullnum >> 40) & 0xff;
    data[3] = (ullnum >> 32) & 0xff;
    data[4] = (ullnum >> 24) & 0xff;
    data[5] = (ullnum >> 16) & 0xff;
    data[6] = (ullnum >> 8) & 0xff;
    data[7] = (ullnum >> 0) & 0xff;
    return;
}

///////////////////////////////////////////////////////////////////////////////////////
//                        3gp asset support (for 'loci')                             //
///////////////////////////////////////////////////////////////////////////////////////

uint32_t float_to_16x16bit_fixed_point(double floating_val) {
    uint32_t fixedpoint_16bit = 0;
    int16_t long_integer = (int16_t) floating_val;
    //to get a fixed 16-bit decimal, work on the decimal part along; multiply by (2^8 * 2) which moves the decimal over 16 bits to create our int16_t
    //now while the degrees can be negative (requiring a int16_6), the decimal portion is always positive (and thus requiring a uint16_t)
    uint16_t long_decimal = (int16_t) ((floating_val - long_integer) * (double) (65536));
    fixedpoint_16bit = long_integer * 65536 + long_decimal; //same as bitshifting, less headache doing it
    return fixedpoint_16bit;
}

double fixed_point_16x16bit_to_double(uint32_t fixed_point) {
    double return_val = 0.0;
    int16_t long_integer = fixed_point / 65536;
    uint16_t long_decimal = fixed_point - (long_integer * 65536);
    return_val = long_integer + ((double) long_decimal / 65536);

    if (return_val < 0.0) {
        return_val -= 1.0;
    }

    return return_val;
}

uint32_t widechar_len(char* instring, uint32_t _bytes_) {
    uint32_t wstring_len = 0;
    for (uint32_t i = 0; i <= _bytes_ / 2; i++) {
        if (instring[0] == 0 && instring[1] == 0) {
            break;
        }
        else {
            instring += 2;
            wstring_len++;
        }
    }
    return wstring_len;
}

bool APar_assert(bool expression, int error_msg, char* supplemental_info) {
    bool force_break = true;
    if (!expression) {
        force_break = false;
        switch (error_msg) {
        case 1: { //trying to set an iTunes-style metadata tag on an 3GP/MobileMPEG-4
            fprintf(stdout, "AP warning:\n\tSetting the %s tag is for ordinary MPEG-4 files.\n\tIt is not supported on 3GP files.\nSkipping\n", supplemental_info);
            break;
        }

        case 2: { //trying to set a 3gp asset on an mpeg-4 file with the improper brand
            fprintf(stdout, "AP warning:\n\tSetting the %s asset is only available on 3GPP files.\n\tIt is not supported on ordinary MPEG-4 files.\nSkipping\n", supplemental_info);
            break;
        }

        case 3: { //trying to set a 3gp album asset on an early 3gp file that only came into being with 3gp6
            fprintf(stdout, "AtomicParsley warning: \n\tthe 'albm' tag is only allowed on files of '3gp6' brand & later.\nSkipping.\n");
            break;
        }
        case 4: { //trying to set a 3gp album asset on an early 3gp file that only came into being with 3gp6
            fprintf(stdout, "Major brand of given file: %s\n", supplemental_info);
            break;
        }
        case 5: { //trying to set metadata on track 33 when there are only 3 tracks
            fprintf(stdout, "AP warning: skipping non-existing track number setting iso atom: %s.\n", supplemental_info);
            break;
        }
        }
    }
    return force_break;
}