hledger/Types.hs

121 lines
3.1 KiB
Haskell
Raw Normal View History

2007-07-02 22:57:37 +04:00
module Types
where
import Utils
2007-07-02 22:57:37 +04:00
import qualified Data.Map as Map
2007-07-02 20:43:14 +04:00
{-
2007-07-04 06:50:29 +04:00
Here is the approximate module hierarchy. The early code defined types in
each module and so was strictly layered. Now, all data types have been
moved to the bottom. The modules are still used to group related
2007-07-04 13:34:30 +04:00
functions/methods (" make overview " to list those).
2007-07-02 20:43:14 +04:00
hledger
Options
Tests
Parse
Models
TimeLog
TimeLogEntry
Ledger
2007-07-02 22:57:37 +04:00
Account
2007-07-04 13:34:30 +04:00
EntryTransaction
RawLedger
Entry
Transaction
AccountName
Amount
Currency
Types
Utils
2007-07-02 20:43:14 +04:00
-}
2007-03-12 03:13:53 +03:00
type Date = String
2007-07-02 20:43:14 +04:00
2007-03-12 03:13:53 +03:00
type DateTime = String
2007-07-02 20:43:14 +04:00
data Currency = Currency {
symbol :: String,
2007-07-04 06:50:29 +04:00
rate :: Double -- relative to the dollar.. 0 rates not supported yet
2007-07-02 20:43:14 +04:00
} deriving (Eq,Show)
-- some amount of money, time, stock, oranges, etc.
data Amount = Amount {
currency :: Currency,
quantity :: Double,
precision :: Int -- number of significant decimal places
2007-07-02 20:43:14 +04:00
} deriving (Eq)
2007-07-04 06:50:29 +04:00
-- AccountNames are strings like "assets:cash:petty"; from these we figure
-- out the chart of accounts
2007-07-02 20:43:14 +04:00
type AccountName = String
2007-07-04 06:50:29 +04:00
-- a flow of some amount to some account (see also EntryTransaction)
2007-07-02 20:43:14 +04:00
data Transaction = Transaction {
taccount :: AccountName,
tamount :: Amount
} deriving (Eq)
-- a ledger entry, with two or more balanced transactions
data Entry = Entry {
edate :: Date,
estatus :: EntryStatus,
ecode :: String,
edescription :: String,
etransactions :: [Transaction]
} deriving (Eq)
2007-07-04 06:50:29 +04:00
type EntryStatus = Bool
-- an "=" automated entry (ignored)
2007-07-02 20:43:14 +04:00
data ModifierEntry = ModifierEntry {
valueexpr :: String,
m_transactions :: [Transaction]
} deriving (Eq)
2007-07-04 06:50:29 +04:00
-- a "~" periodic entry (ignored)
2007-07-02 20:43:14 +04:00
data PeriodicEntry = PeriodicEntry {
periodexpr :: String,
p_transactions :: [Transaction]
} deriving (Eq)
2007-07-04 06:50:29 +04:00
-- we also parse timeclock.el timelogs
2007-07-02 20:43:14 +04:00
data TimeLogEntry = TimeLogEntry {
tcode :: Char,
tdatetime :: DateTime,
tcomment :: String
} deriving (Eq,Ord)
data TimeLog = TimeLog {
timelog_entries :: [TimeLogEntry]
} deriving (Eq)
2007-07-02 22:57:37 +04:00
-- a parsed ledger file
data RawLedger = RawLedger {
2007-07-02 22:57:37 +04:00
modifier_entries :: [ModifierEntry],
periodic_entries :: [PeriodicEntry],
entries :: [Entry]
} deriving (Eq)
2007-07-02 20:43:14 +04:00
-- We convert Transactions into EntryTransactions, which are (entry,
-- transaction) pairs, since I couldn't see how to have transactions
-- reference their entry like in OO. These are referred to as just
-- "transactions" in modules above EntryTransaction.
type EntryTransaction = (Entry,Transaction)
-- all information for a particular account, derived from a RawLedger
2007-07-02 20:43:14 +04:00
data Account = Account {
aname :: AccountName,
atransactions :: [EntryTransaction], -- excludes sub-accounts
abalance :: Amount -- includes sub-accounts
}
2007-07-02 22:57:37 +04:00
-- a ledger with account info cached for faster queries
data Ledger = Ledger {
rawledger :: RawLedger,
2007-07-03 03:41:07 +04:00
accountnametree :: Tree AccountName,
accounts :: Map.Map AccountName Account,
lprecision :: Int
2007-07-02 22:57:37 +04:00
}