qse/qse/samples/awk/awk07.cpp

123 lines
3.0 KiB
C++
Raw Normal View History

2009-07-10 06:46:14 +00:00
/*
* $Id: Awk.cpp 341 2008-08-20 10:58:19Z baconevi $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <qse/awk/StdAwk.hpp>
#include <qse/cmn/stdio.h>
#include <qse/cmn/main.h>
static void print_error (unsigned long line, const qse_char_t* msg)
2009-07-10 06:46:14 +00:00
{
if (line > 0)
qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s at LINE %lu\n"), msg, line);
else
qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s\n"), msg);
2009-07-10 06:46:14 +00:00
}
2009-07-10 06:46:14 +00:00
static int run_awk (QSE::StdAwk& awk)
{
QSE::StdAwk::Run* run;
2009-07-10 06:46:14 +00:00
const qse_char_t* script = QSE_T(
"function pa (x) {\n"
" reset ret;\n"
" for (i in x) { print i, \"=>\", x[i]; ret += x[i]; }\n"
" return ret;\n"
"}\n"
"function pb (x) {\n"
" reset ret;\n"
" for (i in x) { ret[-i] = -x[i]; }\n"
" return ret;\n"
"}"
);
2009-07-10 06:46:14 +00:00
QSE::StdAwk::SourceString in (script);
QSE::StdAwk::SourceFile out (QSE_T("awk07.out"));
2009-07-10 06:46:14 +00:00
// parse the script and deparse it to awk07.out
run = awk.parse (&in, &out);
if (run == QSE_NULL) return -1;
2009-07-10 06:46:14 +00:00
QSE::StdAwk::Value arg[1];
2009-07-10 06:46:14 +00:00
for (int i = 1; i <= 5; i++)
2009-07-10 06:46:14 +00:00
{
if (arg[0].setIndexedInt (
run, QSE::StdAwk::Value::IntIndex(i), i*20) <= -1) return -1;
2009-07-10 06:46:14 +00:00
}
QSE::StdAwk::Value r;
2009-07-10 06:46:14 +00:00
// call the 'pa' function
if (awk.call (QSE_T("pa"), &r, arg, QSE_COUNTOF(arg)) <= -1) return -1;
2009-07-10 06:46:14 +00:00
// output the result in various types
qse_printf (QSE_T("RESULT: (int) [%lld]\n"), (long long)r.toInt());
qse_printf (QSE_T(" (real) [%Lf]\n"), (long double)r.toReal());
qse_printf (QSE_T(" (str) [%s]\n"), r.toStr(QSE_NULL));
2009-07-10 06:46:14 +00:00
// call the 'pb' function
if (awk.call (QSE_T("pb"), &r, arg, QSE_COUNTOF(arg)) <= -1) return -1;
2009-07-10 06:46:14 +00:00
// output the returned map.
QSE_ASSERT (r.isIndexed());
2009-07-10 06:46:14 +00:00
QSE::StdAwk::Value::IndexIterator iter;
QSE::StdAwk::Value::Index idx;
QSE::StdAwk::Value v;
2009-07-10 06:46:14 +00:00
qse_printf (QSE_T("RESULT:\n"));
2009-07-10 06:46:14 +00:00
iter = r.getFirstIndex (&idx);
while (iter != QSE::StdAwk::Value::IndexIterator::END)
2009-07-10 06:46:14 +00:00
{
if (r.getIndexed (idx, &v) <= -1) return -1;
qse_printf (QSE_T("\t[%.*s]=>[%lld]\n"),
(int)idx.len, idx.ptr, (long long)v.toInt());
iter = r.getNextIndex (&idx, iter);
2009-07-10 06:46:14 +00:00
}
return 0;
2009-07-10 06:46:14 +00:00
}
static int awk_main (int argc, qse_char_t* argv[])
{
QSE::StdAwk awk;
2009-07-10 06:46:14 +00:00
int ret = awk.open();
2009-07-10 06:46:14 +00:00
// allow returning a map from a function and enable 'reset'
awk.setOption (
awk.getOption() |
QSE::StdAwk::OPT_MAPTOVAR |
QSE::StdAwk::OPT_RESET);
2009-07-10 06:46:14 +00:00
if (ret >= 0) ret = run_awk (awk);
if (ret <= -1) print_error (awk.getErrorLine(), awk.getErrorMessage());
2009-07-10 06:46:14 +00:00
awk.close ();
return -1;
2009-07-10 06:46:14 +00:00
}
int qse_main (int argc, qse_achar_t* argv[])
{
return qse_runmain (argc,argv,awk_main);
}