如何在c程序中使用z shell提供的函数执行glob?
到目前为止,我已经创建了我的探索自述文件。它适用于开源库。
https://bitbucket.org/sentimental/zsh_source_experimentation/src/master/README
我在这里复制:
让我们得到消息来源
apt-get source zsh
apt-get source zsh-dev
我通过使用ldd发现zsh不生成任何库文件::
#ldd /bin/zsh4
linux-gate.so.1 => (0xb7775000)
libcap.so.2 => /lib/i386-linux-gnu/libcap.so.2 (0xb7751000)
libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xb774c000)
libtinfo.so.5 => /lib/i386-linux-gnu/libtinfo.so.5 (0xb772c000)
libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xb7700000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb755b000)
我想我必须直接使用源文件。
让我们找到包含对扩展globbling的引用的文件 (我使用zsh作为我的shell)。::
grep -ir EXTENDEDGLOB . | egrep "\.(c|h):" | cut -d: -f1 | sort -u
./README
./zsh-4.3.17/Etc/ChangeLog-3.0
./zsh-4.3.17/Src/glob.c
./zsh-4.3.17/Src/Modules/zutil.c
./zsh-4.3.17/Src/options.c
./zsh-4.3.17/Src/pattern.c
./zsh-4.3.17/Src/utils.c
./zsh-4.3.17/Src/Zle/complist.c
./zsh-4.3.17/Src/Zle/zle_tricky.c
./zsh-4.3.17/Src/zsh.h
zsh.h
在这里,EXTENDEDGLOB被定义为匿名枚举
的一部分有出版物
这里 http://publications.gbdirect.co.uk/c_book/chapter6/enums.html
在这里 http://bytes.com/topic/c/answers/63891-enum-within-function-standard
详细说明c
中枚举的使用它的使用示例可能是该函数的方法参数 ................
static int
bin_zregexparse(char *nam, char **args, Options ops, UNUSED(int func))
在文件中找到
.................
./zsh-4.3.17/Src/Modules/zutil.c
让我们看一下这个函数的用途。嗯只有一个电话。该调用的唯一引用是在该文件中。
grep -r bin_zregexparse . | egrep "\.(c|h):" | cut -d: -f1 | sort -u
./zsh-4.3.17/Src/Modules/zutil.c
嗯......如果没有人调用这个函数,它是如何工作的?
好的,看看是否有某些条件配置以某种方式设置或别名此代码?
grep -i regex ./**/conf*
/zsh-4.3.17/config.h.in :/* Define to 1 if you have the `regexec' function. */
./zsh-4.3.17/config.h.in :#undef HAVE_REGEXEC
./zsh-4.3.17/config.h.in :/* Define to 1 if you have the `regexec' function. */
./zsh-4.3.17/config.h.in :#undef HAVE_REGEXEC
./zsh-4.3.17/configure : regcomp regexecc regerror regfree \
./zsh-4.3.17/configure : regcomp regexec regexecerror regfree \
./zsh-4.3.17/configure.ac : regcomp regexec regerrorror regfree \
让我们调查这些文件。
config.h.in
似乎不存在,也许它是生成的?
中似乎有一个阻止
configure
8148 for ac_func in strftime strptime mktime timelocal \
8149 difftime gettimeofday clock_gettime \
8150 select poll \
8151 readlink faccessx fchdir ftruncate \
etc etc etc ..
8178 htons ntohs \
8179 regcomp regexec regerror regfree \
8180 gdbm_open getxattr \
8181 realpath canonicalize_file_name \
8182 symlink getcwd
8183 do :
8184 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
8185 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
8186 if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
8187 cat >>confdefs.h <<_ACEOF
8188 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
8189 _ACEOF
8190
8191 fi
8192 done
}}}
我不知道那是做什么的。 TODO:调查!
在
./zsh-4.3.17/configure.ac
1167 dnl ---------------
1168 dnl CHECK FUNCTIONS
1169 dnl ---------------
1170 | rglobdata.gd_gf_noglobdot
1171 dnl need to integrate this function
1172 dnl AC_FUNC_STRFTIME
1173 | rglobdata.gd_gf_listtypes
1174 AC_CHECK_FUNCS(strftime strptime mktime timelocal \
1175 difftime gettimeofday clock_gettime \
1176 select poll \
etc etc etc
1205 regcomp regexec regerror regfree \
1206 gdbm_open getxattr \
1207 realpath canonicalize_file_name \
1208 symlink getcwd)
1209 AC_FUNC_STRCOLL
在这个阶段我不确定如何做到这一点,考虑到我可能想要对该功能进行单元测试,我该怎么做?
答案 0 :(得分:1)
函数bin_zregexparse
是zsh/zutil
module提供的zregexparse
内置函数的实现。它的定义低于in zutil.c
:
static struct builtin bintab[] = {
…
BUILTIN("zregexparse", 0, bin_zregexparse, 3, -1, 0, "c", NULL),
…
};
zregexparse
旨在用于_regex_arguments
的实施。这不是最有希望的切入点。
如果你想实现zsh的globbing功能,你必须将几乎所有的zsh代码都引入你的程序,因为glob模式可以包含任意嵌入代码。您可以在构建期间排除行编辑器,但这就是它。
我建议使用单独的zsh二进制文件并通过一对管道提供请求。
setopt extended_glob null_glob
print -Nr -- **/*(.Om+my_predicate) ''