diff options
Diffstat (limited to 'src/libtracker-extract/tracker-encoding-enca.c')
-rw-r--r-- | src/libtracker-extract/tracker-encoding-enca.c | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/src/libtracker-extract/tracker-encoding-enca.c b/src/libtracker-extract/tracker-encoding-enca.c deleted file mode 100644 index 8bc4f3ee4..000000000 --- a/src/libtracker-extract/tracker-encoding-enca.c +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (C) 2011 Nokia <ivan.frade@nokia.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include "config.h" - -#include <glib.h> -#include "tracker-encoding-enca.h" - -#include <enca.h> - -gchar * -tracker_encoding_guess_enca (const gchar *buffer, - gsize size) -{ - gchar *encoding = NULL; - const gchar **langs; - gsize s; - gsize i; - - langs = enca_get_languages (&s); - - for (i = 0; i < s && !encoding; i++) { - EncaAnalyser analyser; - EncaEncoding eencoding; - - analyser = enca_analyser_alloc (langs[i]); - eencoding = enca_analyse_const (analyser, (guchar *)buffer, size); - - if (enca_charset_is_known (eencoding.charset)) { - encoding = g_strdup (enca_charset_name (eencoding.charset, - ENCA_NAME_STYLE_ICONV)); - } - - enca_analyser_free (analyser); - } - - free (langs); - - if (encoding) - g_debug ("Guessing charset as '%s'", encoding); - - return encoding; -} |