summaryrefslogtreecommitdiff
path: root/derive.cc
blob: bcf8f8f37543cb575b577d1fb477ded2d6545aa6 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#include "derive.h"
#include "session.h"
#include "walk.h"

namespace ledger {

entry_t * derive_new_entry(report_t& report,
			   strings_list::iterator i,
			   strings_list::iterator end)
{
  session_t& session(report.session);

  std::auto_ptr<entry_t> added(new entry_t);

  entry_t * matching = NULL;

  // jww (2008-04-20): Need to parse the string here
  //added->_date = *i++;
  added->_date = boost::posix_time::time_from_string(*i++);
  if (i == end)
    throw std::runtime_error("Too few arguments to 'entry'");

  mask_t regexp(*i++);

  journals_iterator iter(session);
  entries_list::reverse_iterator j;

  for (journal_t * journal = iter(); journal; journal = iter()) {
    for (j = journal->entries.rbegin();
	 j != journal->entries.rend();
	 j++) {
      if (regexp.match((*j)->payee)) {
	matching = *j;
	break;
      }
    }
    if (matching) break;
  }

  added->payee = matching ? matching->payee : regexp.expr.str();

  if (! matching) {
    account_t * acct;
    if (i == end || ((*i)[0] == '-' || std::isdigit((*i)[0]))) {
      acct = session.find_account("Expenses");
    }
    else if (i != end) {
      acct = session.find_account_re(*i);
      if (! acct)
	acct = session.find_account(*i);
      assert(acct);
      i++;
    }

    if (i == end) {
      added->add_xact(new xact_t(acct));
    } else {
      xact_t * xact = new xact_t(acct, amount_t(*i++));
      added->add_xact(xact);

      if (! xact->amount.commodity()) {
	// If the amount has no commodity, we can determine it given
	// the account by creating a final for the account and then
	// checking if it contains only a single commodity.  An
	// account to which only dollars are applied would imply that
	// dollars are wanted now too.

	report.sum_all_accounts();

	value_t total = account_xdata(*acct).total;
	if (total.is_type(value_t::AMOUNT))
	  xact->amount.set_commodity(total.as_amount().commodity());
      }
    }

    acct = NULL;

    if (i != end) {
      if (! acct)
	acct = session.find_account_re(*i);
      if (! acct)
	acct = session.find_account(*i);
    }

    if (! acct) {
      if (matching && matching->journal->basket)
	acct = matching->journal->basket;
      else
	acct = session.find_account("Equity");
    }   

    added->add_xact(new xact_t(acct));
  }
  else if (i == end) {
    // If no argument were given but the payee, assume the user wants
    // to see the same xact as last time.
    added->code = matching->code;

    for (xacts_list::iterator k = matching->xacts.begin();
	 k != matching->xacts.end();
	 k++)
      added->add_xact(new xact_t(**k));
  }
  else if ((*i)[0] == '-' || std::isdigit((*i)[0])) {
    xact_t * m_xact, * xact, * first;
    m_xact = matching->xacts.front();

    first = xact = new xact_t(m_xact->account, amount_t(*i++));
    added->add_xact(xact);

    if (! xact->amount.commodity())
      xact->amount.set_commodity(m_xact->amount.commodity());

    m_xact = matching->xacts.back();

    xact = new xact_t(m_xact->account, - first->amount);
    added->add_xact(xact);

    if (i != end) {
      account_t * acct = session.find_account_re(*i);
      if (! acct)
	acct = session.find_account(*i);
      assert(acct);
      added->xacts.back()->account = acct;
    }
  }
  else {
    account_t * draw_acct = NULL;

    while (i != end) {
      string&	  re_pat(*i++);
      account_t * acct = NULL;
      amount_t *  amt  = NULL;

      mask_t acct_regex(re_pat);

      for (; j != matching->journal->entries.rend(); j++)
	if (regexp.match((*j)->payee)) {
	  entry_t * entry = *j;
	  for (xacts_list::const_iterator x =
		 entry->xacts.begin();
	       x != entry->xacts.end();
	       x++)
	    if (acct_regex.match((*x)->account->fullname())) {
	      acct = (*x)->account;
	      amt  = &(*x)->amount;
	      matching = entry;
	      goto found;
	    }
	}

    found:
      xact_t * xact;
      if (i == end) {
	if (amt)
	  xact = new xact_t(acct, *amt);
	else
	  xact = new xact_t(acct);
      } else {
	amount_t amount(*i++);

	strings_list::iterator x = i;
	if (i != end && ++x == end) {
	  draw_acct = session.find_account_re(*i);
	  if (! draw_acct)
	    draw_acct = session.find_account(*i);
	  i++;
	}

	if (! acct)
	  acct = session.find_account_re(re_pat);
	if (! acct)
	  acct = session.find_account(re_pat);

	xact = new xact_t(acct, amount);
	if (! xact->amount.commodity()) {
	  if (amt)
	    xact->amount.set_commodity(amt->commodity());
	  else if (amount_t::current_pool->default_commodity)
	    xact->amount.set_commodity(*amount_t::current_pool->default_commodity);
	}
      }
      added->add_xact(xact);
    }

    if (! draw_acct) {
      assert(matching->xacts.back()->account);
      draw_acct = matching->xacts.back()->account;
    }
    if (draw_acct)
      added->add_xact(new xact_t(draw_acct));
  }

  if ((matching &&
       ! matching->journal->entry_finalize_hooks.run_hooks(*added, false)) ||
      ! added->finalize() ||
      (matching &&
       ! matching->journal->entry_finalize_hooks.run_hooks(*added, true)))
    throw std::runtime_error("Failed to finalize derived entry (check commodities)");

  return added.release();
}

} // namespace ledger