summaryrefslogtreecommitdiff
path: root/src/csv.cc
blob: c0f8cd0eb2c0e654b5590bc2ee641ab26ef73b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 * Copyright (c) 2003-2010, 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 <system.hh>

#include "csv.h"
#include "xact.h"
#include "post.h"
#include "account.h"
#include "journal.h"
#include "pool.h"

namespace ledger {

string csv_reader::read_field()
{
  string field;

  char c;
  if (in.peek() == '"' || in.peek() == '|') {
    in.get(c);
    char x;
    while (in.good() && ! in.eof()) {
      in.get(x);
      if (x == '\\') {
	in.get(x);
      }
      else if (x == c) {
	if (x == '|')
	  in.unget();
	else if (in.peek() == ',')
	  in.get(c);
	break;
      }
      field += x;
    }
  }
  else {
    
  }
  return field;
}

xact_t * csv_reader::read_xact(journal_t& journal, account_t * bucket)
{
  static char linebuf[MAX_LINE + 1];

  if (! in.good() || in.eof())
    return NULL;

  std::auto_ptr<xact_t> xact;

  while (in.good() && ! in.eof() && in.peek() == '#')
    in.getline(linebuf, MAX_LINE);

  xact.reset(new xact_t);

  xact->pos	      = position_t();
  xact->pos->pathname = "jww (2010-03-05): unknown";
  xact->pos->beg_pos  = in.tellg();
  xact->pos->beg_line = 0;
  xact->pos->sequence = 0;

  string date	= read_field(); trim(date);
  string code	= read_field(); trim(code);
  string payee	= read_field(); trim(payee);

  if (date.empty())
    return NULL;

  xact->set_state(item_t::CLEARED);
  xact->_date = parse_date(date);
  if (! code.empty())
    xact->code  = code;

  bool found = false;
  foreach (payee_mapping_t& value, journal.payee_mappings) {
    DEBUG("csv.mappings", "Looking for payee mapping: " << value.first);
    if (value.first.match(payee)) {
      xact->payee = value.second;
      found = true;
      break;
    }
  }
  if (! found)
    xact->payee = payee;

  string amount = read_field(); trim(amount);
  string total	= read_field(); trim(total);
  in.getline(linebuf, MAX_LINE); // skip to the next line

  std::auto_ptr<post_t> post(new post_t);

  post->xact = xact.get();

#if 0
  post->pos	      = position_t();
  post->pos->pathname = pathname;
  post->pos->beg_pos  = line_beg_pos;
  post->pos->beg_line = linenum;
  post->pos->sequence = context.sequence++;
#endif

  post->set_state(item_t::CLEARED);
  post->account = journal.master->find_account(_("Expenses:Unknown"));

  foreach (account_mapping_t& value, journal.account_mappings) {
    if (value.first.match(xact->payee)) {
      post->account = value.second;
      break;
    }
  }

  std::istringstream amount_str(amount);
  amount_t amt;
  amt.parse(amount_str, PARSE_NO_REDUCE);
  if (! amt.has_commodity() &&
      commodity_pool_t::current_pool->default_commodity)
    amt.set_commodity
      (*commodity_pool_t::current_pool->default_commodity);
  post->amount = amt;

  xact->add_post(post.release());

  post.reset(new post_t);

  post->xact = xact.get();

#if 0
  post->pos	      = position_t();
  post->pos->pathname = pathname;
  post->pos->beg_pos  = line_beg_pos;
  post->pos->beg_line = linenum;
  post->pos->sequence = context.sequence++;
#endif

  post->set_state(item_t::CLEARED);
  post->account = bucket;
  post->amount	= - amt;

  if (! total.empty()) {
    std::istringstream assigned_amount_str(total);
    amount_t assigned_amount;
    assigned_amount.parse(assigned_amount_str, PARSE_NO_REDUCE);
    post->assigned_amount = assigned_amount;
  }
  
  xact->add_post(post.release());

  return xact.release();
}

} // namespace ledger