summaryrefslogtreecommitdiffstats
path: root/gold/ledger/lib/balance
blob: deb50d1503d3323e9ea4ec8c4c4bc27d4ca26c78 (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
#! /usr/bin/awk -f
#
# ledger balance calculator
#
# usage:
#   [colorize=false] [scale=N] //ledger/lib/balance LEDGER_FILE...
#   [colorize=false] [scale=N] //ledger/lib/balance < LEDGER_FILE
#
# description:
#   The ledger balance calculator computes the balance of each account it
#   encounters in the provided ledger files.
#
# example:
#   //ledger/lib/balance < //cholerab/ledger-spec.markdown
#
# see also:
#   //cholerab/ledger-spec.markdown (ledger file format)
#

BEGIN {
  colorize = ENVIRON["colorize"] == "" || ENVIRON["colorize"] == "true"
  # TODO use bc for arbitrary precision arithmetic
  scale = ENVIRON["scale"]
}

/^[[:space:]]*[0-9]+-[0-9][0-9]-[0-9][0-9]/{
  tx($2, $3, $4, $5)
}

END {
  display_accounts()
}

function tx (dst, src, amt, u) {
  withdraw(src, amt, u)
  deposit(dst, amt, u)
}

function deposit (name, amt, u) {
  accounts[name][u] += amt
}

function withdraw (name, amt, u) {
  accounts[name][u] -= amt
}

function display_accounts() {
  max_name_len = 0
  for (name in accounts) {
    if (length(name) > max_name_len) {
      max_name_len = length(name)
    }
  }

  max_balance_len = 0
  for (name in accounts) {
    for (u in accounts[name]) {
      n = length(int(accounts[name][u]))
      if (n > max_balance_len) {
        max_balance_len = n
      }
    }
  }
  if (scale > 0) {
    max_balance_len += length(".") + scale
  }

  for (name in accounts) {
    for (u in accounts[name]) {
      balance = accounts[name][u]
      if (balance == 0) {
        continue
      }

      fmt = "NAME BALANCE UNIT\n"

      if (colorize) {
        sub("BALANCE", "[" (balance < 0 ? 31 : 32) "m&", fmt)
      }

      sub("NAME", "%-" max_name_len "s", fmt)
      sub("BALANCE", "%" max_balance_len "." scale "f", fmt)
      sub("UNIT", "%s", fmt)

      printf fmt, name, balance, u
    }
  }
}