/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** * macroheaderparser.cc * * Wed Jul 22 08:42:23 CEST 2009 * Copyright 2009 Bent Bisballe Nyeng * deva@aasimon.org ****************************************************************************/ /* * This file is part of Pracro. * * Pracro is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Pracro 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Pracro; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "macroheaderparser.h" #include // For assert #include // For open and friends #include #include #include #include // For vprintf and friends #include #include #include #include #include "configuration.h" #include "exception.h" void MacroHeaderParser::error(const char* fmt, ...) { ERR(macro, "Error in MacroHeaderParser: "); { char *p; va_list argp; va_start(argp, fmt); if(vasprintf(&p, fmt, argp) != -1) { ERR(macro, "%s", p); throw Exception("Error in MacroHeaderParser: " + std::string(p)); free(p); } va_end(argp); } } MacroHeaderParser::MacroHeaderParser(std::string macrofile) { m = NULL; file = macrofile; DEBUG(macro, "Using macro file: %s\n", macrofile.c_str()); fd = open(macrofile.c_str(), O_RDONLY); if(fd == -1) error("Could not open file %s", macrofile.c_str()); } MacroHeaderParser::~MacroHeaderParser() { if(fd != -1) close(fd); if(m) delete m; } void MacroHeaderParser::startTag(std::string name, attributes_t &attr) { if(m) return; if(name == "macro") { m = new Macro(); if(attr.find("name") != attr.end()) m->name = attr["name"]; if(attr.find("version") != attr.end()) m->version = attr["version"]; } else { throw Exception("Missing root tag 'macro' - found '" + name + "'"); } } int MacroHeaderParser::readData(char *data, size_t size) { if(m) return 0; // If m is allocated, it means that we have parsed the macro // tag, and can dismiss the rest of the document. if(fd == -1) { ERR(macro, "Invalid file descriptor.\n"); return 0; } ssize_t r = read(fd, data, size); if(r == -1) { ERR(macro, "Could not read...%s\n", strerror(errno)); return 0; } return r; } void MacroHeaderParser::parseError(const char *buf, size_t len, std::string error, int lineno) { if(m) return; // Ignore "unclosed token" errors when the macro tag has been parsed. ERR(macro, "MacroHeaderParser[%s] error at line %d: %s\n", file.c_str(), lineno, error.c_str()); ERR(macro, "\tBuffer %u bytes: [", (int)len); if(fwrite(buf, len, 1, stderr) != len) {} ERR(macro, "]\n"); char *slineno; if(asprintf(&slineno, " at line %d\n", lineno) != -1) { throw Exception(error + slineno); free(slineno); } } Macro *MacroHeaderParser::getMacro() { return m; } #ifdef TEST_MACROHEADERPARSER //deps: debug.cc log.cc saxparser.cc exception.cc mutex.cc //cflags: -I.. $(EXPAT_CFLAGS) $(PTHREAD_CFLAGS) //libs: $(EXPAT_LIBS) $(PTHREAD_LIBS) #include #define XMLFILE "/tmp/test_macroheaderparser.xml" #include #include #include #include #include #include /* static char xml[] = "\n" "\n" " \n" " \n" "" ; static char xml_nonmacro[] = "\n" "\n" " \n" " \n" "" ; static char xml_fail[] = "\n" "\n" " \n" " \n" "" ; */ TEST_BEGIN; // TODO: Put some testcode here (see test.h for usable macros). TEST_TRUE(false, "No tests yet!"); /* FILE *fp = fopen(XMLFILE, "w"); if(!fp) { printf("Could not write to %s\n", XMLFILE); return 1; } fprintf(fp, "%s", xml); fclose(fp); { // Test parsing of correct macro xml data. MacroHeaderParser parser(XMLFILE); try { parser.parse(); } catch(Exception &e) { printf("Failed to parse: %s\n", e.what()); return 1; } } fp = fopen(XMLFILE, "w"); if(!fp) { printf("Could not write to %s\n", XMLFILE); return 1; } fprintf(fp, "%s", xml_nonmacro); fclose(fp); // Test parsing of correct xml data, but not macro (should throw an exception). { MacroHeaderParser parser(XMLFILE); try { parser.parse(); } catch(Exception &e) { printf("Failed to parse: %s\n", e.what()); goto onandon; } return 1; } onandon: fp = fopen(XMLFILE, "w"); if(!fp) { printf("Could not write to %s\n", XMLFILE); return 1; } fprintf(fp, "%s", xml_fail); fclose(fp); // Test parsing of invalid xml data (should throw an exception). { MacroHeaderParser parser(XMLFILE); try { parser.parse(); } catch(Exception &e) { printf("Failed to parse: %s\n", e.what()); goto yetonandon; } return 1; } yetonandon: unlink(XMLFILE); */ TEST_END; #endif/*TEST_MACROHEADERPARSER*/