2023-05-29 15:56:15 -04:00
|
|
|
module Internal.History
|
2023-06-13 20:12:29 -04:00
|
|
|
( readHistStmt
|
2023-06-12 00:27:34 -04:00
|
|
|
, readHistTransfer
|
2023-06-13 20:12:29 -04:00
|
|
|
, splitHistory
|
2023-05-29 15:56:15 -04:00
|
|
|
)
|
|
|
|
where
|
|
|
|
|
|
|
|
import Control.Monad.Except
|
2023-05-29 17:19:49 -04:00
|
|
|
import Data.Csv
|
2023-06-16 22:05:28 -04:00
|
|
|
import Data.Foldable
|
2023-07-04 00:11:25 -04:00
|
|
|
import GHC.Real
|
2023-05-29 17:33:59 -04:00
|
|
|
import Internal.Database
|
2023-05-29 15:56:15 -04:00
|
|
|
import Internal.Types.Main
|
|
|
|
import Internal.Utils
|
|
|
|
import RIO hiding (to)
|
2023-05-29 17:19:49 -04:00
|
|
|
import qualified RIO.ByteString.Lazy as BL
|
|
|
|
import RIO.FilePath
|
|
|
|
import qualified RIO.List as L
|
|
|
|
import qualified RIO.Map as M
|
2023-05-29 15:56:15 -04:00
|
|
|
import qualified RIO.Text as T
|
|
|
|
import RIO.Time
|
2023-05-29 17:19:49 -04:00
|
|
|
import qualified RIO.Vector as V
|
2023-07-04 00:11:25 -04:00
|
|
|
import Text.Regex.TDFA hiding (matchAll)
|
|
|
|
import Text.Regex.TDFA.Text
|
2023-05-29 15:56:15 -04:00
|
|
|
|
2023-07-01 18:58:15 -04:00
|
|
|
-- NOTE keep statement and transfer readers separate because the former needs
|
|
|
|
-- the IO monad, and thus will throw IO errors rather than using the ExceptT
|
|
|
|
-- thingy
|
|
|
|
splitHistory :: [History] -> ([PairedTransfer], [Statement])
|
|
|
|
splitHistory = partitionEithers . fmap go
|
|
|
|
where
|
|
|
|
go (HistTransfer x) = Left x
|
|
|
|
go (HistStatement x) = Right x
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Transfers
|
|
|
|
|
2023-06-12 00:27:34 -04:00
|
|
|
readHistTransfer
|
|
|
|
:: (MonadInsertError m, MonadFinance m)
|
2023-07-01 18:32:20 -04:00
|
|
|
=> PairedTransfer
|
2023-07-04 10:35:11 -04:00
|
|
|
-> m (Either CommitR [Tx CommitR])
|
2023-07-01 18:32:20 -04:00
|
|
|
readHistTransfer ht = eitherHash CTManual ht return $ \c -> do
|
|
|
|
bounds <- askDBState kmStatementInterval
|
2023-07-04 10:35:11 -04:00
|
|
|
expandTransfer c historyName bounds ht
|
2023-07-01 18:58:15 -04:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Statements
|
2023-05-29 15:56:15 -04:00
|
|
|
|
2023-05-29 18:14:43 -04:00
|
|
|
readHistStmt
|
|
|
|
:: (MonadUnliftIO m, MonadFinance m)
|
|
|
|
=> FilePath
|
|
|
|
-> Statement
|
2023-07-04 10:35:11 -04:00
|
|
|
-> m (Either CommitR [Tx CommitR])
|
2023-06-25 14:26:35 -04:00
|
|
|
readHistStmt root i = eitherHash CTImport i return $ \c -> do
|
2023-05-29 18:14:43 -04:00
|
|
|
bs <- readImport root i
|
2023-05-29 15:56:15 -04:00
|
|
|
bounds <- askDBState kmStatementInterval
|
2023-07-04 10:35:11 -04:00
|
|
|
return $ filter (inDaySpan bounds . txDate) $ fmap (\t -> t {txCommit = c}) bs
|
2023-05-29 15:56:15 -04:00
|
|
|
|
2023-05-29 17:19:49 -04:00
|
|
|
-- TODO this probably won't scale well (pipes?)
|
2023-06-29 21:32:14 -04:00
|
|
|
readImport :: (MonadUnliftIO m, MonadFinance m) => FilePath -> Statement -> m [Tx ()]
|
2023-05-29 18:14:43 -04:00
|
|
|
readImport root Statement {stmtTxOpts, stmtParsers, stmtSkipLines, stmtDelim, stmtPaths} = do
|
2023-05-29 17:19:49 -04:00
|
|
|
let ores = compileOptions stmtTxOpts
|
|
|
|
let cres = combineErrors $ compileMatch <$> stmtParsers
|
|
|
|
(compiledOptions, compiledMatches) <- liftIOExcept $ combineError ores cres (,)
|
|
|
|
let readStmt = readImport_ stmtSkipLines stmtDelim compiledOptions
|
2023-05-29 18:14:43 -04:00
|
|
|
records <- L.sort . concat <$> mapErrorsIO readStmt paths
|
2023-06-29 21:32:14 -04:00
|
|
|
fromEither =<< runExceptT (matchRecords compiledMatches records)
|
2023-05-29 18:14:43 -04:00
|
|
|
where
|
|
|
|
paths = (root </>) <$> stmtPaths
|
2023-05-29 17:19:49 -04:00
|
|
|
|
|
|
|
readImport_
|
2023-05-29 18:14:43 -04:00
|
|
|
:: MonadUnliftIO m
|
2023-05-29 17:19:49 -04:00
|
|
|
=> Natural
|
|
|
|
-> Word
|
|
|
|
-> TxOptsRe
|
|
|
|
-> FilePath
|
|
|
|
-> m [TxRecord]
|
|
|
|
readImport_ n delim tns p = do
|
2023-05-29 18:14:43 -04:00
|
|
|
res <- tryIO $ BL.readFile p
|
2023-05-29 17:19:49 -04:00
|
|
|
bs <- fromEither $ first (InsertException . (: []) . InsertIOError . showT) res
|
|
|
|
case decodeByNameWithP (parseTxRecord p tns) opts $ skip bs of
|
|
|
|
Left m -> throwIO $ InsertException [ParseError $ T.pack m]
|
|
|
|
Right (_, v) -> return $ catMaybes $ V.toList v
|
|
|
|
where
|
|
|
|
opts = defaultDecodeOptions {decDelimiter = fromIntegral delim}
|
|
|
|
skip = BL.intercalate "\n" . L.drop (fromIntegral n) . BL.split 10
|
|
|
|
|
|
|
|
-- TODO handle this better, this maybe thing is a hack to skip lines with
|
|
|
|
-- blank dates but will likely want to make this more flexible
|
|
|
|
parseTxRecord :: FilePath -> TxOptsRe -> NamedRecord -> Parser (Maybe TxRecord)
|
|
|
|
parseTxRecord p TxOpts {toDate, toAmountFmt, toDesc, toAmount, toOther, toDateFmt} r = do
|
|
|
|
d <- r .: T.encodeUtf8 toDate
|
|
|
|
if d == ""
|
|
|
|
then return Nothing
|
|
|
|
else do
|
|
|
|
a <- parseRational toAmountFmt =<< r .: T.encodeUtf8 toAmount
|
|
|
|
e <- r .: T.encodeUtf8 toDesc
|
|
|
|
os <- M.fromList <$> mapM (\n -> (n,) <$> r .: T.encodeUtf8 n) toOther
|
|
|
|
d' <- parseTimeM True defaultTimeLocale (T.unpack toDateFmt) d
|
|
|
|
return $ Just $ TxRecord d' a e os p
|
|
|
|
|
2023-06-29 21:32:14 -04:00
|
|
|
matchRecords :: MonadFinance m => [MatchRe] -> [TxRecord] -> InsertExceptT m [Tx ()]
|
2023-05-29 17:19:49 -04:00
|
|
|
matchRecords ms rs = do
|
|
|
|
(matched, unmatched, notfound) <- matchAll (matchPriorities ms) rs
|
|
|
|
case (matched, unmatched, notfound) of
|
2023-06-29 21:32:14 -04:00
|
|
|
(ms_, [], []) -> return ms_
|
2023-05-29 17:19:49 -04:00
|
|
|
(_, us, ns) -> throwError $ InsertException [StatementError us ns]
|
|
|
|
|
|
|
|
matchPriorities :: [MatchRe] -> [MatchGroup]
|
|
|
|
matchPriorities =
|
|
|
|
fmap matchToGroup
|
|
|
|
. L.groupBy (\a b -> spPriority a == spPriority b)
|
|
|
|
. L.sortOn (Down . spPriority)
|
|
|
|
|
|
|
|
matchToGroup :: [MatchRe] -> MatchGroup
|
|
|
|
matchToGroup ms =
|
|
|
|
uncurry MatchGroup $
|
|
|
|
first (L.sortOn spDate) $
|
|
|
|
L.partition (isJust . spDate) ms
|
|
|
|
|
|
|
|
data MatchGroup = MatchGroup
|
|
|
|
{ mgDate :: ![MatchRe]
|
|
|
|
, mgNoDate :: ![MatchRe]
|
|
|
|
}
|
|
|
|
deriving (Show)
|
|
|
|
|
|
|
|
data Zipped a = Zipped ![a] ![a]
|
|
|
|
|
|
|
|
data Unzipped a = Unzipped ![a] ![a] ![a]
|
|
|
|
|
|
|
|
initZipper :: [a] -> Zipped a
|
|
|
|
initZipper = Zipped []
|
|
|
|
|
|
|
|
resetZipper :: Zipped a -> Zipped a
|
|
|
|
resetZipper = initZipper . recoverZipper
|
|
|
|
|
|
|
|
recoverZipper :: Zipped a -> [a]
|
|
|
|
recoverZipper (Zipped as bs) = reverse as ++ bs
|
|
|
|
|
|
|
|
zipperSlice
|
|
|
|
:: (a -> b -> Ordering)
|
|
|
|
-> b
|
|
|
|
-> Zipped a
|
|
|
|
-> Either (Zipped a) (Unzipped a)
|
|
|
|
zipperSlice f x = go
|
|
|
|
where
|
|
|
|
go z@(Zipped _ []) = Left z
|
|
|
|
go z@(Zipped bs (a : as)) =
|
|
|
|
case f a x of
|
|
|
|
GT -> go $ Zipped (a : bs) as
|
|
|
|
EQ -> Right $ goEq (Unzipped bs [a] as)
|
|
|
|
LT -> Left z
|
|
|
|
goEq z@(Unzipped _ _ []) = z
|
|
|
|
goEq z@(Unzipped bs cs (a : as)) =
|
|
|
|
case f a x of
|
|
|
|
GT -> goEq $ Unzipped (a : bs) cs as
|
|
|
|
EQ -> goEq $ Unzipped bs (a : cs) as
|
|
|
|
LT -> z
|
|
|
|
|
|
|
|
zipperMatch
|
2023-06-29 21:32:14 -04:00
|
|
|
:: MonadFinance m
|
|
|
|
=> Unzipped MatchRe
|
2023-05-29 17:19:49 -04:00
|
|
|
-> TxRecord
|
2023-06-29 21:32:14 -04:00
|
|
|
-> InsertExceptT m (Zipped MatchRe, MatchRes (Tx ()))
|
2023-05-29 17:19:49 -04:00
|
|
|
zipperMatch (Unzipped bs cs as) x = go [] cs
|
|
|
|
where
|
|
|
|
go _ [] = return (Zipped bs $ cs ++ as, MatchFail)
|
|
|
|
go prev (m : ms) = do
|
|
|
|
res <- matches m x
|
|
|
|
case res of
|
|
|
|
MatchFail -> go (m : prev) ms
|
|
|
|
skipOrPass ->
|
|
|
|
let ps = reverse prev
|
|
|
|
ms' = maybe ms (: ms) (matchDec m)
|
|
|
|
in return (Zipped bs $ ps ++ ms' ++ as, skipOrPass)
|
|
|
|
|
|
|
|
zipperMatch'
|
2023-06-29 21:32:14 -04:00
|
|
|
:: MonadFinance m
|
|
|
|
=> Zipped MatchRe
|
2023-05-29 17:19:49 -04:00
|
|
|
-> TxRecord
|
2023-06-29 21:32:14 -04:00
|
|
|
-> InsertExceptT m (Zipped MatchRe, MatchRes (Tx ()))
|
2023-05-29 17:19:49 -04:00
|
|
|
zipperMatch' z x = go z
|
|
|
|
where
|
|
|
|
go (Zipped bs (a : as)) = do
|
|
|
|
res <- matches a x
|
|
|
|
case res of
|
|
|
|
MatchFail -> go (Zipped (a : bs) as)
|
|
|
|
skipOrPass ->
|
|
|
|
return (Zipped (maybe bs (: bs) $ matchDec a) as, skipOrPass)
|
|
|
|
go z' = return (z', MatchFail)
|
|
|
|
|
|
|
|
matchDec :: MatchRe -> Maybe MatchRe
|
|
|
|
matchDec m = case spTimes m of
|
|
|
|
Just 1 -> Nothing
|
|
|
|
Just n -> Just $ m {spTimes = Just $ n - 1}
|
|
|
|
Nothing -> Just m
|
|
|
|
|
2023-06-29 21:32:14 -04:00
|
|
|
matchAll
|
|
|
|
:: MonadFinance m
|
|
|
|
=> [MatchGroup]
|
|
|
|
-> [TxRecord]
|
|
|
|
-> InsertExceptT m ([Tx ()], [TxRecord], [MatchRe])
|
2023-05-29 17:19:49 -04:00
|
|
|
matchAll = go ([], [])
|
|
|
|
where
|
|
|
|
go (matched, unused) gs rs = case (gs, rs) of
|
|
|
|
(_, []) -> return (matched, [], unused)
|
|
|
|
([], _) -> return (matched, rs, unused)
|
|
|
|
(g : gs', _) -> do
|
|
|
|
(ts, unmatched, us) <- matchGroup g rs
|
|
|
|
go (ts ++ matched, us ++ unused) gs' unmatched
|
|
|
|
|
2023-06-29 21:32:14 -04:00
|
|
|
matchGroup
|
|
|
|
:: MonadFinance m
|
|
|
|
=> MatchGroup
|
|
|
|
-> [TxRecord]
|
|
|
|
-> InsertExceptT m ([Tx ()], [TxRecord], [MatchRe])
|
2023-05-29 17:19:49 -04:00
|
|
|
matchGroup MatchGroup {mgDate = ds, mgNoDate = ns} rs = do
|
|
|
|
(md, rest, ud) <- matchDates ds rs
|
|
|
|
(mn, unmatched, un) <- matchNonDates ns rest
|
|
|
|
return (md ++ mn, unmatched, filter ((/= Nothing) . spTimes) $ ud ++ un)
|
|
|
|
|
2023-06-29 21:32:14 -04:00
|
|
|
matchDates
|
|
|
|
:: MonadFinance m
|
|
|
|
=> [MatchRe]
|
|
|
|
-> [TxRecord]
|
|
|
|
-> InsertExceptT m ([Tx ()], [TxRecord], [MatchRe])
|
2023-05-29 17:19:49 -04:00
|
|
|
matchDates ms = go ([], [], initZipper ms)
|
|
|
|
where
|
|
|
|
go (matched, unmatched, z) [] =
|
|
|
|
return
|
|
|
|
( catMaybes matched
|
|
|
|
, reverse unmatched
|
|
|
|
, recoverZipper z
|
|
|
|
)
|
|
|
|
go (matched, unmatched, z) (r : rs) =
|
|
|
|
case zipperSlice findDate r z of
|
|
|
|
Left zipped -> go (matched, r : unmatched, zipped) rs
|
|
|
|
Right unzipped -> do
|
|
|
|
(z', res) <- zipperMatch unzipped r
|
|
|
|
let (m, u) = case res of
|
|
|
|
(MatchPass p) -> (Just p : matched, unmatched)
|
|
|
|
MatchSkip -> (Nothing : matched, unmatched)
|
|
|
|
MatchFail -> (matched, r : unmatched)
|
|
|
|
go (m, u, z') rs
|
|
|
|
findDate m r = maybe EQ (`compareDate` trDate r) $ spDate m
|
|
|
|
|
2023-06-29 21:32:14 -04:00
|
|
|
matchNonDates
|
|
|
|
:: MonadFinance m
|
|
|
|
=> [MatchRe]
|
|
|
|
-> [TxRecord]
|
|
|
|
-> InsertExceptT m ([Tx ()], [TxRecord], [MatchRe])
|
2023-05-29 17:19:49 -04:00
|
|
|
matchNonDates ms = go ([], [], initZipper ms)
|
|
|
|
where
|
|
|
|
go (matched, unmatched, z) [] =
|
|
|
|
return
|
|
|
|
( catMaybes matched
|
|
|
|
, reverse unmatched
|
|
|
|
, recoverZipper z
|
|
|
|
)
|
|
|
|
go (matched, unmatched, z) (r : rs) = do
|
|
|
|
(z', res) <- zipperMatch' z r
|
|
|
|
let (m, u) = case res of
|
|
|
|
MatchPass p -> (Just p : matched, unmatched)
|
|
|
|
MatchSkip -> (Nothing : matched, unmatched)
|
|
|
|
MatchFail -> (matched, r : unmatched)
|
|
|
|
in go (m, u, resetZipper z') rs
|
2023-07-04 00:11:25 -04:00
|
|
|
|
|
|
|
matches :: MonadFinance m => MatchRe -> TxRecord -> InsertExceptT m (MatchRes (Tx ()))
|
|
|
|
matches
|
2023-07-07 00:20:18 -04:00
|
|
|
StatementParser {spTx, spOther, spVal, spDate, spDesc, spPriority}
|
2023-07-04 00:11:25 -04:00
|
|
|
r@TxRecord {trDate, trAmount, trDesc, trOther} = do
|
|
|
|
res <- liftInner $
|
|
|
|
combineError3 val other desc $
|
|
|
|
\x y z -> x && y && z && date
|
|
|
|
if res
|
|
|
|
then maybe (return MatchSkip) convert spTx
|
|
|
|
else return MatchFail
|
|
|
|
where
|
|
|
|
val = valMatches spVal trAmount
|
|
|
|
date = maybe True (`dateMatches` trDate) spDate
|
|
|
|
other = foldM (\a o -> (a &&) <$> otherMatches trOther o) True spOther
|
|
|
|
desc = maybe (return True) (matchMaybe trDesc . snd) spDesc
|
2023-07-07 00:20:18 -04:00
|
|
|
convert tg = MatchPass <$> toTx (fromIntegral spPriority) tg r
|
2023-07-04 00:11:25 -04:00
|
|
|
|
2023-07-07 00:20:18 -04:00
|
|
|
toTx :: MonadFinance m => Int -> TxGetter -> TxRecord -> InsertExceptT m (Tx ())
|
2023-07-04 00:11:25 -04:00
|
|
|
toTx
|
2023-07-07 00:20:18 -04:00
|
|
|
priority
|
2023-07-04 00:11:25 -04:00
|
|
|
TxGetter
|
|
|
|
{ tgFrom
|
|
|
|
, tgTo
|
|
|
|
, tgCurrency
|
|
|
|
, tgOtherEntries
|
|
|
|
, tgScale
|
|
|
|
}
|
|
|
|
r@TxRecord {trAmount, trDate, trDesc} = do
|
|
|
|
combineError curRes subRes $ \(cur, f, t) ss ->
|
|
|
|
Tx
|
|
|
|
{ txDate = trDate
|
|
|
|
, txDescr = trDesc
|
|
|
|
, txCommit = ()
|
|
|
|
, txPrimary =
|
|
|
|
Left $
|
|
|
|
EntrySet
|
|
|
|
{ esTotalValue = roundPrecisionCur cur $ tgScale * fromRational trAmount
|
|
|
|
, esCurrency = cur
|
|
|
|
, esFrom = f
|
|
|
|
, esTo = t
|
|
|
|
}
|
2023-07-07 00:20:18 -04:00
|
|
|
, txOther = Left <$> ss
|
2023-07-04 10:35:11 -04:00
|
|
|
, txBudget = historyName
|
2023-07-07 00:20:18 -04:00
|
|
|
, txPriority = priority
|
2023-07-04 00:11:25 -04:00
|
|
|
}
|
|
|
|
where
|
|
|
|
curRes = do
|
|
|
|
m <- askDBState kmCurrency
|
|
|
|
cur <- liftInner $ resolveCurrency m r tgCurrency
|
|
|
|
let fromRes = liftInner $ resolveHalfEntry resolveFromValue cur r () tgFrom
|
|
|
|
let toRes = liftInner $ resolveHalfEntry resolveToValue cur r () tgTo
|
|
|
|
combineError fromRes toRes (cur,,)
|
|
|
|
subRes = mapErrors (resolveSubGetter r) tgOtherEntries
|
|
|
|
|
|
|
|
resolveSubGetter
|
|
|
|
:: MonadFinance m
|
|
|
|
=> TxRecord
|
|
|
|
-> TxSubGetter
|
|
|
|
-> InsertExceptT m SecondayEntrySet
|
|
|
|
resolveSubGetter r TxSubGetter {tsgFrom, tsgTo, tsgValue, tsgCurrency} = do
|
|
|
|
m <- askDBState kmCurrency
|
|
|
|
cur <- liftInner $ resolveCurrency m r tsgCurrency
|
|
|
|
let toRes = resolveHalfEntry resolveToValue cur r () tsgTo
|
|
|
|
let valRes = liftInner $ fmap (roundPrecisionCur cur) <$> resolveValue r tsgValue
|
|
|
|
liftInner $ combineErrorM toRes valRes $ \t v -> do
|
|
|
|
f <- resolveHalfEntry resolveFromValue cur r v tsgFrom
|
|
|
|
return $
|
|
|
|
EntrySet
|
|
|
|
{ esTotalValue = ()
|
|
|
|
, esCurrency = cur
|
|
|
|
, esFrom = f
|
|
|
|
, esTo = t
|
|
|
|
}
|
|
|
|
|
|
|
|
resolveHalfEntry
|
|
|
|
:: Traversable f
|
|
|
|
=> (TxRecord -> n -> InsertExcept (f Double))
|
|
|
|
-> CurrencyPrec
|
|
|
|
-> TxRecord
|
|
|
|
-> v
|
|
|
|
-> TxHalfGetter (EntryGetter n)
|
|
|
|
-> InsertExcept (HalfEntrySet v (f Rational))
|
|
|
|
resolveHalfEntry f cur r v TxHalfGetter {thgAcnt, thgComment, thgTags, thgEntries} =
|
|
|
|
combineError acntRes esRes $ \a es ->
|
|
|
|
HalfEntrySet
|
|
|
|
{ hesPrimary =
|
|
|
|
Entry
|
|
|
|
{ eAcnt = a
|
|
|
|
, eValue = v
|
|
|
|
, eComment = thgComment
|
|
|
|
, eTags = thgTags
|
|
|
|
}
|
|
|
|
, hesOther = es
|
|
|
|
}
|
|
|
|
where
|
|
|
|
acntRes = resolveAcnt r thgAcnt
|
|
|
|
esRes = mapErrors (resolveEntry f cur r) thgEntries
|
|
|
|
|
|
|
|
otherMatches :: M.Map T.Text T.Text -> FieldMatcherRe -> InsertExcept Bool
|
|
|
|
otherMatches dict m = case m of
|
|
|
|
Val (Field n mv) -> valMatches mv =<< (readRational =<< lookup_ MatchNumeric n)
|
|
|
|
Desc (Field n (_, md)) -> (`matchMaybe` md) =<< lookup_ MatchText n
|
|
|
|
where
|
|
|
|
lookup_ t n = lookupErr (MatchField t) n dict
|
|
|
|
|
|
|
|
resolveEntry
|
|
|
|
:: Traversable f
|
|
|
|
=> (TxRecord -> n -> InsertExcept (f Double))
|
|
|
|
-> CurrencyPrec
|
|
|
|
-> TxRecord
|
|
|
|
-> EntryGetter n
|
|
|
|
-> InsertExcept (Entry AcntID (f Rational) TagID)
|
|
|
|
resolveEntry f cur r s@Entry {eAcnt, eValue} = do
|
|
|
|
combineError acntRes valRes $ \a v ->
|
|
|
|
s {eAcnt = a, eValue = roundPrecisionCur cur <$> v}
|
|
|
|
where
|
|
|
|
acntRes = resolveAcnt r eAcnt
|
|
|
|
valRes = f r eValue
|
|
|
|
|
|
|
|
resolveFromValue :: TxRecord -> EntryNumGetter -> InsertExcept (EntryValue Double)
|
|
|
|
resolveFromValue = resolveValue
|
|
|
|
|
|
|
|
resolveToValue :: TxRecord -> LinkedEntryNumGetter -> InsertExcept (LinkDeferred Double)
|
|
|
|
resolveToValue _ (Linked l) = return $ LinkIndex l
|
|
|
|
resolveToValue r (Getter g) = LinkDeferred <$> resolveValue r g
|
|
|
|
|
|
|
|
resolveValue :: TxRecord -> EntryNumGetter -> InsertExcept (EntryValue Double)
|
|
|
|
resolveValue TxRecord {trOther, trAmount} s = case s of
|
|
|
|
(LookupN t) -> EntryValue TFixed <$> (readDouble =<< lookupErr EntryValField t trOther)
|
|
|
|
(ConstN c) -> return $ EntryValue TFixed c
|
|
|
|
AmountN m -> return $ EntryValue TFixed $ m * fromRational trAmount
|
|
|
|
BalanceN x -> return $ EntryValue TBalance x
|
|
|
|
PercentN x -> return $ EntryValue TPercent x
|
|
|
|
|
|
|
|
resolveAcnt :: TxRecord -> EntryAcnt -> InsertExcept T.Text
|
|
|
|
resolveAcnt = resolveEntryField AcntField
|
|
|
|
|
|
|
|
resolveCurrency :: CurrencyMap -> TxRecord -> EntryCur -> InsertExcept CurrencyPrec
|
|
|
|
resolveCurrency m r c = do
|
|
|
|
i <- resolveEntryField CurField r c
|
|
|
|
case M.lookup i m of
|
|
|
|
Just k -> return k
|
|
|
|
-- TODO this should be its own error (I think)
|
|
|
|
Nothing -> throwError $ InsertException [LookupError (EntryIDField CurField) undefined]
|
|
|
|
|
|
|
|
resolveEntryField :: EntryIDType -> TxRecord -> EntryAcnt -> InsertExcept T.Text
|
|
|
|
resolveEntryField t TxRecord {trOther = o} s = case s of
|
|
|
|
ConstT p -> return p
|
|
|
|
LookupT f -> lookup_ f o
|
|
|
|
MapT (Field f m) -> do
|
|
|
|
k <- lookup_ f o
|
|
|
|
lookup_ k m
|
|
|
|
Map2T (Field (f1, f2) m) -> do
|
|
|
|
(k1, k2) <- combineError (lookup_ f1 o) (lookup_ f2 o) (,)
|
|
|
|
lookup_ (k1, k2) m
|
|
|
|
where
|
|
|
|
lookup_ :: (Ord k, Show k) => k -> M.Map k v -> InsertExcept v
|
|
|
|
lookup_ = lookupErr (EntryIDField t)
|
|
|
|
|
|
|
|
readDouble :: T.Text -> InsertExcept Double
|
|
|
|
readDouble s = case readMaybe $ T.unpack s of
|
|
|
|
Just x -> return x
|
|
|
|
Nothing -> throwError $ InsertException [ConversionError s]
|
|
|
|
|
|
|
|
readRational :: T.Text -> InsertExcept Rational
|
|
|
|
readRational s = case T.split (== '.') s of
|
|
|
|
[x] -> maybe err (return . fromInteger) $ readT x
|
|
|
|
[x, y] -> case (readT x, readT y) of
|
|
|
|
(Just x', Just y') ->
|
|
|
|
let p = 10 ^ T.length y
|
|
|
|
k = if x' >= 0 then 1 else -1
|
|
|
|
in return $ fromInteger x' + k * y' % p
|
|
|
|
_ -> err
|
|
|
|
_ -> err
|
|
|
|
where
|
|
|
|
readT = readMaybe . T.unpack
|
|
|
|
err = throwError $ InsertException [ConversionError s]
|
|
|
|
|
|
|
|
compileOptions :: TxOpts T.Text -> InsertExcept TxOptsRe
|
|
|
|
compileOptions o@TxOpts {toAmountFmt = pat} = do
|
|
|
|
re <- compileRegex True pat
|
|
|
|
return $ o {toAmountFmt = re}
|
|
|
|
|
|
|
|
compileMatch :: StatementParser T.Text -> InsertExcept MatchRe
|
|
|
|
compileMatch m@StatementParser {spDesc, spOther} = do
|
|
|
|
combineError dres ores $ \d os -> m {spDesc = d, spOther = os}
|
|
|
|
where
|
|
|
|
go = compileRegex False
|
|
|
|
dres = mapM go spDesc
|
|
|
|
ores = combineErrors $ fmap (mapM go) spOther
|
|
|
|
|
|
|
|
compileRegex :: Bool -> T.Text -> InsertExcept (Text, Regex)
|
|
|
|
compileRegex groups pat = case res of
|
|
|
|
Right re -> return (pat, re)
|
|
|
|
Left _ -> throwError $ InsertException [RegexError pat]
|
|
|
|
where
|
|
|
|
res =
|
|
|
|
compile
|
|
|
|
(blankCompOpt {newSyntax = True})
|
|
|
|
(blankExecOpt {captureGroups = groups})
|
|
|
|
pat
|
|
|
|
|
|
|
|
matchMaybe :: T.Text -> Regex -> InsertExcept Bool
|
|
|
|
matchMaybe q re = case execute re q of
|
|
|
|
Right res -> return $ isJust res
|
|
|
|
Left _ -> throwError $ InsertException [RegexError "this should not happen"]
|
|
|
|
|
|
|
|
matchGroupsMaybe :: T.Text -> Regex -> [T.Text]
|
|
|
|
matchGroupsMaybe q re = case regexec re q of
|
|
|
|
Right Nothing -> []
|
|
|
|
Right (Just (_, _, _, xs)) -> xs
|
|
|
|
-- this should never fail as regexec always returns Right
|
|
|
|
Left _ -> []
|
|
|
|
|
|
|
|
parseRational :: MonadFail m => (T.Text, Regex) -> T.Text -> m Rational
|
|
|
|
parseRational (pat, re) s = case matchGroupsMaybe s re of
|
|
|
|
[sign, x, ""] -> uncurry (*) <$> readWhole sign x
|
|
|
|
[sign, x, y] -> do
|
|
|
|
d <- readT "decimal" y
|
|
|
|
let p = 10 ^ T.length y
|
|
|
|
(k, w) <- readWhole sign x
|
|
|
|
return $ k * (w + d % p)
|
|
|
|
_ -> msg "malformed decimal"
|
|
|
|
where
|
|
|
|
readT what t = case readMaybe $ T.unpack t of
|
|
|
|
Just d -> return $ fromInteger d
|
|
|
|
_ -> msg $ T.unwords ["could not parse", what, singleQuote t]
|
|
|
|
msg :: MonadFail m => T.Text -> m a
|
|
|
|
msg m =
|
|
|
|
fail $
|
|
|
|
T.unpack $
|
|
|
|
T.unwords [m, "-", keyVals [("pattern", pat), ("query", s)]]
|
|
|
|
readSign x
|
|
|
|
| x == "-" = return (-1)
|
|
|
|
| x == "+" || x == "" = return 1
|
|
|
|
| otherwise = msg $ T.append "invalid sign: " x
|
|
|
|
readWhole sign x = do
|
|
|
|
w <- readT "whole number" x
|
|
|
|
k <- readSign sign
|
|
|
|
return (k, w)
|
2023-07-04 10:35:11 -04:00
|
|
|
|
|
|
|
historyName :: T.Text
|
|
|
|
historyName = "history"
|