From 7380da43ab403dacb41d2010093d11942bb7cec1 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 21 May 2007 20:42:05 +0000 Subject: Many changes. --- src/data/textual.cc | 480 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 480 insertions(+) create mode 100644 src/data/textual.cc (limited to 'src/data/textual.cc') diff --git a/src/data/textual.cc b/src/data/textual.cc new file mode 100644 index 00000000..8fdd4db1 --- /dev/null +++ b/src/data/textual.cc @@ -0,0 +1,480 @@ +/* + * Copyright (c) 2003-2007, John Wiegley. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - 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. + * + * - Neither the name of New Artisans LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "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 COPYRIGHT + * OWNER OR CONTRIBUTORS 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 "textual.h" + +namespace ledger { + +using namespace xml; + +#define MAX_LINE 1024 + +typedef builder_t::position_t position_t; + +void parse_transaction(builder_t& builder, + char * line, + position_t& end_of_line) +{ + // First cut up the input line into its various parts. + + char * state = NULL; + char * account_path = NULL; + char * amount = NULL; + char * note = NULL; + + char * p = line; + + if (*p == '*' || *p == '!') + state = p++; + + account_path = skip_ws(p); + + amount = next_element(account_path, true); + if (amount) { + char * p = amount; + while (*p && *p != ';') + p++; + + if (*p == ';') { + *p++ = '\0'; + note = skip_ws(p); + } + + p = amount + (std::strlen(amount) - 1); + while (p > amount && std::isspace(*p)) + p--; + + if (std::isspace(*(p + 1))) + *++p = '\0'; + } + + // Setup the details for this node + + if (state) { + switch (*state) { + case '*': + builder.push_attr(CLEARED_ATTR, "yes"); + break; + case '!': + builder.push_attr(PENDING_ATTR, "yes"); + break; + } + } + + builder.begin_node(TRANSACTION_NODE); + + // Parse the account name + + char * b = &account_path[0]; + char * e = &account_path[std::strlen(account_path) - 1]; + if ((*b == '[' && *e == ']') || + (*b == '(' && *e == ')')) { + builder.push_attr(VIRTUAL_ATTR, "yes"); + if (*b == '[') + builder.push_attr(BALANCE_ATTR, "yes"); + *account_path++ = '\0'; + *e = '\0'; + } + + builder.begin_node(ACCOUNT_PATH_NODE, true); + builder.append_text(account_path); + builder.end_node(ACCOUNT_PATH_NODE); + + // Parse the optional amount + + if (amount) { + builder.begin_node(AMOUNT_EXPR_NODE, true); + builder.append_text(amount); + builder.end_node(AMOUNT_EXPR_NODE); + } + + // Parse the optional note + + if (note) { + builder.begin_node(NOTE_NODE, true); + builder.append_text(note); + builder.end_node(NOTE_NODE); + } + + builder.end_node(TRANSACTION_NODE, end_of_line); +} + +bool parse_transactions(std::istream& in, builder_t& builder) +{ + TRACE_START(entry_xacts, 1, "Time spent parsing transactions:"); + + bool added = false; + + while (! in.eof() && (in.peek() == ' ' || in.peek() == '\t')) { + static char line[MAX_LINE + 1]; + line[0] = '\0'; + in.getline(line, MAX_LINE); + if (in.eof() || line[0] == '\0') + break; + + position_t end_of_line(builder.position()); + end_of_line.offset += std::strlen(line) + 1; + end_of_line.linenum++; + + char * p = skip_ws(line); + if (! *p || *p == '\r' || *p == '\n') + break; + + parse_transaction(builder, line, end_of_line); + added = true; + } + + TRACE_STOP(entry_xacts, 1); + + return added; +} + +void parse_entry(std::istream& in, + builder_t& builder, + char * line, + position_t& end_of_line) +{ + TRACE_START(entry_text, 1, "Time spent preparing entry text:"); + + // First cut up the input line into its various parts + + char * date = NULL; + char * date_eff = NULL; + char * statep = NULL; + char * code = NULL; + char * payee = NULL; + + date = line; + + char * p = line; + + while (*p && (std::isdigit(*p) || *p == '/' || *p == '.' || *p == '-')) + p++; + assert(*p); + + if (*p == '=') { + *p++ = '\0'; + date_eff = p; + + while (*p && (std::isdigit(*p) || *p == '/' || *p == '.' || *p == '-')) + p++; + assert(*p); + } else { + *p++ = '\0'; + } + + p = skip_ws(p); + + if (*p == '*' || *p == '!') { + statep = p; + p++; *p++ = '\0'; + + p = skip_ws(p); + } + + if (*p == '(') { + code = ++p; + while (*p && *p != ')') + p++; + assert(*p); + *p++ = '\0'; + + p = skip_ws(p); + } + + payee = p; + + p = payee + (std::strlen(payee) - 1); + while (p > payee && std::isspace(*p)) + p--; + + if (std::isspace(*(p + 1))) + *++p = '\0'; + + TRACE_STOP(entry_text, 1); + + // Setup the details for this node + + TRACE_START(entry_details, 1, "Time spent parsing entry details:"); + + builder.push_attr(DATE_ATTR, date); + + if (date_eff) + builder.push_attr(EFF_DATE_ATTR, date_eff); + + if (statep) { + switch (*statep) { + case '*': + builder.push_attr(CLEARED_ATTR, "yes"); + break; + case '!': + builder.push_attr(PENDING_ATTR, "yes"); + break; + } + } + + if (code) + builder.push_attr(CODE_ATTR, code); + + builder.begin_node(ENTRY_NODE); + + builder.begin_node(PAYEE_NODE, true); + assert(payee); + builder.append_text(*payee != '\0' ? payee : ""); + builder.end_node(PAYEE_NODE, end_of_line); + + TRACE_STOP(entry_details, 1); + + // Parse all the transactions associated with this entry + + if (! parse_transactions(in, builder)) + throw_(parse_error, "Entry has no transactions"); + + builder.end_node(ENTRY_NODE); +} + +bool textual_parser_t::test(std::istream& in) const +{ + char buf[5]; + + in.read(buf, 5); + if (std::strncmp(buf, "