Code

compatibility fixes for GLib 2.12
[ncmpc.git] / src / match.c
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2009 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
20 #include "match.h"
21 #include "charset.h"
23 #include <glib.h>
24 #include <string.h>
25 #include <ctype.h>
27 static char *
28 locale_casefold(const char *src)
29 {
30         char *utf8 = locale_to_utf8(src);
31         char *folded = g_utf8_casefold(utf8, -1);
33         g_free(utf8);
34         return folded;
35 }
37 bool
38 match_line(const char *line, const char *needle)
39 {
40         char *line_folded = locale_casefold(line);
41         char *needle_folded = locale_casefold(needle);
43 #if GLIB_CHECK_VERSION(2,14,0)
44         bool ret = (bool)g_regex_match_simple((const gchar*)needle_folded,
45                         (const gchar*)line_folded,
46                         G_REGEX_CASELESS | G_REGEX_DOTALL | G_REGEX_OPTIMIZE,
47                         0);
48 #else
49         bool ret = strstr(line_folded, needle_folded) != NULL;
50 #endif
52         g_free(line_folded);
53         g_free(needle_folded);
55         return ret;
56 }