mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
175 lines
3.8 KiB
C++
175 lines
3.8 KiB
C++
/*
|
|
mkvmerge -- utility for splicing together matroska files
|
|
from component media subtypes
|
|
|
|
common.cpp
|
|
|
|
Written by Moritz Bunkus <moritz@bunkus.org>
|
|
|
|
Distributed under the GPL
|
|
see the file COPYING for details
|
|
or visit http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
/*!
|
|
\file
|
|
\version \$Id: common.cpp,v 1.10 2003/04/23 14:38:53 mosu Exp $
|
|
\brief helper functions, common variables
|
|
\author Moritz Bunkus <moritz @ bunkus.org>
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <iconv.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "common.h"
|
|
|
|
int verbose = 1;
|
|
|
|
void _die(const char *s, const char *file, int line) {
|
|
fprintf(stderr, "die @ %s/%d : %s\n", file, line, s);
|
|
exit(1);
|
|
}
|
|
|
|
void _trace(const char *func, const char *file, int line) {
|
|
fprintf(stdout, "trace: %s:%s (%d)\n", file, func, line);
|
|
}
|
|
|
|
/*
|
|
* Endianess stuff
|
|
*/
|
|
|
|
u_int16_t get_uint16(const void *buf) {
|
|
u_int16_t ret;
|
|
unsigned char *tmp;
|
|
|
|
tmp = (unsigned char *) buf;
|
|
|
|
ret = tmp[1] & 0xff;
|
|
ret = (ret << 8) + (tmp[0] & 0xff);
|
|
|
|
return ret;
|
|
}
|
|
|
|
u_int32_t get_uint32(const void *buf) {
|
|
u_int32_t ret;
|
|
unsigned char *tmp;
|
|
|
|
tmp = (unsigned char *) buf;
|
|
|
|
ret = tmp[3] & 0xff;
|
|
ret = (ret << 8) + (tmp[2] & 0xff);
|
|
ret = (ret << 8) + (tmp[1] & 0xff);
|
|
ret = (ret << 8) + (tmp[0] & 0xff);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* Character map conversion stuff
|
|
*/
|
|
|
|
static iconv_t ict_to_utf8, ict_from_utf8;
|
|
static int iconv_initialized = -1;
|
|
|
|
void utf8_init() {
|
|
char *lc_ctype;
|
|
|
|
lc_ctype = getenv("LC_CTYPE");
|
|
if (lc_ctype == NULL)
|
|
lc_ctype = "ISO8859-15";
|
|
|
|
iconv_initialized = 0;
|
|
|
|
ict_to_utf8 = iconv_open("UTF8", lc_ctype);
|
|
if (ict_to_utf8 == (iconv_t)(-1))
|
|
fprintf(stdout, "Warning: Could not initialize the iconv library for "
|
|
"the conversion from %s to UFT8. "
|
|
"Strings will not be converted to UTF-8 and the resulting "
|
|
"Matroska file might not comply with the Matroska specs ("
|
|
"error: %d, %s).\n", lc_ctype, errno, strerror(errno));
|
|
else
|
|
iconv_initialized = 1;
|
|
|
|
ict_from_utf8 = iconv_open(lc_ctype, "UTF8");
|
|
if (ict_from_utf8 == (iconv_t)(-1))
|
|
fprintf(stdout, "Warning: Could not initialize the iconv library for "
|
|
"the conversion from UFT8 to %s. "
|
|
"Strings cannot be converted from UTF-8 and might be displayed "
|
|
"incorrectly (error: %d, %s).\n", lc_ctype, errno,
|
|
strerror(errno));
|
|
else
|
|
iconv_initialized |= 2;
|
|
}
|
|
|
|
void utf8_done() {
|
|
if (iconv_initialized & 1)
|
|
iconv_close(ict_to_utf8);
|
|
if (iconv_initialized & 2)
|
|
iconv_close(ict_from_utf8);
|
|
}
|
|
|
|
char *to_utf8(char *local) {
|
|
char *utf8, *slocal, *sutf8;
|
|
size_t llocal, lutf8;
|
|
int len;
|
|
|
|
if (iconv_initialized == -1)
|
|
utf8_init();
|
|
|
|
if (ict_to_utf8 == (iconv_t)(-1)) {
|
|
utf8 = strdup(local);
|
|
if (utf8 == NULL)
|
|
die("strdup");
|
|
return utf8;
|
|
}
|
|
|
|
len = strlen(local) * 4;
|
|
utf8 = (char *)malloc(len + 1);
|
|
if (utf8 == NULL)
|
|
die("malloc");
|
|
memset(utf8, 0, len + 1);
|
|
|
|
iconv(ict_to_utf8, NULL, 0, NULL, 0); // Reset the iconv state.
|
|
llocal = len / 4;
|
|
lutf8 = len;
|
|
slocal = local;
|
|
sutf8 = utf8;
|
|
iconv(ict_to_utf8, &slocal, &llocal, &sutf8, &lutf8);
|
|
|
|
return utf8;
|
|
}
|
|
|
|
char *from_utf8(char *utf8) {
|
|
char *local, *slocal, *sutf8;
|
|
int len;
|
|
size_t llocal, lutf8;
|
|
|
|
if (iconv_initialized == -1)
|
|
utf8_init();
|
|
|
|
if (ict_from_utf8 == (iconv_t)(-1)) {
|
|
local = strdup(utf8);
|
|
if (local == NULL)
|
|
die("strdup");
|
|
return local;
|
|
}
|
|
|
|
len = strlen(utf8) * 4;
|
|
local = (char *)malloc(len + 1);
|
|
if (local == NULL)
|
|
die("malloc");
|
|
memset(local, 0, len + 1);
|
|
|
|
iconv(ict_from_utf8, NULL, 0, NULL, 0); // Reset the iconv state.
|
|
llocal = len;
|
|
lutf8 = len / 4;
|
|
slocal = local;
|
|
sutf8 = utf8;
|
|
iconv(ict_from_utf8, &sutf8, &lutf8, &slocal, &llocal);
|
|
|
|
return local;
|
|
}
|