added some more docs

This commit is contained in:
hyung-hwan 2013-01-07 15:08:22 +00:00
parent 2624acb308
commit f689359e78
5 changed files with 52 additions and 43 deletions

View File

@ -1549,6 +1549,7 @@ PREDEFINED = "QSE_BEGIN_NAMESPACE(x)=namespace x {" \
"QSE_SIZEOF_FLOAT=@QSE_SIZEOF_FLOAT@" \ "QSE_SIZEOF_FLOAT=@QSE_SIZEOF_FLOAT@" \
"QSE_SIZEOF_DOUBLE=@QSE_SIZEOF_DOUBLE@" \ "QSE_SIZEOF_DOUBLE=@QSE_SIZEOF_DOUBLE@" \
"QSE_SIZEOF_LONG_DOUBLE=@QSE_SIZEOF_LONG_DOUBLE@" \ "QSE_SIZEOF_LONG_DOUBLE=@QSE_SIZEOF_LONG_DOUBLE@" \
"QSE_EXPORT=" \
"@CHAR_MODE@" "@CHAR_MODE@"
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then

View File

@ -6,11 +6,12 @@ EXTRA_DIST = \
gendoc.sh \ gendoc.sh \
page/mainpage.md \ page/mainpage.md \
page/installation.md \ page/installation.md \
page/mem.doc \ page/mem.doc \
page/cenc.doc \ page/cenc.doc \
page/io.doc \ page/io.doc \
page/awk.doc \ page/awk.doc \
page/awk-lang.md \ page/awk-embed.md \
page/sed.doc \ page/awk-lang.md \
page/sed.doc \
image/qse-logo.png image/qse-logo.png

28
qse/doc/page/awk-embed.md Normal file
View File

@ -0,0 +1,28 @@
Embedding Guid {#embedding-guide}
================================================================================
Overview
---------
The design of the library is divided into two layers: core and standard.
The core layer is a skeleton implmenetation that requires various callbacks
to be useful. The standard layer provides these callbacks in a general respect.
For example, qse_awk_open() in the core layer requires a set of primitive
functions to be able to create an awk object while qse_awk_openstd() provides
qse_awk_open() with a standard set of primitive functions.
Embedding QSEAWK involves the following steps in the simplest form:
- open a new awk object
- parse in a source script
- open a new runtime context
- execute pattern-action blocks or call a function
- decrement the reference count of the return value
- close the runtime context
- close the awk object
\includelineno awk01.c
You can create multiple runtime contexts over a single awk object. It is useful
if you want to execute the same AWK script over different data streams.

View File

@ -1,36 +1,7 @@
/*
* $Id: awk01.c 441 2011-04-22 14:28:43Z hyunghwan.chung $
*
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 <http://www.gnu.org/licenses/>.
*/
#include <qse/awk/std.h> #include <qse/awk/std.h>
#include <qse/cmn/stdio.h> #include <qse/cmn/stdio.h>
const qse_char_t* src = QSE_T( static const qse_char_t* script = QSE_T("BEGIN { print \"hello, world\"; }");
"BEGIN {"
" for (i=2;i<=9;i++)"
" {"
" for (j=1;j<=9;j++)"
" print i \"*\" j \"=\" i * j;"
" print \"---------------------\";"
" }"
"}"
);
int main () int main ()
{ {
@ -40,6 +11,7 @@ int main ()
qse_awk_parsestd_t psin; qse_awk_parsestd_t psin;
int ret = -1; int ret = -1;
/* create an awk object */
awk = qse_awk_openstd (0); awk = qse_awk_openstd (0);
if (awk == QSE_NULL) if (awk == QSE_NULL)
{ {
@ -48,9 +20,10 @@ int main ()
} }
psin.type = QSE_AWK_PARSESTD_STR; psin.type = QSE_AWK_PARSESTD_STR;
psin.u.str.ptr = src; psin.u.str.ptr = script;
psin.u.str.len = qse_strlen(src); psin.u.str.len = qse_strlen(script);
/* parse a script in a string */
if (qse_awk_parsestd (awk, &psin, QSE_NULL) <= -1) if (qse_awk_parsestd (awk, &psin, QSE_NULL) <= -1)
{ {
qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s\n"), qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s\n"),
@ -58,12 +31,13 @@ int main ()
goto oops; goto oops;
} }
/* open a runtime context */
rtx = qse_awk_rtx_openstd ( rtx = qse_awk_rtx_openstd (
awk, awk,
0, 0,
QSE_T("awk01"), QSE_T("awk01"),
QSE_NULL, /* stdin */ QSE_NULL, /* stdin */
QSE_NULL, /* stdout */ QSE_NULL, /* stdout */
QSE_NULL /* default cmgr */ QSE_NULL /* default cmgr */
); );
if (rtx == QSE_NULL) if (rtx == QSE_NULL)
@ -73,6 +47,7 @@ int main ()
goto oops; goto oops;
} }
/* execute pattern-action blocks */
retv = qse_awk_rtx_loop (rtx); retv = qse_awk_rtx_loop (rtx);
if (retv == QSE_NULL) if (retv == QSE_NULL)
{ {
@ -81,12 +56,16 @@ int main ()
goto oops; goto oops;
} }
/* decrement the reference count of the return value */
qse_awk_rtx_refdownval (rtx, retv); qse_awk_rtx_refdownval (rtx, retv);
ret = 0; ret = 0;
oops: oops:
if (rtx != QSE_NULL) qse_awk_rtx_close (rtx); /* destroy the runtime context */
if (awk != QSE_NULL) qse_awk_close (awk); if (rtx) qse_awk_rtx_close (rtx);
/* destroy the awk object */
if (awk) qse_awk_close (awk);
return ret; return ret;
} }