2018-05-12 16:03:00 +00:00
|
|
|
/*
|
2009-10-03 18:01:33 +00:00
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
|
|
|
*
|
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2019-01-05 15:52:43 +00:00
|
|
|
* Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al.
|
2009-10-03 18:01:33 +00:00
|
|
|
* (see AUTHORS)
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iconv.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-05-12 16:03:00 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "logging.h"
|
|
|
|
#include "text_object.h"
|
2009-10-03 18:01:33 +00:00
|
|
|
|
|
|
|
#define ICONV_CODEPAGE_LENGTH 20
|
|
|
|
|
|
|
|
static long iconv_selected;
|
|
|
|
static long iconv_count = 0;
|
|
|
|
static char iconv_converting = 0;
|
|
|
|
static iconv_t **iconv_cd = 0;
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
int register_iconv(iconv_t *new_iconv) {
|
|
|
|
iconv_cd = (void ***)realloc(iconv_cd, sizeof(iconv_t *) * (iconv_count + 1));
|
2019-02-23 19:40:34 +00:00
|
|
|
if (!iconv_cd) { CRIT_ERR(nullptr, NULL, "Out of memory"); }
|
2018-05-12 16:03:00 +00:00
|
|
|
iconv_cd[iconv_count] = (void **)malloc(sizeof(iconv_t));
|
2019-02-23 19:40:34 +00:00
|
|
|
if (!iconv_cd[iconv_count]) { CRIT_ERR(nullptr, NULL, "Out of memory"); }
|
2018-05-12 16:03:00 +00:00
|
|
|
memcpy(iconv_cd[iconv_count], new_iconv, sizeof(iconv_t));
|
|
|
|
iconv_count++;
|
|
|
|
return iconv_count;
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void free_iconv(struct text_object *obj) {
|
|
|
|
long i;
|
2009-10-03 18:01:33 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-29 13:24:14 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
if (!iconv_cd) return;
|
2009-10-03 18:01:33 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
for (i = 0; i < iconv_count; i++) {
|
|
|
|
if (iconv_cd[i]) {
|
|
|
|
iconv_close(*iconv_cd[i]);
|
|
|
|
free(iconv_cd[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(iconv_cd);
|
|
|
|
iconv_cd = 0;
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void iconv_convert(size_t *a, char *buff_in, char *p, size_t p_max_size) {
|
|
|
|
int bytes;
|
|
|
|
size_t dummy1, dummy2;
|
2019-02-24 20:31:46 +00:00
|
|
|
#if defined(__DragonFly__)
|
2018-05-12 16:03:00 +00:00
|
|
|
const char *ptr = buff_in;
|
2009-10-03 18:01:33 +00:00
|
|
|
#else
|
2018-05-12 16:03:00 +00:00
|
|
|
char *ptr = buff_in;
|
2009-10-03 18:01:33 +00:00
|
|
|
#endif
|
2018-05-12 16:03:00 +00:00
|
|
|
char *outptr = p;
|
|
|
|
|
|
|
|
if (*a <= 0 || !iconv_converting || iconv_selected <= 0 ||
|
|
|
|
iconv_cd[iconv_selected - 1] == (iconv_t)(-1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
dummy1 = dummy2 = *a;
|
|
|
|
|
|
|
|
strncpy(buff_in, p, p_max_size);
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
iconv(*iconv_cd[iconv_selected - 1], nullptr, NULL, NULL, NULL);
|
2018-05-12 16:03:00 +00:00
|
|
|
while (dummy1 > 0) {
|
|
|
|
bytes =
|
|
|
|
iconv(*iconv_cd[iconv_selected - 1], &ptr, &dummy1, &outptr, &dummy2);
|
|
|
|
if (bytes == -1) {
|
|
|
|
NORM_ERR("Iconv codeset conversion failed");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 08:09:23 +00:00
|
|
|
/* It is necessary when we are converting from multibyte to
|
2018-05-12 16:03:00 +00:00
|
|
|
* singlebyte codepage */
|
|
|
|
// a = outptr - p;
|
|
|
|
//(*a) = *a - dummy2;
|
|
|
|
(*a) = outptr - p;
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void init_iconv_start(struct text_object *obj, void *free_at_crash,
|
|
|
|
const char *arg) {
|
|
|
|
char iconv_from[ICONV_CODEPAGE_LENGTH];
|
|
|
|
char iconv_to[ICONV_CODEPAGE_LENGTH];
|
|
|
|
|
|
|
|
if (iconv_converting) {
|
|
|
|
CRIT_ERR(obj, free_at_crash,
|
|
|
|
"You must stop your last iconv conversion before "
|
|
|
|
"starting another");
|
|
|
|
}
|
|
|
|
if (sscanf(arg, "%s %s", iconv_from, iconv_to) != 2) {
|
|
|
|
CRIT_ERR(obj, free_at_crash, "Invalid arguments for iconv_start");
|
|
|
|
} else {
|
|
|
|
iconv_t new_iconv;
|
|
|
|
|
|
|
|
new_iconv = iconv_open(iconv_to, iconv_from);
|
|
|
|
if (new_iconv == (iconv_t)(-1)) {
|
|
|
|
NORM_ERR("Can't convert from %s to %s.", iconv_from, iconv_to);
|
|
|
|
} else {
|
|
|
|
obj->data.i = register_iconv(&new_iconv);
|
|
|
|
iconv_converting = 1;
|
|
|
|
}
|
|
|
|
}
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void init_iconv_stop(void) { iconv_converting = 0; }
|
2009-10-03 18:01:33 +00:00
|
|
|
|
2019-02-23 19:40:34 +00:00
|
|
|
void print_iconv_start(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)p;
|
|
|
|
(void)p_max_size;
|
2009-11-29 13:24:14 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
iconv_converting = 1;
|
|
|
|
iconv_selected = obj->data.i;
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|
|
|
|
|
2019-02-23 19:40:34 +00:00
|
|
|
void print_iconv_stop(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
|
|
|
(void)p;
|
|
|
|
(void)p_max_size;
|
2009-11-29 13:24:14 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
iconv_converting = 0;
|
|
|
|
iconv_selected = 0;
|
2009-10-03 18:01:33 +00:00
|
|
|
}
|