/* * $Id$ * Copyright (c) 2006-2019 Chung, Hyung-Hwan. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #if defined(_WIN32) # include #endif #include #if defined(QSE_CHAR_IS_WCHAR) && defined(QSE_USE_PREFIX_SMALL_U) typedef std::basic_string String; #elif defined(QSE_CHAR_IS_WCHAR) typedef std::wstring String; #else typedef std::string String; #endif typedef QSE::StdAwk StdAwk; typedef QSE::StdAwk::Run Run; typedef QSE::StdAwk::Value Value; class MyConsoleHandler: public StdAwk::Console::Handler { public: // this class defines a console handler that can be // registered into an awk object. void setInput (const StdAwk::char_t* instr) { this->input = instr; this->inptr = this->input.c_str(); this->inend = inptr + this->input.length(); } const StdAwk::char_t* getOutput () { return this->output.c_str(); } protected: String input; // console input buffer const StdAwk::char_t* inptr; const StdAwk::char_t* inend; String output; // console output buffer int open (StdAwk::Console& io) { if (io.getMode() == StdAwk::Console::READ) { this->inptr = this->input.c_str(); this->inend = inptr + this->input.length(); } else { this->output.clear (); } return 1; // return open-success } int close (StdAwk::Console& io) { return 0; // return success } int flush (StdAwk::Console& io) { // there is nothing to flush since a string buffer // is used for a console output. just return success. return 0; } int next (StdAwk::Console& io) { // this stripped-down awk doesn't honor the nextfile statement // or the nextofile statement. just return failure. return -1; } StdAwk::ssize_t read (StdAwk::Console& io, StdAwk::char_t* data, size_t size) { if (this->inptr >= this->inend) return 0; // EOF size_t x = qse_strxncpy (data, size, inptr, inend - inptr); this->inptr += x; return x; } StdAwk::ssize_t write (StdAwk::Console& io, const StdAwk::char_t* data, size_t size) { try { this->output.append (data, size); } catch (...) { ((StdAwk::Run*)io)->setError (QSE_AWK_ENOMEM); return -1; } return size; } StdAwk::ssize_t writeBytes (StdAwk::Console& io, const qse_mchar_t* data, size_t size) { /* try { this->output.append (data, size); } catch (...) { ((StdAwk::Run*)io)->setError (QSE_AWK_ENOMEM); return -1; } return size; */ ((StdAwk::Run*)io)->setError (QSE_AWK_ENOIMPL); return -1; } }; static void print_error ( const StdAwk::loc_t& loc, const StdAwk::char_t* msg) { if (loc.line > 0 || loc.colm > 0) qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s at LINE %lu COLUMN %lu\n"), msg, loc.line, loc.colm); else qse_fprintf (QSE_STDERR, QSE_T("ERROR: %s\n"), msg); } static int run_awk (StdAwk& awk) { // sample input string const qse_char_t* instr = QSE_T( "aardvark 555-5553 1200/300 B\n" "alpo-net 555-3412 2400/1200/300 A\n" "barfly 555-7685 1200/300 A\n" "bites 555-1675 2400/1200/300 A\n" "camelot 555-0542 300 C\n" "core 555-2912 1200/300 C\n" "fooey 555-1234 2400/1200/300 B\n" "foot 555-6699 1200/300 B\n" "macfoo 555-6480 1200/300 A\n" "sdace 555-3430 2400/1200/300 A\n" "sabafoo 555-2127 1200/300 C\n"); const qse_char_t* instr2 = QSE_T( "aardvark 555-5553 1200/300 A\n" "alpo-net 555-3412 2400/1200/300 B\n" "barfly 555-7685 1200/300 C\n" "bites 555-1675 2400/1200/300 A\n" "camelot 555-0542 300 C\n" "core 555-2912 1200/300 B\n" "fooey 555-1234 2400/1200/300 A\n" "foot 555-6699 1200/300 A\n" "macfoo 555-6480 1200/300 B\n" "sdace 555-3430 2400/1200/300 B\n" "sabafoo 555-2127 1200/300 A\n"); // ARGV[0] if (awk.addArgument (QSE_T("awk14")) <= -1) return -1; // prepare a string to print lines with A in the fourth column StdAwk::SourceString in (QSE_T("$4 == \"A\" { print $2, $1, $3; }")); // parse the script. if (awk.parse (in, StdAwk::Source::NONE) == QSE_NULL) return -1; StdAwk::Value r; MyConsoleHandler* mch = (MyConsoleHandler*)awk.getConsoleHandler(); mch->setInput (instr); // locate the input string int x = awk.loop (&r); // execute the BEGIN, pattern-action, END blocks. if (x >= 0) { qse_printf (QSE_T("%s"), mch->getOutput()); // print the console output qse_printf (QSE_T("-----------------------------\n")); mch->setInput (instr2); // reset the runtime context so that the next loop() method // is performed over a new console stream. if (awk.resetRunContext() == QSE_NULL) return -1; int x = awk.loop (&r); if (x >= 0) { qse_printf (QSE_T("%s"), mch->getOutput()); qse_printf (QSE_T("-----------------------------\n")); } } return x; } static int awk_main (int argc, qse_char_t* argv[]) { MyConsoleHandler mch; StdAwk awk; int ret = awk.open (); if (ret >= 0) { awk.setConsoleHandler (&mch); ret = run_awk (awk); } if (ret <= -1) { StdAwk::loc_t loc = awk.getErrorLocation(); print_error (loc, awk.getErrorMessage()); } awk.close (); return ret; } int qse_main (int argc, qse_achar_t* argv[]) { int x; qse_open_stdsios (); { #if defined(_WIN32) char locale[100]; UINT codepage = GetConsoleOutputCP(); if (codepage == CP_UTF8) { /*SetConsoleOUtputCP (CP_UTF8);*/ qse_setdflcmgrbyid (QSE_CMGR_UTF8); } else { sprintf (locale, ".%u", (unsigned int)codepage); setlocale (LC_ALL, locale); /*qse_setdflcmgrbyid (QSE_CMGR_SLMB);*/ } #else setlocale (LC_ALL, ""); /*qse_setdflcmgrbyid (QSE_CMGR_SLMB);*/ #endif } x = qse_run_main (argc,argv,awk_main); qse_close_stdsios (); return x; }