Code

list_window: Extended scrolling commands to text screens
[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>
26 static char *
27 locale_casefold(const char *src)
28 {
29         char *utf8 = locale_to_utf8(src);
30         char *folded = g_utf8_casefold(utf8, -1);
32         g_free(utf8);
33         return folded;
34 }
36 bool
37 match_line(const char *line, const char *needle)
38 {
39         char *line_folded = locale_casefold(line);
40         char *needle_folded = locale_casefold(needle);
42         bool ret = (bool)g_regex_match_simple((const gchar*)needle_folded,
43                         (const gchar*)line_folded,
44                         G_REGEX_CASELESS | G_REGEX_DOTALL | G_REGEX_OPTIMIZE,
45                         0);
47         g_free(line_folded);
48         g_free(needle_folded);
50         return ret;
51 }