From ee2d9185389084f6a12fb78f54a00c0d55c1f770 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 5 Feb 2013 15:04:15 +0000 Subject: [PATCH] started working on xli --- qse/configure | 4 +- qse/configure.ac | 2 + qse/include/qse/xli/Makefile.am | 4 + qse/include/qse/xli/Makefile.in | 522 +++++++++++++++++++++++++++ qse/include/qse/xli/xli.h | 320 +++++++++++++++++ qse/lib/awk/parse.c | 7 +- qse/lib/xli/Makefile.am | 12 + qse/lib/xli/Makefile.in | 601 ++++++++++++++++++++++++++++++++ qse/lib/xli/read.c | 516 +++++++++++++++++++++++++++ qse/lib/xli/xli.c | 256 ++++++++++++++ qse/lib/xli/xli.h | 77 ++++ 11 files changed, 2315 insertions(+), 6 deletions(-) create mode 100644 qse/include/qse/xli/Makefile.am create mode 100644 qse/include/qse/xli/Makefile.in create mode 100644 qse/include/qse/xli/xli.h create mode 100644 qse/lib/xli/Makefile.am create mode 100644 qse/lib/xli/Makefile.in create mode 100644 qse/lib/xli/read.c create mode 100644 qse/lib/xli/xli.c create mode 100644 qse/lib/xli/xli.h diff --git a/qse/configure b/qse/configure index 1b7da14c..9150a2fd 100755 --- a/qse/configure +++ b/qse/configure @@ -20846,7 +20846,7 @@ QSE_PROJECT_AUTHOR="${PACKAGE_BUGREPORT}" QSE_PROJECT_URL="${PACKAGE_URL}" -ac_config_files="$ac_config_files Makefile README include/Makefile include/qse/Makefile include/qse/cmn/Makefile include/qse/awk/Makefile include/qse/sed/Makefile include/qse/net/Makefile lib/Makefile lib/cmn/Makefile lib/awk/Makefile lib/sed/Makefile lib/net/Makefile cmd/Makefile cmd/awk/Makefile cmd/sed/Makefile cmd/net/Makefile samples/Makefile samples/cmn/Makefile samples/awk/Makefile samples/sed/Makefile samples/net/Makefile regress/Makefile regress/awk/Makefile regress/awk/regress.sh regress/sed/Makefile regress/sed/regress.sh doc/Makefile doc/Doxyfile tools/Makefile" +ac_config_files="$ac_config_files Makefile README include/Makefile include/qse/Makefile include/qse/cmn/Makefile include/qse/awk/Makefile include/qse/sed/Makefile include/qse/xli/Makefile include/qse/net/Makefile lib/Makefile lib/cmn/Makefile lib/awk/Makefile lib/sed/Makefile lib/xli/Makefile lib/net/Makefile cmd/Makefile cmd/awk/Makefile cmd/sed/Makefile cmd/net/Makefile samples/Makefile samples/cmn/Makefile samples/awk/Makefile samples/sed/Makefile samples/net/Makefile regress/Makefile regress/awk/Makefile regress/awk/regress.sh regress/sed/Makefile regress/sed/regress.sh doc/Makefile doc/Doxyfile tools/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -22025,11 +22025,13 @@ do "include/qse/cmn/Makefile") CONFIG_FILES="$CONFIG_FILES include/qse/cmn/Makefile" ;; "include/qse/awk/Makefile") CONFIG_FILES="$CONFIG_FILES include/qse/awk/Makefile" ;; "include/qse/sed/Makefile") CONFIG_FILES="$CONFIG_FILES include/qse/sed/Makefile" ;; + "include/qse/xli/Makefile") CONFIG_FILES="$CONFIG_FILES include/qse/xli/Makefile" ;; "include/qse/net/Makefile") CONFIG_FILES="$CONFIG_FILES include/qse/net/Makefile" ;; "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; "lib/cmn/Makefile") CONFIG_FILES="$CONFIG_FILES lib/cmn/Makefile" ;; "lib/awk/Makefile") CONFIG_FILES="$CONFIG_FILES lib/awk/Makefile" ;; "lib/sed/Makefile") CONFIG_FILES="$CONFIG_FILES lib/sed/Makefile" ;; + "lib/xli/Makefile") CONFIG_FILES="$CONFIG_FILES lib/xli/Makefile" ;; "lib/net/Makefile") CONFIG_FILES="$CONFIG_FILES lib/net/Makefile" ;; "cmd/Makefile") CONFIG_FILES="$CONFIG_FILES cmd/Makefile" ;; "cmd/awk/Makefile") CONFIG_FILES="$CONFIG_FILES cmd/awk/Makefile" ;; diff --git a/qse/configure.ac b/qse/configure.ac index cc591466..e1ed6b57 100644 --- a/qse/configure.ac +++ b/qse/configure.ac @@ -524,11 +524,13 @@ AC_CONFIG_FILES([ include/qse/cmn/Makefile include/qse/awk/Makefile include/qse/sed/Makefile + include/qse/xli/Makefile include/qse/net/Makefile lib/Makefile lib/cmn/Makefile lib/awk/Makefile lib/sed/Makefile + lib/xli/Makefile lib/net/Makefile cmd/Makefile cmd/awk/Makefile diff --git a/qse/include/qse/xli/Makefile.am b/qse/include/qse/xli/Makefile.am new file mode 100644 index 00000000..b8a123e6 --- /dev/null +++ b/qse/include/qse/xli/Makefile.am @@ -0,0 +1,4 @@ +pkgincludedir= $(includedir)/qse/xli + +pkginclude_HEADERS = xli.h + diff --git a/qse/include/qse/xli/Makefile.in b/qse/include/qse/xli/Makefile.in new file mode 100644 index 00000000..ade3f516 --- /dev/null +++ b/qse/include/qse/xli/Makefile.in @@ -0,0 +1,522 @@ +# Makefile.in generated by automake 1.11.3 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = include/qse/xli +DIST_COMMON = $(pkginclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/argz.m4 \ + $(top_srcdir)/m4/ax_numval.m4 $(top_srcdir)/m4/ax_pthread.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltdl.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/lx_find_mpi.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/include/qse/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(pkgincludedir)" +HEADERS = $(pkginclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +pkgincludedir = $(includedir)/qse/xli +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +ARGZ_H = @ARGZ_H@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BUILD_MODE = @BUILD_MODE@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHAR_MODE = @CHAR_MODE@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +HAVE_CXX = @HAVE_CXX@ +INCLTDL = @INCLTDL@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBADD_DL = @LIBADD_DL@ +LIBADD_DLD_LINK = @LIBADD_DLD_LINK@ +LIBADD_DLOPEN = @LIBADD_DLOPEN@ +LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@ +LIBLTDL = @LIBLTDL@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBTOOL_DEPS = @LIBTOOL_DEPS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTDLDEPS = @LTDLDEPS@ +LTDLINCL = @LTDLINCL@ +LTDLOPEN = @LTDLOPEN@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CONFIG_H = @LT_CONFIG_H@ +LT_DLLOADERS = @LT_DLLOADERS@ +LT_DLPREOPEN = @LT_DLPREOPEN@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +MPICC = @MPICC@ +MPI_CFLAGS = @MPI_CFLAGS@ +MPI_CLDFLAGS = @MPI_CLDFLAGS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PACKAGE_VERSION_MAJOR = @PACKAGE_VERSION_MAJOR@ +PACKAGE_VERSION_MINOR = @PACKAGE_VERSION_MINOR@ +PACKAGE_VERSION_PATCH = @PACKAGE_VERSION_PATCH@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ +QSE_PROJECT_AUTHOR = @QSE_PROJECT_AUTHOR@ +QSE_PROJECT_URL = @QSE_PROJECT_URL@ +QSE_SIZEOF_CHAR = @QSE_SIZEOF_CHAR@ +QSE_SIZEOF_DOUBLE = @QSE_SIZEOF_DOUBLE@ +QSE_SIZEOF_FLOAT = @QSE_SIZEOF_FLOAT@ +QSE_SIZEOF_INT = @QSE_SIZEOF_INT@ +QSE_SIZEOF_LONG = @QSE_SIZEOF_LONG@ +QSE_SIZEOF_LONG_DOUBLE = @QSE_SIZEOF_LONG_DOUBLE@ +QSE_SIZEOF_LONG_LONG = @QSE_SIZEOF_LONG_LONG@ +QSE_SIZEOF_OFF64_T = @QSE_SIZEOF_OFF64_T@ +QSE_SIZEOF_OFF_T = @QSE_SIZEOF_OFF_T@ +QSE_SIZEOF_SHORT = @QSE_SIZEOF_SHORT@ +QSE_SIZEOF_VOID_P = @QSE_SIZEOF_VOID_P@ +QSE_SIZEOF_WCHAR_T = @QSE_SIZEOF_WCHAR_T@ +RANLIB = @RANLIB@ +RM = @RM@ +RMDIR = @RMDIR@ +SED = @SED@ +SENDFILE_LIBS = @SENDFILE_LIBS@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SOCKET_LIBS = @SOCKET_LIBS@ +SSL_LIBS = @SSL_LIBS@ +STRIP = @STRIP@ +TRUE = @TRUE@ +UCI_LIBS = @UCI_LIBS@ +UNICOWS_LIBS = @UNICOWS_LIBS@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +ltdl_LIBOBJS = @ltdl_LIBOBJS@ +ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +subdirs = @subdirs@ +sys_symbol_underscore = @sys_symbol_underscore@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +pkginclude_HEADERS = xli.h +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/qse/xli/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign include/qse/xli/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-pkgincludeHEADERS: $(pkginclude_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ + done + +uninstall-pkgincludeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(pkgincludedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-pkgincludeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-pkgincludeHEADERS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool ctags distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-pkgincludeHEADERS install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-pkgincludeHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/qse/include/qse/xli/xli.h b/qse/include/qse/xli/xli.h new file mode 100644 index 00000000..5c4d1a2d --- /dev/null +++ b/qse/include/qse/xli/xli.h @@ -0,0 +1,320 @@ +/* + * $Id$ + * + Copyright 2006-2012 Chung, Hyung-Hwan. + This file is part of QSE. + + QSE 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 3 of + the License, or (at your option) any later version. + + QSE 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 QSE. If not, see . + */ + +#ifndef _QSE_XLI_XLI_H_ +#define _QSE_XLI_XLI_H_ + +#include +#include + +typedef struct qse_xli_t qse_xli_t; + +enum qse_xli_errnum_t +{ + QSE_XLI_ENOERR, /**< no error */ + QSE_XLI_EOTHER, /**< other error */ + QSE_XLI_ENOIMPL, /**< not implemented */ + QSE_XLI_ESYSERR, /**< subsystem error */ + QSE_XLI_EINTERN, /**< internal error */ + QSE_XLI_ENOMEM, /**< insufficient memory */ + QSE_XLI_EINVAL, /**< invalid parameter or data */ + QSE_XLI_EIOUSR /**< i/o handler error */ +}; +typedef enum qse_xli_errnum_t qse_xli_errnum_t; + +enum qse_xli_opt_t +{ + QSE_XLI_TRAIT +}; +typedef enum qse_xli_opt_t qse_xli_opt_t; + +enum qse_xli_trait_t +{ + QSE_XLI_NOTEXT = (1 << 0) +}; +typedef enum qse_xli_trait_t qse_xli_trait_t; + +typedef struct qse_xli_val_t qse_xli_val_t; +typedef struct qse_xli_str_t qse_xli_str_t; +typedef struct qse_xli_list_t qse_xli_list_t; + +typedef struct qse_xli_atom_t qse_xli_atom_t; +typedef struct qse_xli_pair_t qse_xli_pair_t; +typedef struct qse_xli_text_t qse_xli_text_t; +typedef struct qse_xli_file_t qse_xli_file_t; + +enum qse_xli_val_type_t +{ + QSE_XLI_STR, + QSE_XLI_LIST, +}; +typedef enum qse_xli_val_type_t qse_xli_val_type_t; + +enum qse_xli_atom_type_t +{ + QSE_XLI_PAIR, + QSE_XLI_TEXT, + QSE_XLI_FILE, +}; +typedef enum qse_xli_atom_type_t qse_xli_atom_type_t; + +#define QSE_XLI_VAL_HDR \ + qse_xli_val_type_t type; + +struct qse_xli_val_t +{ + QSE_XLI_VAL_HDR; +}; + +struct qse_xli_list_t +{ + QSE_XLI_VAL_HDR; + qse_xli_atom_t* head; + qse_xli_atom_t* tail; +}; + +struct qse_xli_str_t +{ + QSE_XLI_VAL_HDR; + const qse_char_t* ptr; + qse_size_t len; +}; + +#define QSE_XLI_ATOM_HDR \ + qse_xli_atom_type_t type; \ + qse_xli_atom_t* prev; \ + qse_xli_atom_t* next; \ + qse_xli_file_t* file + +struct qse_xli_atom_t +{ + QSE_XLI_ATOM_HDR; +}; + +struct qse_xli_pair_t +{ + QSE_XLI_ATOM_HDR; + const qse_char_t* key; + const qse_char_t* name; + qse_xli_val_t* val; +}; + +struct qse_xli_text_t +{ + QSE_XLI_ATOM_HDR; + const qse_char_t* ptr; + qse_size_t len; +}; + +struct qse_xli_file_t +{ + QSE_XLI_ATOM_HDR; + const qse_char_t* path; +}; + +/** + * The qse_xli_ecb_close_t type defines the callback function + * called when an xli object is cloxli. + */ +typedef void (*qse_xli_ecb_close_t) ( + qse_xli_t* xli /**< xli */ +); + +/** + * The qse_xli_ecb_t type defines an event callback set. + * You can register a callback function set with + * qse_xli_pushecb(). The callback functions in the registered + * set are called in the reverse order of registration. + */ +typedef struct qse_xli_ecb_t qse_xli_ecb_t; +struct qse_xli_ecb_t +{ + /** + * called by qse_xli_close(). + */ + qse_xli_ecb_close_t close; + + /* internal use only. don't touch this field */ + qse_xli_ecb_t* next; +}; + +typedef struct qse_xli_loc_t qse_xli_loc_t; + +/** + * The qse_xli_loc_t defines a structure to store location information. + */ +struct qse_xli_loc_t +{ + const qse_char_t* file; + qse_size_t line; /**< line */ + qse_size_t colm; /**< column */ +}; + +/** + * The qse_xli_io_cmd_t type defines I/O command codes. The code indicates + * the action to take in an I/O handler. + */ +enum qse_xli_io_cmd_t +{ + QSE_XLI_IO_OPEN = 0, + QSE_XLI_IO_CLOSE = 1, + QSE_XLI_IO_READ = 2, + QSE_XLI_IO_WRITE = 3 +}; +typedef enum qse_xli_io_cmd_t qse_xli_io_cmd_t; + +typedef struct qse_xli_io_lxc_t qse_xli_io_lxc_t; +struct qse_xli_io_lxc_t +{ + qse_cint_t c; /**< character */ + qse_size_t line; /**< line */ + qse_size_t colm; /**< column */ + const qse_char_t* file; /**< file */ +}; + +enum qse_xli_io_arg_flag_t +{ + QSE_XLI_SIO_INCLUDED = (1 << 0) +}; + +typedef struct qse_xli_io_arg_t qse_xli_io_arg_t; +struct qse_xli_io_arg_t +{ + /** + * [IN] bitwise-ORed of #qse_xli_io_arg_flag_t. + * The field is set with #QSE_XLI_SIO_INCLUDED if an included file + * is handled. + */ + int flags; + + /** + * [IN/OUT] name of I/O object. + * if #QSE_XLI_SIO_INCLUDED is not set, the name is set to #QSE_NULL. + * the source stream handler(#qse_xli_io_impl_t) can change this field + * to give useful information back to the parser. + * + * if #QSE_XLI_SIO_INCLUDED is set in the flags field, + * the name field is set to the name of the included file. + */ + const qse_char_t* name; + + /** + * [OUT] I/O handle set by a handler. + * The source stream handler can set this field when it opens a stream. + * All subsequent operations on the stream see this field as set + * during opening. + */ + void* handle; + + /*-- from here down, internal use only --*/ + struct + { + qse_char_t buf[1024]; + qse_size_t pos; + qse_size_t len; + } b; + + qse_size_t line; + qse_size_t colm; + + qse_xli_io_lxc_t last; + qse_xli_io_arg_t* next; +}; + +/** + * The qse_xli_io_impl_t type defines an I/O handler. I/O handlers are called by + * qse_xli_exec(). + */ +typedef qse_ssize_t (*qse_xli_io_impl_t) ( + qse_xli_t* xli, + qse_xli_io_cmd_t cmd, + qse_xli_io_arg_t* arg, + qse_char_t* data, + qse_size_t count +); + +#if defined(__cplusplus) +extern "C" { +#endif + + +QSE_EXPORT qse_xli_t* qse_xli_open ( + qse_mmgr_t* mmgr, + qse_size_t xtnsize +); + +QSE_EXPORT void qse_xli_close ( + qse_xli_t* xli +); + + +QSE_EXPORT qse_mmgr_t* qse_xli_getmmgr ( + qse_xli_t* xli +); + +QSE_EXPORT void* qse_xli_getxtn ( + qse_xli_t* xli +); + +QSE_EXPORT void qse_xli_pushecb ( + qse_xli_t* xli, + qse_xli_ecb_t* ecb +); + +QSE_EXPORT qse_xli_ecb_t* qse_xli_popecb ( + qse_xli_t* xli +); + + +QSE_EXPORT void* qse_xli_allocmem ( + qse_xli_t* xli, + qse_size_t size +); + +QSE_EXPORT void* qse_xli_callocmem ( + qse_xli_t* xli, + qse_size_t size +); + +QSE_EXPORT void qse_xli_freemem ( + qse_xli_t* xli, + void* ptr +); + +QSE_EXPORT int qse_xli_read ( + qse_xli_t* xli, + qse_xli_io_impl_t io +); + + +QSE_EXPORT int qse_xli_write ( + qse_xli_t* xli, + qse_xli_io_impl_t io +); + +QSE_EXPORT void qse_xli_clear ( + qse_xli_t* xli +); + +#if defined(__cplusplus) +} +#endif + +#endif diff --git a/qse/lib/awk/parse.c b/qse/lib/awk/parse.c index 5147d4c4..36bf5ff3 100644 --- a/qse/lib/awk/parse.c +++ b/qse/lib/awk/parse.c @@ -104,7 +104,6 @@ enum tok_t TOK_COLON, TOK_DBLCOLON, TOK_QUEST, - TOK_ATSIGN, /* == begin reserved words == */ /* === extended reserved words === */ @@ -5834,7 +5833,7 @@ static int get_symbols (qse_awk_t* awk, qse_cint_t c, qse_awk_tok_t* tok) const qse_char_t* str; qse_size_t len; int tid; - int opt; + int trait; }; static struct ops_t ops[] = @@ -5896,7 +5895,6 @@ static int get_symbols (qse_awk_t* awk, qse_cint_t c, qse_awk_tok_t* tok) { QSE_T("::"), 2, TOK_DBLCOLON, 0 }, { QSE_T(":"), 1, TOK_COLON, 0 }, { QSE_T("?"), 1, TOK_QUEST, 0 }, - { QSE_T("@"), 1, TOK_ATSIGN, 0 }, { QSE_T("`"), 1, TOK_BQUOTE, 0 }, { QSE_NULL, 0, 0, 0 } }; @@ -5910,7 +5908,7 @@ static int get_symbols (qse_awk_t* awk, qse_cint_t c, qse_awk_tok_t* tok) for (p = ops; p->str != QSE_NULL; ) { - if (p->opt == 0 || (awk->opt.trait & p->opt)) + if (p->trait == 0 || (awk->opt.trait & p->trait)) { if (p->str[idx] == QSE_T('\0')) { @@ -6061,7 +6059,6 @@ retry: else if (c == QSE_T('\'')) { /* single-quoted string - no escaping */ - qse_cint_t c; SET_TOKEN_TYPE (awk, tok, TOK_STR); diff --git a/qse/lib/xli/Makefile.am b/qse/lib/xli/Makefile.am new file mode 100644 index 00000000..dbdb190b --- /dev/null +++ b/qse/lib/xli/Makefile.am @@ -0,0 +1,12 @@ +AUTOMAKE_OPTIONS = nostdinc + +AM_CPPFLAGS = \ + -I$(top_builddir)/include \ + -I$(top_srcdir)/include \ + -I$(includedir) + +lib_LTLIBRARIES = libqsexli.la +libqsexli_la_SOURCES = xli.h xli.c read.c +libqsexli_la_LDFLAGS = -L../cmn -L$(libdir) -version-info 1:0:0 -no-undefined +libqsexli_la_LIBADD = -lqsecmn + diff --git a/qse/lib/xli/Makefile.in b/qse/lib/xli/Makefile.in new file mode 100644 index 00000000..95b79ced --- /dev/null +++ b/qse/lib/xli/Makefile.in @@ -0,0 +1,601 @@ +# Makefile.in generated by automake 1.11.3 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = lib/xli +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/argz.m4 \ + $(top_srcdir)/m4/ax_numval.m4 $(top_srcdir)/m4/ax_pthread.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltdl.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/lx_find_mpi.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/include/qse/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libqsexli_la_DEPENDENCIES = +am_libqsexli_la_OBJECTS = xli.lo read.lo +libqsexli_la_OBJECTS = $(am_libqsexli_la_OBJECTS) +libqsexli_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libqsexli_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = +depcomp = $(SHELL) $(top_srcdir)/ac/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libqsexli_la_SOURCES) +DIST_SOURCES = $(libqsexli_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +ARGZ_H = @ARGZ_H@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BUILD_MODE = @BUILD_MODE@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHAR_MODE = @CHAR_MODE@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +HAVE_CXX = @HAVE_CXX@ +INCLTDL = @INCLTDL@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBADD_DL = @LIBADD_DL@ +LIBADD_DLD_LINK = @LIBADD_DLD_LINK@ +LIBADD_DLOPEN = @LIBADD_DLOPEN@ +LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@ +LIBLTDL = @LIBLTDL@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBTOOL_DEPS = @LIBTOOL_DEPS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTDLDEPS = @LTDLDEPS@ +LTDLINCL = @LTDLINCL@ +LTDLOPEN = @LTDLOPEN@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CONFIG_H = @LT_CONFIG_H@ +LT_DLLOADERS = @LT_DLLOADERS@ +LT_DLPREOPEN = @LT_DLPREOPEN@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +MPICC = @MPICC@ +MPI_CFLAGS = @MPI_CFLAGS@ +MPI_CLDFLAGS = @MPI_CLDFLAGS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PACKAGE_VERSION_MAJOR = @PACKAGE_VERSION_MAJOR@ +PACKAGE_VERSION_MINOR = @PACKAGE_VERSION_MINOR@ +PACKAGE_VERSION_PATCH = @PACKAGE_VERSION_PATCH@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ +QSE_PROJECT_AUTHOR = @QSE_PROJECT_AUTHOR@ +QSE_PROJECT_URL = @QSE_PROJECT_URL@ +QSE_SIZEOF_CHAR = @QSE_SIZEOF_CHAR@ +QSE_SIZEOF_DOUBLE = @QSE_SIZEOF_DOUBLE@ +QSE_SIZEOF_FLOAT = @QSE_SIZEOF_FLOAT@ +QSE_SIZEOF_INT = @QSE_SIZEOF_INT@ +QSE_SIZEOF_LONG = @QSE_SIZEOF_LONG@ +QSE_SIZEOF_LONG_DOUBLE = @QSE_SIZEOF_LONG_DOUBLE@ +QSE_SIZEOF_LONG_LONG = @QSE_SIZEOF_LONG_LONG@ +QSE_SIZEOF_OFF64_T = @QSE_SIZEOF_OFF64_T@ +QSE_SIZEOF_OFF_T = @QSE_SIZEOF_OFF_T@ +QSE_SIZEOF_SHORT = @QSE_SIZEOF_SHORT@ +QSE_SIZEOF_VOID_P = @QSE_SIZEOF_VOID_P@ +QSE_SIZEOF_WCHAR_T = @QSE_SIZEOF_WCHAR_T@ +RANLIB = @RANLIB@ +RM = @RM@ +RMDIR = @RMDIR@ +SED = @SED@ +SENDFILE_LIBS = @SENDFILE_LIBS@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SOCKET_LIBS = @SOCKET_LIBS@ +SSL_LIBS = @SSL_LIBS@ +STRIP = @STRIP@ +TRUE = @TRUE@ +UCI_LIBS = @UCI_LIBS@ +UNICOWS_LIBS = @UNICOWS_LIBS@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +ltdl_LIBOBJS = @ltdl_LIBOBJS@ +ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +subdirs = @subdirs@ +sys_symbol_underscore = @sys_symbol_underscore@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AUTOMAKE_OPTIONS = nostdinc +AM_CPPFLAGS = \ + -I$(top_builddir)/include \ + -I$(top_srcdir)/include \ + -I$(includedir) + +lib_LTLIBRARIES = libqsexli.la +libqsexli_la_SOURCES = xli.h xli.c read.c +libqsexli_la_LDFLAGS = -L../cmn -L$(libdir) -version-info 1:0:0 -no-undefined +libqsexli_la_LIBADD = -lqsecmn +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/xli/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign lib/xli/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libqsexli.la: $(libqsexli_la_OBJECTS) $(libqsexli_la_DEPENDENCIES) $(EXTRA_libqsexli_la_DEPENDENCIES) + $(libqsexli_la_LINK) -rpath $(libdir) $(libqsexli_la_OBJECTS) $(libqsexli_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xli.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/read.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/qse/lib/xli/read.c b/qse/lib/xli/read.c new file mode 100644 index 00000000..435a1f99 --- /dev/null +++ b/qse/lib/xli/read.c @@ -0,0 +1,516 @@ +/* + * $Id$ + * + Copyright 2006-2012 Chung, Hyung-Hwan. + This file is part of QSE. + + QSE 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 3 of + the License, or (at your option) any later version. + + QSE 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 QSE. If not, see . + */ + +#include "xli.h" +#include + +#if 0 +static int open_stream (qse_xli_t* xli) +{ + qse_ssize_t n; + + xli->errnum = QSE_XLI_ENOERR; + n = xli->src.fun (xli, QSE_XLI_IO_OPEN, &xli->src.arg, QSE_NULL, 0); + if (n <= -1) + { + if (xli->errnum == QSE_XLI_ENOERR) xli->errnum = QSE_XLI_EIOUSR; + return -1; + } + + xli->src.cur = xli->src.buf; + xli->src.end = xli->src.buf; + xli->src.cc = QSE_CHAR_EOF; + xli->src.loc.line = 1; + xli->src.loc.colm = 0; + + xli->src.eof = 0; + return 0; +} + +static int close_stream (qse_xli_t* xli) +{ + qse_ssize_t n; + + xli->errnum = QSE_XLI_ENOERR; + n = xli->src.fun (xli, QSE_XLI_IO_CLOSE, &xli->src.arg, QSE_NULL, 0); + if (n <= -1) + { + if (xli->errnum == QSE_XLI_ENOERR) xli->errnum = QSE_XLI_EIOUSR; + return -1; + } + + return 0; +} + +static int read_stream (qse_xli_t* xli) +{ + qse_ssize_t n; + + xli->errnum = QSE_XLI_ENOERR; + n = xli->src.fun ( + xli, QSE_XLI_IO_READ, &xli->src.arg, + xli->src.buf, QSE_COUNTOF(xli->src.buf) + ); + if (n <= -1) + { + if (xli->errnum == QSE_XLI_ENOERR) xli->errnum = QSE_XLI_EIOUSR; + return -1; /* error */ + } + + if (n == 0) + { + /* don't change xli->src.cur and xli->src.end. + * they remain the same on eof */ + xli->src.eof = 1; + return 0; /* eof */ + } + + xli->src.cur = xli->src.buf; + xli->src.end = xli->src.buf + n; + return 1; /* read something */ +} + +#endif + +enum tok_t +{ + TOK_EOF, + TOK_XINCLUDE, + TOK_SEMICOLON, + TOK_LBRACE, + TOK_RBRACE, + TOK_EQ, + TOK_DQSTR, + TOK_SQSTR, + TOK_IDENT, + TOK_TEXT, + + __TOKEN_COUNT__ +}; + +#define GET_CHAR(xli) \ + do { if (get_char(xli) <= -1) return -1; } while(0) + +#define GET_CHAR_TO(xli,c) \ + do { \ + if (get_char(xli) <= -1) return -1; \ + c = (xli)->sio.last.c; \ + } while(0) + +#define ADD_TOKEN_CHAR(xli,tok,c) \ + do { \ + if (qse_str_ccat((tok)->name,(c)) == (qse_size_t)-1) \ + { \ + xli->errnum = QSE_XLI_ENOMEM; \ + return -1; \ + } \ + } while (0) + +#define ADD_TOKEN_STR(xli,tok,s,l) \ + do { \ + if (qse_str_ncat((tok)->name,(s),(l)) == (qse_size_t)-1) \ + { \ + xli->errnum = QSE_XLI_ENOMEM; \ + return -1; \ + } \ + } while (0) + +#define SET_TOKEN_TYPE(xli,tok,code) \ + do { (tok)->type = (code); } while (0) + +#define MATCH(xli,tok_type) ((xli)->tok.type == (tok_type)) + +typedef struct kwent_t kwent_t; + +struct kwent_t +{ + qse_cstr_t name; + int type; +}; + +static kwent_t kwtab[] = +{ + /* keep it sorted by the first field for binary search */ + { { QSE_T("@include"), 8 }, TOK_XINCLUDE } +}; + +static int get_char (qse_xli_t* xli) +{ + qse_ssize_t n; + + if (xli->sio.inp->b.pos >= xli->sio.inp->b.len) + { + xli->errnum = QSE_XLI_ENOERR; + n = xli->sio.inf ( + xli, QSE_XLI_IO_READ, xli->sio.inp, + xli->sio.inp->b.buf, QSE_COUNTOF(xli->sio.inp->b.buf) + ); + if (n <= -1) + { + if (xli->errnum == QSE_XLI_ENOERR) + xli->errnum = QSE_XLI_EIOUSR; + return -1; + } + + if (n == 0) + { + xli->sio.last.c = QSE_CHAR_EOF; + xli->sio.last.line = xli->sio.inp->line; + xli->sio.last.colm = xli->sio.inp->colm; + xli->sio.last.file = xli->sio.inp->name; + return 0; + } + + xli->sio.inp->b.pos = 0; + xli->sio.inp->b.len = n; + } + + if (xli->sio.inp->last.c == QSE_T('\n')) + { + /* if the previous charater was a newline, + * increment the line counter and reset column to 1. + * incrementing it line number here instead of + * updating inp->last causes the line number for + * TOK_EOF to be the same line as the last newline. */ + xli->sio.inp->line++; + xli->sio.inp->colm = 1; + } + + xli->sio.inp->last.c = xli->sio.inp->b.buf[xli->sio.inp->b.pos++]; + xli->sio.inp->last.line = xli->sio.inp->line; + xli->sio.inp->last.colm = xli->sio.inp->colm++; + xli->sio.inp->last.file = xli->sio.inp->name; + + xli->sio.last = xli->sio.inp->last; + return 0; +} + +static int skip_spaces (qse_xli_t* xli) +{ + qse_cint_t c = xli->sio.last.c; + while (QSE_ISSPACE(c)) GET_CHAR_TO (xli, c); + return 0; +} + +static int skip_comment (qse_xli_t* xli) +{ + qse_cint_t c = xli->sio.last.c; + + if (c == QSE_T('#')) + { + + /* skip up to \n */ + /* TODO: support a different line terminator */ + do { GET_CHAR_TO (xli, c); } + while (c != QSE_T('\n') && c != QSE_CHAR_EOF); + GET_CHAR (xli); /* eat the new line letter */ + return 1; /* comment by # */ + } + + return 0; +} + +static int classify_ident (qse_xli_t* xli, const qse_cstr_t* name) +{ + /* perform binary search */ + + /* declaring left, right, mid to be the int type is ok + * because we know kwtab is small enough. */ + int left = 0, right = QSE_COUNTOF(kwtab) - 1, mid; + + while (left <= right) + { + int n; + kwent_t* kwp; + + mid = (left + right) / 2; + kwp = &kwtab[mid]; + + n = qse_strxncmp (kwp->name.ptr, kwp->name.len, name->ptr, name->len); + if (n > 0) + { + /* if left, right, mid were of qse_size_t, + * you would need the following line. + if (mid == 0) break; + */ + right = mid - 1; + } + else if (n < 0) left = mid + 1; + + return kwp->type; + } + + return TOK_IDENT; +} + +static int get_symbols (qse_xli_t* xli, qse_cint_t c, qse_xli_tok_t* tok) +{ + struct ops_t + { + const qse_char_t* str; + qse_size_t len; + int tid; + }; + + static struct ops_t ops[] = + { + { QSE_T("="), 1, TOK_EQ }, + { QSE_T(";"), 1, TOK_SEMICOLON }, + { QSE_T("{"), 1, TOK_LBRACE }, + { QSE_T("}"), 1, TOK_RBRACE }, + { QSE_NULL, 0, 0, } + }; + + struct ops_t* p; + int idx = 0; + + /* note that the loop below is not generaic enough. + * you must keep the operators strings in a particular order */ + + + for (p = ops; p->str != QSE_NULL; ) + { + if (p->str[idx] == QSE_T('\0')) + { + ADD_TOKEN_STR (xli, tok, p->str, p->len); + SET_TOKEN_TYPE (xli, tok, p->tid); + return 1; + } + + if (c == p->str[idx]) + { + idx++; + GET_CHAR_TO (xli, c); + continue; + } + + p++; + } + + return 0; +} + +static int get_token_into (qse_xli_t* xli, qse_xli_tok_t* tok) +{ + qse_cint_t c; + int n; + int skip_semicolon_after_include = 0; + +retry: + do + { + if (skip_spaces(xli) <= -1) return -1; + if ((n = skip_comment(xli)) <= -1) return -1; + } + while (n >= 1); + + qse_str_clear (tok->name); + tok->loc.file = xli->sio.last.file; + tok->loc.line = xli->sio.last.line; + tok->loc.colm = xli->sio.last.colm; + + c = xli->sio.last.c; + + if (c == QSE_CHAR_EOF) + { +#if 0 + n = end_include (xli); + if (n <= -1) return -1; + if (n >= 1) + { + /*xli->sio.last = xli->sio.inp->last;*/ + /* mark that i'm retrying after end of an included file */ + skip_semicolon_after_include = 1; + goto retry; + } +#endif + + ADD_TOKEN_STR (xli, tok, QSE_T(""), 5); + SET_TOKEN_TYPE (xli, tok, TOK_EOF); + } + else if (c == QSE_T('@')) + { + int type; + + ADD_TOKEN_CHAR (xli, tok, c); + GET_CHAR_TO (xli, c); + + if (c != QSE_T('_') && !QSE_ISALPHA (c)) + { + /* this directive is empty, + * not followed by a valid word */ +#if 0 + SETERR_LOC (xli, QSE_XLI_EXKWEM, &(xli)->tok.loc); +#endif + return -1; + } + + /* expect normal identifier starting with an alphabet */ + do + { + ADD_TOKEN_CHAR (xli, tok, c); + GET_CHAR_TO (xli, c); + } + while (c == QSE_T('_') || c == QSE_T('-') || QSE_ISALNUM (c)); + + type = classify_ident (xli, QSE_STR_CSTR(tok->name)); + if (type == TOK_IDENT) + { + /* this directive is not recognized */ +#if 0 + SETERR_TOK (xli, QSE_XLI_EXKWNR); +#endif + return -1; + } + SET_TOKEN_TYPE (xli, tok, type); + } + else if (c == QSE_T('_') || QSE_ISALPHA (c)) + { + int type; + + /* identifier */ + do + { + ADD_TOKEN_CHAR (xli, tok, c); + GET_CHAR_TO (xli, c); + } + while (c == QSE_T('_') || c == QSE_T('-') || QSE_ISALNUM (c)); + + type = classify_ident (xli, QSE_STR_CSTR(tok->name)); + SET_TOKEN_TYPE (xli, tok, type); + } + else if (c == QSE_T('\'') || c == QSE_T('\"')) + { + /* single-quoted string - no escaping */ + qse_cint_t sc = c; + + SET_TOKEN_TYPE (xli, tok, + ((sc == QSE_T('\''))? TOK_SQSTR: TOK_DQSTR)); + + while (1) + { + GET_CHAR_TO (xli, c); + + if (c == QSE_CHAR_EOF) + { + /* the string is not closed */ +#if 0 + SETERR_TOK (xli, QSE_XLI_ESTRNC); +#endif + return -1; + } + + if (c == sc) + { + /* terminating quote */ + GET_CHAR (xli); + break; + } + + ADD_TOKEN_CHAR (xli, tok, c); + } + return 0; + } + else + { + n = get_symbols (xli, c, tok); + if (n <= -1) return -1; + if (n == 0) + { + /* not handled yet */ + if (c == QSE_T('\0')) + { +#if 0 + SETERR_ARG_LOC ( + xli, QSE_XLI_ELXCHR, + QSE_T(""), 5, &tok->loc); +#endif + } + else + { +#if 0 + qse_char_t cc = (qse_char_t)c; + SETERR_ARG_LOC (xli, QSE_XLI_ELXCHR, &cc, 1, &tok->loc); +#endif + } + return -1; + } + + if (skip_semicolon_after_include && tok->type == TOK_SEMICOLON) + { + /* this handles the optional semicolon after the + * included file named as in @include "file-name"; */ + skip_semicolon_after_include = 0; + goto retry; + } + } + + if (skip_semicolon_after_include) + { + /* semiclon has not been skipped yet */ +#if 0 + qse_xli_seterror (xli, QSE_XLI_ESCOLON, QSE_STR_CSTR(tok->name), &tok->loc); +#endif + return -1; + } + + return 0; +} + +static int get_token (qse_xli_t* xli) +{ + return get_token_into (xli, &xli->tok); +} + +int qse_xli_read (qse_xli_t* xli, qse_xli_io_impl_t io) +{ + if (io == QSE_NULL) + { + xli->errnum = QSE_XLI_EINVAL; + return -1; + } + + xli->sio.inf = io; +#if 0 + if (open_stream (xli) <= -1) return -1; + + close_stream (xli); +#endif + + do + { + if (get_token (xli) <= -1) return -1; + if (MATCH (xli, TOK_XINCLUDE)) + { + } + else if (MATCH (xli, TOK_IDENT)) + { + } + else if (MATCH (xli, TOK_TEXT)) + { + } + else + { + } + } + while (1); + + return 0; +} diff --git a/qse/lib/xli/xli.c b/qse/lib/xli/xli.c new file mode 100644 index 00000000..c44c9f7d --- /dev/null +++ b/qse/lib/xli/xli.c @@ -0,0 +1,256 @@ +/* + * $Id$ + * + Copyright 2006-2012 Chung, Hyung-Hwan. + This file is part of QSE. + + QSE 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 3 of + the License, or (at your option) any later version. + + QSE 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 QSE. If not, see . + */ + +#include "xli.h" + +qse_xli_t* qse_xli_open (qse_mmgr_t* mmgr, qse_size_t xtnsize) +{ + qse_xli_t* xli; + + xli = (qse_xli_t*) QSE_MMGR_ALLOC (mmgr, QSE_SIZEOF(qse_xli_t) + xtnsize); + if (xli == QSE_NULL) return QSE_NULL; + + if (qse_xli_init (xli, mmgr) <= -1) + { + QSE_MMGR_FREE (xli->mmgr, xli); + return QSE_NULL; + } + + return xli; +} + +void qse_xli_close (qse_xli_t* xli) +{ + qse_xli_ecb_t* ecb; + + for (ecb = xli->ecb; ecb; ecb = ecb->next) + if (ecb->close) ecb->close (xli); + + qse_xli_fini (xli); + QSE_MMGR_FREE (xli->mmgr, xli); +} + +int qse_xli_init (qse_xli_t* xli, qse_mmgr_t* mmgr) +{ + QSE_MEMSET (xli, 0, QSE_SIZEOF(*xli)); + xli->mmgr = mmgr; + + xli->tok.name = qse_str_open (mmgr, 0, 128); + if (xli->tok.name == QSE_NULL) + { + xli->errnum = QSE_XLI_ENOMEM; + return -1; + } + + return 0; +} + +void qse_xli_fini (qse_xli_t* xli) +{ + qse_str_close (xli->tok.name); +} + +qse_mmgr_t* qse_xli_getmmgr (qse_xli_t* xli) +{ + return xli->mmgr; +} + +void* qse_xli_getxtn (qse_xli_t* xli) +{ + return QSE_XTN (xli); +} + +int qse_xli_setopt (qse_xli_t* xli, qse_xli_opt_t id, const void* value) +{ + switch (id) + { + case QSE_XLI_TRAIT: + xli->opt.trait = *(const int*)value; + return 0; + } + + xli->errnum = QSE_XLI_EINVAL; + return -1; +} + +int qse_xli_getopt (qse_xli_t* xli, qse_xli_opt_t id, void* value) +{ + switch (id) + { + case QSE_XLI_TRAIT: + *(int*)value = xli->opt.trait; + return 0; + }; + + xli->errnum = QSE_XLI_EINVAL; + return -1; +} + +qse_xli_ecb_t* qse_xli_popecb (qse_xli_t* xli) +{ + qse_xli_ecb_t* top = xli->ecb; + if (top) xli->ecb = top->next; + return top; +} + +void qse_xli_pushecb (qse_xli_t* xli, qse_xli_ecb_t* ecb) +{ + ecb->next = xli->ecb; + xli->ecb = ecb; +} + +/* ------------------------------------------------------ */ + +void* qse_xli_allocmem (qse_xli_t* xli, qse_size_t size) +{ + void* ptr; + + ptr = QSE_MMGR_ALLOC (xli->mmgr, size); + if (ptr == QSE_NULL) xli->errnum = QSE_XLI_ENOMEM; + return ptr; +} + +void* qse_xli_callocmem (qse_xli_t* xli, qse_size_t size) +{ + void* ptr; + + ptr = QSE_MMGR_ALLOC (xli->mmgr, size); + if (ptr == QSE_NULL) xli->errnum = QSE_XLI_ENOMEM; + else QSE_MEMSET (ptr, 0, size); + return ptr; +} + +void qse_xli_freemem (qse_xli_t* xli, void* ptr) +{ + QSE_MMGR_FREE (xli->mmgr, ptr); +} + +/* ------------------------------------------------------ */ + +static void insert_atom ( + qse_xli_t* xli, qse_xli_list_t* parent, + qse_xli_atom_t* peer, qse_xli_atom_t* atom) +{ + if (parent == QSE_NULL) parent = &xli->root; + + if (peer == QSE_NULL) + { + /* insert it to the tail */ + atom->prev = parent->tail; + parent->tail = atom; + if (parent->head == QSE_NULL) parent->head = atom; + } + else + { + /* insert it in front of peer */ + QSE_ASSERT (parent->head != QSE_NULL); + QSE_ASSERT (parent->tail != QSE_NULL); + + atom->prev = peer->prev; + if (peer->prev) peer->prev->next = atom; + else + { + QSE_ASSERT (peer = parent->head); + parent->head = atom; + } + atom->next = peer; + peer->prev = atom; + } +} + +qse_xli_atom_t* qse_xli_insertpair ( + qse_xli_t* xli, qse_xli_list_t* parent, qse_xli_atom_t* peer, + const qse_char_t* key, const qse_char_t* name, qse_xli_val_t* value) +{ + qse_xli_pair_t* pair; + qse_size_t klen, nlen; + + klen = qse_strlen (key); + nlen = name? qse_strlen (name): 0; + + pair = qse_xli_callocmem (xli, + QSE_SIZEOF(*pair) + + ((klen + 1) * QSE_SIZEOF(*key)) + + ((nlen + 1) * QSE_SIZEOF(*name))); + if (pair == QSE_NULL) return QSE_NULL; + + pair->type = QSE_XLI_PAIR; + pair->key = (const qse_char_t*)(pair + 1); + pair->name = pair->key + klen + 1; + pair->val = value; /* this assumes it points to a dynamically allocated atom */ + + insert_atom (xli, parent, peer, pair); + + return (qse_xli_atom_t*)pair; +} + +qse_xli_atom_t* qse_xli_insertpairwithstr ( + qse_xli_t* xli, qse_xli_list_t* parent, qse_xli_atom_t* peer, + const qse_char_t* key, const qse_char_t* name, const qse_char_t* value) +{ + qse_xli_str_t* val; + qse_xli_atom_t* tmp; + qse_size_t vlen; + + vlen = qse_strlen (value); + val = qse_xli_callocmem (xli, QSE_SIZEOF(*val) + ((vlen + 1) * QSE_SIZEOF(*value))); + if (val == QSE_NULL) return QSE_NULL; + + val->type = QSE_XLI_STR; + val->ptr = (const qse_char_t*)(val + 1); + val->len = vlen; + tmp = qse_xli_insertpair (xli, parent, peer, key, name, val); + if (tmp == QSE_NULL) qse_xli_freemem (xli, val); + return tmp; +} + +qse_xli_atom_t* qse_xli_inserttext ( + qse_xli_t* xli, qse_xli_atom_t* parent, qse_xli_atom_t* peer, const qse_char_t* str) +{ + qse_xli_text_t* text; + qse_size_t slen; + + slen = qse_strlen (str); + + text = qse_xli_callocmem (xli, QSE_SIZEOF(*text) + ((slen + 1) * QSE_SIZEOF(*str))); + if (text == QSE_NULL) return QSE_NULL; + + text->type = QSE_XLI_TEXT; + text->ptr = (const qse_char_t*)(text + 1); + text->len = slen; + + insert_atom (xli, parent, peer, text); + + return (qse_xli_atom_t*)text; +} + +/* ------------------------------------------------------ */ + +int qse_xli_write (qse_xli_t* xli, qse_xli_io_impl_t io) +{ + /* TODO: write data to io stream */ + xli->errnum = QSE_XLI_ENOIMPL; + return -1; +} + +void qse_xli_clear (qse_xli_t* xli) +{ + /* TODO: free data under xli->root */ +} diff --git a/qse/lib/xli/xli.h b/qse/lib/xli/xli.h new file mode 100644 index 00000000..52489e6a --- /dev/null +++ b/qse/lib/xli/xli.h @@ -0,0 +1,77 @@ +/* + * $Id$ + * + Copyright 2006-2012 Chung, Hyung-Hwan. + This file is part of QSE. + + QSE 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 3 of + the License, or (at your option) any later version. + + QSE 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 QSE. If not, see . + */ + +#ifndef _QSE_LIB_XLI_XLI_H_ +#define _QSE_LIB_XLI_XLI_H_ + +#include +#include +#include "../cmn/mem.h" + +typedef struct qse_xli_tok_t qse_xli_tok_t; + +struct qse_xli_tok_t +{ + int type; + qse_str_t* name; + qse_xli_loc_t loc; +}; + +struct qse_xli_t +{ + qse_mmgr_t* mmgr; + qse_xli_errnum_t errnum; + + struct + { + int trait; + } opt; + + qse_xli_ecb_t* ecb; + + qse_xli_list_t root; + + qse_xli_tok_t tok; + struct + { + qse_xli_io_impl_t inf; /* input handler */ + qse_xli_io_arg_t arg; /* for top level */ + qse_xli_io_arg_t* inp; /* current */ + + qse_xli_io_lxc_t last; + } sio; +}; + + +#if defined(__cplusplus) +extern "C" { +#endif + +int qse_xli_init (qse_xli_t* xli, qse_mmgr_t* mmgr); + +void qse_xli_fini (qse_xli_t* xli); + +#if defined(__cplusplus) +} +#endif + + + +#endif