summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-20 21:35:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-20 21:35:21 -0700
commitede052ddd4c753c9d09863b541ad7e2379b41899 (patch)
treee746210389594b15278445cb7846a9a963b56659 /sysif.c
parent95e3dbd17b7620d885a3fe92c6d3d6ae4e6fb570 (diff)
downloadtxr-ede052ddd4c753c9d09863b541ad7e2379b41899.tar.gz
txr-ede052ddd4c753c9d09863b541ad7e2379b41899.tar.bz2
txr-ede052ddd4c753c9d09863b541ad7e2379b41899.zip
Integrating fnmatch.
* configure: new test for fnmatch, introducing HAVE_FNMATCH configure variable into config/config.h. * sysif.c (fnmatch_wrap): New function. (sysif_init): Register intrinsic variables fnm-pathname, fnm-noescape, fnm-period, fnm-leading-dir, fnm-casefold and fnm-extmatch. Register intrinsic function fnmatch. * txr.1: Documented.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/sysif.c b/sysif.c
index 1b9b07d3..70185a49 100644
--- a/sysif.c
+++ b/sysif.c
@@ -61,6 +61,12 @@
#if HAVE_GRGID
#include <grp.h>
#endif
+#if HAVE_FNMATCH
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE
+#endif
+#include <fnmatch.h>
+#endif
#include ALLOCA_H
#include "lib.h"
#include "stream.h"
@@ -1214,6 +1220,28 @@ val stdio_fseek(FILE *f, val off, int whence)
#endif
}
+#if HAVE_FNMATCH
+static val fnmatch_wrap(val pattern, val string, val flags)
+{
+ const wchar_t *pattern_ws = c_str(pattern);
+ const wchar_t *string_ws = c_str(string);
+ cnum c_flags = c_num(default_arg(flags, zero));
+ char *pattern_u8 = utf8_dup_to(pattern_ws);
+ char *string_u8 = utf8_dup_to(string_ws);
+ int res = fnmatch(pattern_u8, string_u8, c_flags);
+ free(string_u8);
+ free(pattern_u8);
+ switch (res) {
+ case 0:
+ return t;
+ case FNM_NOMATCH:
+ return nil;
+ default:
+ uw_throwf(error_s, lit("fnmatch: error ~a"), num(res), nao);
+ }
+}
+#endif
+
void sysif_init(void)
{
stat_s = intern(lit("stat"), user_package);
@@ -1493,4 +1521,29 @@ void sysif_init(void)
#if HAVE_SYS_STAT
reg_fun(intern(lit("umask"), user_package), func_n1(umask_wrap));
#endif
+
+#if HAVE_FNMATCH
+ reg_fun(intern(lit("fnmatch"), user_package), func_n3o(fnmatch_wrap, 2));
+#endif
+
+#if HAVE_FNMATCH
+#ifdef FNM_PATHNAME
+ reg_varl(intern(lit("fnm-pathname"), user_package), num_fast(FNM_PATHNAME));
+#endif
+#ifdef FNM_NOESCAPE
+ reg_varl(intern(lit("fnm-noescape"), user_package), num_fast(FNM_NOESCAPE));
+#endif
+#ifdef FNM_PERIOD
+ reg_varl(intern(lit("fnm-period"), user_package), num_fast(FNM_PERIOD));
+#endif
+#ifdef FNM_LEADING_DIR
+ reg_varl(intern(lit("fnm-leading-dir"), user_package), num_fast(FNM_LEADING_DIR));
+#endif
+#ifdef FNM_CASEFOLD
+ reg_varl(intern(lit("fnm-casefold"), user_package), num_fast(FNM_CASEFOLD));
+#endif
+#ifdef FNM_ESTMATCH
+ reg_varl(intern(lit("fnm-extmatch"), user_package), num_fast(FNM_EXTMATCH));
+#endif
+#endif
}