2010-06-15 03:14:40 +00:00
|
|
|
-- | Miscellaneous general functions
|
2010-01-17 01:22:05 +00:00
|
|
|
|
2010-10-27 20:13:23 +00:00
|
|
|
{-# LANGUAGE StandaloneDeriving #-}
|
2010-01-17 01:22:05 +00:00
|
|
|
|
2010-06-21 15:06:20 +00:00
|
|
|
module Database.MongoDB.Internal.Util where
|
2010-01-17 01:22:05 +00:00
|
|
|
|
2010-06-15 03:14:40 +00:00
|
|
|
import Prelude hiding (length)
|
|
|
|
import Network (PortID(..))
|
2010-06-21 15:06:20 +00:00
|
|
|
import Data.UString as U (cons, append)
|
2010-06-15 03:14:40 +00:00
|
|
|
import Data.Bits (Bits, (.|.))
|
|
|
|
import Data.Bson
|
|
|
|
|
|
|
|
deriving instance Show PortID
|
|
|
|
deriving instance Eq PortID
|
|
|
|
deriving instance Ord PortID
|
|
|
|
|
2010-06-21 15:06:20 +00:00
|
|
|
snoc :: [a] -> a -> [a]
|
|
|
|
-- ^ add element to end of list (/snoc/ is reverse of /cons/, which adds to front of list)
|
|
|
|
snoc list a = list ++ [a]
|
|
|
|
|
2010-06-15 03:14:40 +00:00
|
|
|
type Secs = Float
|
|
|
|
|
|
|
|
bitOr :: (Bits a) => [a] -> a
|
|
|
|
-- ^ bit-or all numbers together
|
|
|
|
bitOr = foldl (.|.) 0
|
|
|
|
|
|
|
|
(<.>) :: UString -> UString -> UString
|
|
|
|
-- ^ Concat first and second together with period in between. Eg. @\"hello\" \<.\> \"world\" = \"hello.world\"@
|
|
|
|
a <.> b = U.append a (cons '.' b)
|
|
|
|
|
|
|
|
true1 :: Label -> Document -> Bool
|
|
|
|
-- ^ Is field's value a 1 or True (MongoDB use both Int and Bools for truth values). Error if field not in document or field not a Num or Bool.
|
|
|
|
true1 k doc = case valueAt k doc of
|
|
|
|
Bool b -> b
|
|
|
|
Float n -> n == 1
|
|
|
|
Int32 n -> n == 1
|
|
|
|
Int64 n -> n == 1
|
|
|
|
_ -> error $ "expected " ++ show k ++ " to be Num or Bool in " ++ show doc
|