summaryrefslogtreecommitdiff
path: root/binary.cc
blob: 9bdfac675969776ff97ccf220bc6351451950619 (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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#include "ledger.h"

#include <vector>
#include <fstream>
#include <sstream>
#include <cstring>
#include <ctime>
#include <cctype>

#include <sys/stat.h>

#define TIMELOG_SUPPORT 1

namespace ledger {

       unsigned long binary_magic_number = 0xFFEED765;
static unsigned long format_version      = 0x0002000a;

static std::vector<account_t *>   accounts;
static account_t::ident_t	  ident;
static std::vector<commodity_t *> commodities;
static commodity_t::ident_t	  c_ident;


#if RELEASE_LEVEL >= ALPHA
#define read_binary_guard(in, id) {		\
  unsigned short guard;				\
  in.read((char *)&guard, sizeof(guard));	\
  assert(guard == id);				\
}
#else
#define read_binary_guard(in, id)
#endif

template <typename T>
inline void read_binary_number(std::istream& in, T& num) {
  in.read((char *)&num, sizeof(num));
}

template <typename T>
inline T read_binary_number(std::istream& in) {
  T num;
  in.read((char *)&num, sizeof(num));
  return num;
}

inline void read_binary_string(std::istream& in, std::string& str)
{
  read_binary_guard(in, 0x3001);

  unsigned char len;
  read_binary_number(in, len);
  if (len == 0xff) {
    unsigned short slen;
    read_binary_number(in, slen);
    char * buf = new char[slen + 1];
    in.read(buf, slen);
    buf[slen] = '\0';
    str = buf;
    delete[] buf;
  }
  else if (len) {
    char buf[256];
    in.read(buf, len);
    buf[len] = '\0';
    str = buf;
  } else {
    str = "";
  }

  read_binary_guard(in, 0x3002);
}

inline std::string read_binary_string(std::istream& in)
{
  std::string temp;
  read_binary_string(in, temp);
  return temp;
}

void read_binary_amount(std::istream& in, amount_t& amt)
{
  commodity_t::ident_t id;
  read_binary_number(in, id);
  if (id == 0xffff)
    amt.commodity = NULL;
  else
    amt.commodity = commodities[id];

  amt.read_quantity(in);
}

transaction_t * read_binary_transaction(std::istream& in, entry_t * entry)
{
  transaction_t * xact = new transaction_t(entry, NULL);

  account_t::ident_t id;
  read_binary_number(in, id);
  xact->account = accounts[id];
  xact->account->add_transaction(xact);

  read_binary_amount(in, xact->amount);
  read_binary_amount(in, xact->cost);
  read_binary_number(in, xact->flags);
  read_binary_string(in, xact->note);

  return xact;
}

entry_t * read_binary_entry(std::istream& in, journal_t * journal)
{
  entry_t * entry = new entry_t;

  read_binary_number(in, entry->date);
  read_binary_number(in, entry->state);
  read_binary_string(in, entry->code);
  read_binary_string(in, entry->payee);

  for (unsigned long i = 0, count = read_binary_number<unsigned long>(in);
       i < count;
       i++) {
    transaction_t * xact = read_binary_transaction(in, entry);
    entry->transactions.push_back(xact);
  }

  return entry;
}

commodity_t * read_binary_commodity(std::istream& in)
{
  commodity_t * commodity = new commodity_t;
  commodities.push_back(commodity);

  commodity_t::ident_t id;
  read_binary_number(in, id);
  commodity->ident = id;
  assert(id == commodities.size() - 1);

  read_binary_string(in, commodity->symbol);
  read_binary_string(in, commodity->name);
  read_binary_string(in, commodity->note);
  read_binary_number(in, commodity->precision);
  read_binary_number(in, commodity->flags);

  for (unsigned long i = 0, count = read_binary_number<unsigned long>(in);
       i < count;
       i++) {
    std::time_t when;
    read_binary_number(in, when);
    amount_t amt;
    read_binary_amount(in, amt);
    commodity->history.insert(history_pair(when, amt));
  }

  read_binary_amount(in, commodity->conversion);

  return commodity;
}

account_t * read_binary_account(std::istream& in, account_t * master = NULL)
{
  account_t * acct = new account_t(NULL);
  accounts.push_back(acct);

  account_t::ident_t id;
  read_binary_number(in, id);
  acct->ident = id;
  assert(id == accounts.size() - 1);

  read_binary_number(in, id);	// parent id
  if (id == 0xffff)
    acct->parent = NULL;
  else
    acct->parent = accounts[id];

  read_binary_string(in, acct->name);
  read_binary_string(in, acct->note);
  read_binary_number(in, acct->depth);

  // If all of the subaccounts will be added to a different master
  // account, throw away what we've learned about the recorded
  // journal's own master account.

  if (master) {
    delete acct;
    acct = master;
  }

  for (account_t::ident_t i = 0,
	 count = read_binary_number<account_t::ident_t>(in);
       i < count;
       i++) {
    account_t * child = read_binary_account(in);
    child->parent = acct;
    acct->add_account(child);
  }

  return acct;
}

unsigned int read_binary_journal(std::istream& in,
				 journal_t *   journal,
				 account_t *   master)
{
  ident   = 0;
  c_ident = 0;

  if (read_binary_number<unsigned long>(in) != binary_magic_number ||
      read_binary_number<unsigned long>(in) != format_version)
    return 0;

  for (unsigned short i = 0,
	 count = read_binary_number<unsigned short>(in);
       i < count;
       i++) {
    std::string path = read_binary_string(in);
    std::time_t old_mtime;
    read_binary_number(in, old_mtime);
    struct stat info;
    stat(path.c_str(), &info);
    if (std::difftime(info.st_mtime, old_mtime) > 0)
      return 0;
    journal->sources.push_back(path);
  }

  journal->master = read_binary_account(in, master);

  for (account_t::ident_t i = 0,
	 count = read_binary_number<account_t::ident_t>(in);
       i < count;
       i++) {
    commodity_t * commodity = read_binary_commodity(in);
    std::pair<commodities_map::iterator, bool> result
      = commodity_t::commodities.insert(commodities_pair(commodity->symbol,
							 commodity));
    assert(result.second || master);
  }

  unsigned int count = read_binary_number<unsigned long>(in);
  for (unsigned long i = 0;
       i < count;
       i++) {
    entry_t * entry = read_binary_entry(in, journal);
    journal->entries.push_back(entry);
  }

  accounts.clear();
  commodities.clear();

  return count;
}


#if RELEASE_LEVEL >= ALPHA
#define write_binary_guard(in, id) {		\
  unsigned short guard = id;			\
  out.write((char *)&guard, sizeof(guard));	\
}
#else
#define write_binary_guard(in, id)
#endif

template <typename T>
inline void write_binary_number(std::ostream& out, T num) {
  out.write((char *)&num, sizeof(num));
}

inline void write_binary_string(std::ostream& out, const std::string& str)
{
  write_binary_guard(out, 0x3001);

  unsigned long len = str.length();
  if (len > 255) {
    assert(len < 65536);
    write_binary_number<unsigned char>(out, 0xff);
    write_binary_number<unsigned short>(out, len);
  } else {
    write_binary_number<unsigned char>(out, len);
  }

  if (len)
    out.write(str.c_str(), len);

  write_binary_guard(out, 0x3002);
}

void write_binary_amount(std::ostream& out, const amount_t& amt)
{
  if (amt.commodity)
    write_binary_number(out, amt.commodity->ident);
  else
    write_binary_number<commodity_t::ident_t>(out, 0xffff);

  amt.write_quantity(out);
}

void write_binary_transaction(std::ostream& out, transaction_t * xact)
{
  write_binary_number(out, xact->account->ident);
  write_binary_amount(out, xact->amount);
  write_binary_amount(out, xact->cost);
  write_binary_number(out, xact->flags);
  write_binary_string(out, xact->note);
}

void write_binary_entry(std::ostream& out, entry_t * entry)
{
  write_binary_number(out, entry->date);
  write_binary_number(out, entry->state);
  write_binary_string(out, entry->code);
  write_binary_string(out, entry->payee);

  write_binary_number<unsigned long>(out, entry->transactions.size());
  for (transactions_list::const_iterator i = entry->transactions.begin();
       i != entry->transactions.end();
       i++)
    write_binary_transaction(out, *i);
}

void write_binary_commodity(std::ostream& out, commodity_t * commodity)
{
  write_binary_number(out, c_ident);
  commodity->ident = c_ident;
  ++c_ident;

  write_binary_string(out, commodity->symbol);
  write_binary_string(out, commodity->name);
  write_binary_string(out, commodity->note);
  write_binary_number(out, commodity->precision);
  write_binary_number(out, commodity->flags);

  write_binary_number<unsigned long>(out, commodity->history.size());
  for (history_map::const_iterator i = commodity->history.begin();
       i != commodity->history.end();
       i++) {
    write_binary_number(out, (*i).first);
    write_binary_amount(out, (*i).second);
  }

  write_binary_amount(out, commodity->conversion);
}

void write_binary_account(std::ostream& out, account_t * account)
{
  write_binary_number(out, ident);
  account->ident = ident;
  ++ident;

  if (account->parent)
    write_binary_number(out, account->parent->ident);
  else
    write_binary_number<account_t::ident_t>(out, 0xffff);

  write_binary_string(out, account->name);
  write_binary_string(out, account->note);
  write_binary_number(out, account->depth);

  write_binary_number<account_t::ident_t>(out, account->accounts.size());
  for (accounts_map::iterator i = account->accounts.begin();
       i != account->accounts.end();
       i++)
    write_binary_account(out, (*i).second);
}

void write_binary_journal(std::ostream& out, journal_t * journal,
			  strings_list * files)
{
  write_binary_number(out, binary_magic_number);
  write_binary_number(out, format_version);

  if (! files) {
    write_binary_number<unsigned short>(out, 0);
  } else {
    write_binary_number<unsigned short>(out, files->size());
    for (strings_list::const_iterator i = files->begin();
	 i != files->end();
	 i++) {
      write_binary_string(out, *i);
      struct stat info;
      stat((*i).c_str(), &info);
      write_binary_number(out, std::time_t(info.st_mtime));
    }
  }

  write_binary_account(out, journal->master);

  write_binary_number<commodity_t::ident_t>(out, commodity_t::commodities.size() - 1);
  for (commodities_map::const_iterator i = commodity_t::commodities.begin();
       i != commodity_t::commodities.end();
       i++)
    if (! (*i).first.empty())
      write_binary_commodity(out, (*i).second);

  write_binary_number<unsigned long>(out, journal->entries.size());
  for (entries_list::const_iterator i = journal->entries.begin();
       i != journal->entries.end();
       i++)
    write_binary_entry(out, *i);
}

} // namespace ledger