packages feed

happstack-ixset 0.1 → 0.2.1

raw patch · 10 files changed

+663/−574 lines, 10 filesdep ~basedep ~happstack-datadep ~happstack-util

Dependency ranges changed: base, happstack-data, happstack-util

Files

happstack-ixset.cabal view
@@ -1,5 +1,5 @@ Name:                happstack-ixset-Version:             0.1+Version:             0.2.1 Synopsis:            Efficient relational queries on Haskell sets.  Description:         Just pick which parts of your data structures you want indexed using an easy to use template-haskell function. Spare yourself the need to write, run, and maintain code that marshalls your data to/from an external relational database just for efficient queries. happstack-ixset relies on generics and TH to spare you the boilerplate normally required for such tasks.  License:             BSD3@@ -15,26 +15,31 @@  Flag tests     Description: Build the testsuite, and include the tests in the library-    Default: True+    Default: False  Library   if flag(base4)     Build-Depends:     base >=4 && < 5, syb   else     Build-Depends:     base < 4-  Build-Depends:       base, mtl, happstack-util,-                       happstack-data, template-haskell,-                       syb-with-class, containers++  Build-Depends:       containers,+                       happstack-data >= 0.2.1 && < 0.3,+                       happstack-util >= 0.2.1 && < 0.3,+                       mtl,+                       syb-with-class,+                       template-haskell+   hs-source-dirs:      src   if flag(tests)     hs-source-dirs:    tests   Exposed-modules:     -                       HAppS.Data.IxSet-                       HAppS.Data.IxSet.Ix-                       HAppS.Data.IxSet.Usage+                       Happstack.Data.IxSet+                       Happstack.Data.IxSet.Ix+                       Happstack.Data.IxSet.Usage   if flag(tests)     Exposed-modules:   -                       HAppS.Data.IxSet.Tests+                       Happstack.Data.IxSet.Tests    extensions:          UndecidableInstances, OverlappingInstances,                        FlexibleInstances, MultiParamTypeClasses,
− src/HAppS/Data/IxSet.hs
@@ -1,392 +0,0 @@-{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances,-             MultiParamTypeClasses, TemplateHaskell, RankNTypes,-             FunctionalDependencies, DeriveDataTypeable,-             GADTs, CPP #-}---{---Description:--An efficient implementation of queryable sets.--Assume you have a type like:--  data Entry = Entry Author [Author] Updated Id Content-  newtype Updated = Updated EpochTime-  newtype Id = Id Int64-  newtype Content = Content String-  newtype Author = Author Email-  type Email = String--1. Decide what parts of your type you want indexed, and-   make your type an instance of Indexable--    instance Indexable Entry () where-    empty = IxSet[-                ,Ix (Map.empty::Map Author (Set Entry)) --out of order-                ,Ix (Map.empty::Map Id (Set Entry))-                ,Ix (Map.empty::Map Updated (Set Entry))-                ,Ix (Map.empty::Map Test (Set Entry)) -- bogus index-                ,Ix (Map.empty::Map Word (Set Entry)) -- text index-                ]-    calcs entry = () -- words for text indexing purposes--3. Use insert/delete/replace and empty to build up an IxSet collection--    entries = foldr insert empty [e1,e2,e3,e4]-    entries' = foldr delete entries [e1,e3]-    entries'' = update e4 e5 entries--4. Use the query functions below to grab data from it.  e.g.--     entries @< (Updated t1) @= (Author "john@doe.com")--  will find all items in entries updated earlier than t1 by-  john@doe.com.--5. Text Index--If you want to do add a text index extract the words in entry and pass-them in the calc method of the Indexable class.  Then if you want-all entries with either word1 or word2, you change the instance to--    getWords entry = let Just (Content s) =-                                     gGet entry in map Word $ words s--    instance Indexable Entry [Word] where-    ....-    calcs entry = getWords entry--Now you can do this query to find entries with any of the words--   entries @+ [Word "word1",Word "word2"]--And if you want all entries with both:--   entries @* [Word "word1",Word "word2"]--6. Find the only the first author--If an Entry has multiple authors and you want to be able to query-on the first author, define a FirstAuthor datatype and add it to the-result of calc.  calc e=(toWords e,getFirstAuthor e) and now you can-do--   newtype FirstAuthor = FirstAuthor Email-   getFirstAuthor = let Just (Author a)=gGet Entry in FirstAuthor a--   instance Indexable Entry ([Word],FirstAuthor)-    ...-    empty = ....-             Ix (Map.empty::Map FirstAuthor (Set Entry))]-    calcs entry = (getWords Entry,getFirstAuthor entry)--    entries @= (FirstAuthor "john@doe.com")  -- guess what this does----}--module HAppS.Data.IxSet (module HAppS.Data.IxSet,-                         module Ix)-    where--import qualified HAppS.Data.IxSet.Ix as Ix-import           HAppS.Data.IxSet.Ix (Ix(Ix))-import Data.Generics hiding (GT)-import Data.Dynamic-import Data.Maybe-import Data.Monoid-import           Data.List (partition)-import qualified Data.List as List-import           Data.Map (Map)-import qualified Data.Map as Map-import           Data.Set (Set)-import qualified Data.Set as Set-import HAppS.Util.Common-import Control.Monad.Reader-import Language.Haskell.TH as TH--import HAppS.Util.TH-import HAppS.Data-import qualified Data.Generics.SYB.WithClass.Basics as SYBWC---- the core datatypes--data IxSet a = ISet [a] | IxSet [Ix a]-    deriving (Data, Typeable)--instance Version (IxSet a)-instance (Serialize a, Ord a, Data a, Indexable a b) => Serialize (IxSet a) where-    putCopy ixset = contain $ safePut (toList ixset)-    getCopy = contain $ liftM fromList safeGet--instance (SYBWC.Data ctx a, SYBWC.Sat (ctx (IxSet a)), SYBWC.Sat (ctx [a]),-          Indexable a b, Data a, Ord a)-       => SYBWC.Data ctx (IxSet a) where-    gfoldl _ f z (IxSet x)  = z fromList `f` toList' x-    gfoldl _ f z (ISet x)   = z ISet `f` x-    toConstr _ (ISet  _) = iSetConstr-    toConstr _ (IxSet _) = ixSetConstr-    gunfold _ k z c  = case SYBWC.constrIndex c of-                       1 -> k (z ISet)-                       2 -> k (z fromList)-                       _ -> error "unexpected match"-    dataTypeOf _ _ = ixSetDataType--iSetConstr :: SYBWC.Constr-iSetConstr = SYBWC.mkConstr ixSetDataType "ISet" [] SYBWC.Prefix-ixSetConstr :: SYBWC.Constr-ixSetConstr = SYBWC.mkConstr ixSetDataType "IxSet" [] SYBWC.Prefix-ixSetDataType :: SYBWC.DataType-ixSetDataType = SYBWC.mkDataType "IxSet" [iSetConstr, ixSetConstr]----instance (Indexable a b, Data a, Ord a, Default a) => Default (IxSet a) where-    defaultValue = ISet []--instance (Ord a,Show a) => Show (IxSet a) where show = show . toSet--instance (Ord a,Read a,Data a,Indexable a b) => Read (IxSet a) where-    readsPrec n = mapFst fromSet . readsPrec n---class (Data b) => Indexable a b | a->b where-    empty :: IxSet a -- defines what types are indexed and queryable-    calcs :: a->b -- adds indexable values not found in the type-           -- if you don't want calculated values use DB a ()-           --should this be a fromDyn so we can provide a default impl?-           -noCalcs :: t -> ()-noCalcs _ = ()--inferIxSet :: String -> TH.Name -> TH.Name -> [TH.Name] -> Q [Dec]-inferIxSet ixset typeName calName entryPoints-    = do calInfo <- reify calName-         typeInfo <- reify typeName-         let (context,names) = case typeInfo of-                                 TyConI (DataD ctxt _ nms _ _) -> (ctxt,nms)-                                 TyConI (NewtypeD ctxt _ nms _ _) -> (ctxt,nms)-                                 TyConI (TySynD _ nms _) -> ([],nms)-                                 _ -> error "unexpected match"-             typeCon = foldl appT (conT typeName) (map varT names)-         case calInfo of-           VarI _ t _ _ ->-               let calType = getCalType t-                   getCalType (ForallT _names _ t') = getCalType t'-                   getCalType (AppT (AppT ArrowT _) t') = t'-                   getCalType t' = error ("Unexpected type: " ++ pprint t')-                   mkEntryPoint n = appE (conE 'Ix) (sigE (varE 'Map.empty) (forallT names (return context) $-                                                                             appT (appT (conT ''Map) (conT n)) (appT (conT ''Set) typeCon)))-               in do i <- instanceD' (return context) (appT (appT (conT ''Indexable) typeCon) (return calType))-                          [d| empty :: IxSet a-                              empty = IxSet $(listE (map mkEntryPoint entryPoints))-                              calcs :: a -> b-                              calcs = $(varE calName) |]-                     let ixType = appT (conT ''IxSet) typeCon-                     ixType' <- tySynD (mkName ixset) names ixType-                     return $ [i, ixType']  -- ++ d-           _ -> error "unexpected match"---- modification operations--flatten :: (Typeable a, Data a) => a -> [Dynamic]-flatten x = case cast x of-                Just y -> [toDyn (y :: String)]-                Nothing -> toDyn x : concat (gmapQ flatten x)--type IndexOp =-    forall k a. (Ord k,Ord a) => k -> a -> Map k (Set a) -> Map k (Set a)--change :: (Data a, Ord a,Data b,Indexable a b) =>-          IndexOp -> a -> IxSet a -> IxSet a-change op x (ISet as) = change op x $ fromList as-change op x (IxSet indices) =-    IxSet $ update indices $ flatten (x,calcs x)-    where-    update [] _ = []-    update _ [] = []-    update (Ix index:is) dyns = Ix index':update is dyns'-        where-        keyType = typeOf ((undefined :: Map key (Set a) -> key) index)-        (ds,dyns') = partition (\d->dynTypeRep d == keyType) dyns-                     -- partition handles out of order indexes-        ii dkey = op (fromJust $ fromDynamic dkey) x-        index' = foldr ii index ds -- handle multiple values-    update _ _ = error "unexpected match"--insert :: (Data a, Ord a,Data b,Indexable a b) => a -> IxSet a -> IxSet a-insert = change Ix.insert--delete :: (Data a, Ord a,Data b,Indexable a b) => a -> IxSet a -> IxSet a-delete = change Ix.delete--updateIx :: (Indexable a b, Ord a, Data a, Typeable k)-         => k -> a -> IxSet a -> IxSet a-updateIx i new ixset = insert new $-                     maybe ixset (flip delete ixset) $-                     getOne $ ixset @= i---- conversion operations--toSet :: Ord a => IxSet a -> Set a-toSet (IxSet (Ix ix:_)) = Map.fold Set.union Set.empty ix-toSet (IxSet []) = Set.empty-toSet (ISet lst) = Set.fromList lst-toSet _ = error "unexpected match"--toSet' :: Ord a => [Ix a] -> Set a-toSet' (Ix ix:_) = Map.fold Set.union Set.empty ix-toSet' [] = Set.empty-toSet' _ = error "unexpected match"--fromSet :: (Indexable a b, Ord a, Data a) => Set a -> IxSet a-fromSet set = Set.fold insert empty set--fromSet' :: (Indexable a b, Ord a, Data a) => Set a -> IxSet a-fromSet' set = Set.fold insert empty set--fromList :: (Indexable a b, Ord a, Data a) => [a] -> IxSet a-fromList list = fromSet $ Set.fromList list--size :: Ord a => IxSet a -> Int-size x = Set.size $ toSet x--toList :: Ord a => IxSet a -> [a]-toList x = Set.toList $ toSet x--toList' :: Ord a => [Ix a] -> [a]-toList' x = Set.toList $ toSet' x--getOne :: Ord a => IxSet a -> Maybe a-getOne ixset = case toList ixset of-                   [x] -> Just x-                   _   -> Nothing--getOneOr :: Ord a => a -> IxSet a -> a-getOneOr def = fromMaybe def . getOne---- set operations-(&&&) :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a-x1 &&& x2 = intersection x1 x2--(|||) :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a-x1 ||| x2 = union x1 x2--infixr 5 &&&-infixr 5 |||--union :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a-union x1 x2 = fromSet $ Set.union (toSet x1) (toSet x2)--intersection :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a-intersection x1 x2 = fromSet $ Set.intersection (toSet x1) (toSet x2)----- query operators-(@=), (@<), (@>), (@<=), (@>=)-    :: (Indexable a b, Data a, Ord a, Typeable k)-    => IxSet a -> k -> IxSet a-ix @= v = getEQ v ix-ix @< v = getLT v ix-ix @> v = getGT v ix-ix @<= v = getLTE v ix-ix @>= v = getGTE v ix--(@><), (@>=<), (@><=), (@>=<=)-    :: (Indexable a b, Data a, Ord a, Typeable k)-    => IxSet a -> (k, k) -> IxSet a-ix @>< (v1,v2) = getLT v2 $ getGT v1 ix-ix @>=< (v1,v2) = getLT v2 $ getGTE v1 ix-ix @><= (v1,v2) = getLTE v2 $ getGT v1 ix-ix @>=<= (v1,v2) = getLTE v2 $ getGTE v1 ix--(@+), (@*)-    :: (Indexable a b, Data a, Ord a, Typeable k)-    => IxSet a -> [k] -> IxSet a-ix @+ list = foldr union empty        $ map (ix @=) list-ix @* list = foldr intersection empty $ map (ix @=) list--getEQ :: (Indexable a b, Data a, Ord a, Typeable k)-      => k -> IxSet a -> IxSet a-getEQ v ix = getOrd EQ v ix--getLT :: (Indexable a b, Data a, Ord a, Typeable k)-      => k -> IxSet a -> IxSet a-getLT v ix = getOrd LT v ix--getGT :: (Indexable a b, Data a, Ord a, Typeable k)-      => k -> IxSet a -> IxSet a-getGT v ix = getOrd GT v ix--getLTE :: (Indexable a b, Data a, Ord a, Typeable k)-       => k -> IxSet a -> IxSet a--getLTE v ix = let ix2 = (getLT v ix) in union ix2 $ getEQ v ix--getGTE :: (Indexable a b, Data a, Ord a, Typeable k)-       => k -> IxSet a -> IxSet a-getGTE v ix = let ix2 = (getOrd GT v ix) in union ix2 $ getEQ v ix---getRange :: (Indexable a b, Typeable k, Ord a, Data a)-         => k -> k -> IxSet a -> IxSet a-getRange k1 k2 ixset = intersection (getGTE k1 ixset) (getLT k2 ixset)--groupBy::(Typeable k,Typeable t) =>  IxSet t -> [(k, [t])]-groupBy (IxSet indices) = collect indices-    where-    collect [] = []-    collect (Ix index:is) = maybe (collect is) f (fromDynamic $ toDyn index)-    collect _ = error "unexpected match"-    f = mapSnd Set.toList . Map.toList-groupBy _ = error "unexpected match"----rGroupBy :: (Typeable k, Typeable t) => IxSet t -> [(k, [t])]-rGroupBy x = reverse $ groupBy x-    ---query impl function-getOrd :: (Indexable a b, Ord a, Data a, Typeable k)-       => Ordering -> k -> IxSet a -> IxSet a-getOrd ord v (IxSet indices) = collect indices-    where-    v' = toDyn v-    collect [] = empty-    collect (Ix index:is) = maybe (collect is) f $ fromDynamic v'-        where-        f v'' = foldr insert empty $-              case ord of-              LT -> lt-              GT -> gt-              EQ -> eq-            where-            (lt',eq',gt')=Map.splitLookup v'' index-            lt = concat $ map (Set.toList . snd) $ Map.toList lt'-            gt = concat $ map (Set.toList . snd) $ Map.toList gt'-            eq = maybe [] Set.toList eq'-    collect _ = error "unexpected match"-getOrd _ _ _ = error "unexpected match"----we want a gGets that returns a list of all matches--{---Optimization todo:--* can we avoid rebuilding the collection every time we query?-  does laziness take care of everything?--* nicer operators?--* good way to enforce that you don't query on the wrong type?--* nice way to do updates that doesn't involve reinserting the entire data--* can we index on xpath rather than just type?----}--instance (Show a,Indexable a b,Data a,Ord a) => Monoid (IxSet a) where-    mempty=empty-    mappend = union-
− src/HAppS/Data/IxSet/Ix.hs
@@ -1,65 +0,0 @@-{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances,-             MultiParamTypeClasses, TemplateHaskell, PolymorphicComponents,-             DeriveDataTypeable,ExistentialQuantification #-}--module HAppS.Data.IxSet.Ix where--import Data.Generics hiding (GT)-import           Data.Map (Map)-import qualified Data.Map as Map-import           Data.Set (Set)-import qualified Data.Set as Set-import HAppS.Data-import qualified Data.Generics.SYB.WithClass.Basics as SYBWC---- the core datatypes--data Ix a = IxDefault |-            forall key . (Typeable key, Ord key) => Ix (Map key (Set a))-    deriving Typeable-- -- minimal hacky instance-instance Data a => Data (Ix a) where-    toConstr (Ix _) = con_Ix_Data-    toConstr _ = error "unexpected match for: toConstr"-    gunfold _ _     = error "gunfold"-    dataTypeOf _    = ixType_Data---con_Ix_Data :: Constr-con_Ix_Data = mkConstr ixType_Data "Ix" [] Prefix-ixType_Data :: DataType-ixType_Data = mkDataType "HAppS.Data.IxSet.Ix" [con_Ix_Data]---instance Default a => Default (Ix a) where-    defaultValue = IxDefault--ixDefaultConstr :: SYBWC.Constr-ixDefaultConstr = SYBWC.mkConstr ixDataType "IxDefault" [] SYBWC.Prefix-ixConstr :: SYBWC.Constr-ixConstr = SYBWC.mkConstr ixDataType "Ix" [] SYBWC.Prefix-ixDataType :: SYBWC.DataType-ixDataType = SYBWC.mkDataType "Ix" [ixDefaultConstr, ixConstr]--instance (SYBWC.Data ctx a, SYBWC.Sat (ctx (Ix a)))-       => SYBWC.Data ctx (Ix a) where-    gfoldl = error "gfoldl Ix"-    toConstr _ IxDefault = ixDefaultConstr-    toConstr _ (Ix _)    = ixConstr-    gunfold = error "gunfold Ix"-    dataTypeOf _ _ = ixDataType---- modification operations--insert :: (Ord a, Ord k)-       => k -> a -> Map k (Set a) -> Map k (Set a)-insert k v index = Map.insertWith Set.union k (Set.singleton v) index--delete :: (Ord a, Ord k)-       => k -> a -> Map k (Set a) -> Map k (Set a)-delete k v index = Map.update remove k index-    where-    remove set = let set' = Set.delete v set-                 in if Set.null set' then Nothing else Just set'-
− src/HAppS/Data/IxSet/Usage.hs
@@ -1,52 +0,0 @@-{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances-             ,MultiParamTypeClasses, TemplateHaskell, DeriveDataTypeable,-              TypeSynonymInstances #-}---- XXX This modules should be turned into documentation and/or test cases--module HAppS.Data.IxSet.Usage where--import HAppS.Data.IxSet--import Data.Generics hiding (GT)-import           Data.Map (Map)-import qualified Data.Map as Map-import           Data.Set (Set)--{---HOW TO USE---}----define your datatype-data Test = Test String Int deriving (Data,Typeable,Eq,Ord,Show,Read)----define the db on the datatype---should be able to do template haskell to generate these---instance Indexable Test String where-    empty =  IxSet [Ix (Map.empty :: Map String (Set Test)),-                    Ix (Map.empty :: Map Int (Set Test))]-    calcs (Test s _) = s ++ "bar"--t1, t2, t3 :: Test-t1 = Test "foo" 2-t2 = Test "foo" 3-t3 = Test "goo" 3--c1, c2, c3, c4 :: IxSet Test-c1 = insert t1 empty-c2 = insert t2 c1-c3 = delete t1 c2-c4 = insert t3 c2--s1, s2, s3, s4, s5, s6, s7, s8 :: IxSet Test-s1 = getEQ "foo" c4-s2 = getEQ (3::Int) c4-s3 = getLT (4::Int) c4-s4 = getGT (2::Int) c4-s5 = getRange "foo" "goo" c4-s6 = getLT (4::Int) s5-s7 = union s6 s4-s8 = getEQ "foobar" c4-
+ src/Happstack/Data/IxSet.hs view
@@ -0,0 +1,472 @@+{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances,+             MultiParamTypeClasses, TemplateHaskell, RankNTypes,+             FunctionalDependencies, DeriveDataTypeable,+             GADTs, CPP #-}+++{- |+Description:++An efficient implementation of queryable sets.++Assume you have a type like:++ @data Entry = Entry Author [Author] Updated Id Content+  newtype Updated = Updated EpochTime+  newtype Id = Id Int64+  newtype Content = Content String+  newtype Author = Author Email+  type Email = String@++1. Decide what parts of your type you want indexed, and+   make your type an instance of Indexable++  @instance Indexable Entry () where+    empty = IxSet[+                ,Ix (Map.empty::Map Author (Set Entry)) --out of order+                ,Ix (Map.empty::Map Id (Set Entry))+                ,Ix (Map.empty::Map Updated (Set Entry))+                ,Ix (Map.empty::Map Test (Set Entry)) -- bogus index+                ,Ix (Map.empty::Map Word (Set Entry)) -- text index+                ]+    calcs entry = () -- words for text indexing purposes @++3. Use insert,delete,replace and empty to build up an IxSet collection++    @entries = foldr insert empty [e1,e2,e3,e4]@+    @entries' = foldr delete entries [e1,e3]@+    @entries'' = update e4 e5 entries@++4. Use the query functions below to grab data from it.  e.g.++     @entries \@< (Updated t1) \@= (Author \"john\@doe.com\")@++  will find all items in entries updated earlier than t1 by+  john\@doe.com.++5. Text Index++If you want to do add a text index extract the words in entry and pass+them in the calc method of the Indexable class.  Then if you want+all entries with either word1 or word2, you change the instance to++    @getWords entry = let Just (Content s) =+                                     gGet entry in map Word $ words s@++    @instance Indexable Entry [Word] where+    ....+    calcs entry = getWords entry@++Now you can do this query to find entries with any of the words++   @entries \@+ [Word \"word1\",Word \"word2\"]@++And if you want all entries with both:++   @entries \@* [Word \"word1\",Word \"word2\"]@++6. Find the only the first author++If an Entry has multiple authors and you want to be able to query+on the first author, define a FirstAuthor datatype and add it to the+result of calc.  calc e=(toWords e,getFirstAuthor e) and now you can+do++   @newtype FirstAuthor = FirstAuthor Email@+   @getFirstAuthor = let Just (Author a)=gGet Entry in FirstAuthor a@++   @instance Indexable Entry ([Word],FirstAuthor)+    ...+    empty = ....+             Ix (Map.empty::Map FirstAuthor (Set Entry))]+    calcs entry = (getWords Entry,getFirstAuthor entry)++    entries \@= (FirstAuthor \"john\@doe.com\")  -- guess what this does@++-}++module Happstack.Data.IxSet (module Happstack.Data.IxSet,+                         module Ix)+    where++import qualified Happstack.Data.IxSet.Ix as Ix+import           Happstack.Data.IxSet.Ix (Ix(Ix))+import Data.Generics hiding (GT)+import Data.Dynamic+import Data.Maybe+import Data.Monoid+import           Data.List (partition)+import qualified Data.List as List+import           Data.Map (Map)+import qualified Data.Map as Map+import           Data.Set (Set)+import qualified Data.Set as Set+import Happstack.Util.Common+import Control.Monad.Reader+import Language.Haskell.TH as TH++import Happstack.Util.TH+import Happstack.Data+import qualified Data.Generics.SYB.WithClass.Basics as SYBWC++-- the core datatypes++data IxSet a = ISet [a] | IxSet [Ix a]+    deriving (Data, Typeable)++instance Version (IxSet a)+instance (Serialize a, Ord a, Data a, Indexable a b) => Serialize (IxSet a) where+    putCopy = contain . safePut . toList+    getCopy = contain $ liftM fromList safeGet++instance (SYBWC.Data ctx a, SYBWC.Sat (ctx (IxSet a)), SYBWC.Sat (ctx [a]),+          Indexable a b, Data a, Ord a)+       => SYBWC.Data ctx (IxSet a) where+    gfoldl _ f z (IxSet x)  = z fromList `f` toList' x+    gfoldl _ f z (ISet x)   = z ISet `f` x+    toConstr _ (ISet  _) = iSetConstr+    toConstr _ (IxSet _) = ixSetConstr+    gunfold _ k z c  = case SYBWC.constrIndex c of+                       1 -> k (z ISet)+                       2 -> k (z fromList)+                       _ -> error "unexpected match"+    dataTypeOf _ _ = ixSetDataType++iSetConstr :: SYBWC.Constr+iSetConstr = SYBWC.mkConstr ixSetDataType "ISet" [] SYBWC.Prefix+ixSetConstr :: SYBWC.Constr+ixSetConstr = SYBWC.mkConstr ixSetDataType "IxSet" [] SYBWC.Prefix+ixSetDataType :: SYBWC.DataType+ixSetDataType = SYBWC.mkDataType "IxSet" [iSetConstr, ixSetConstr]++++instance (Indexable a b, Data a, Ord a, Default a) => Default (IxSet a) where+    defaultValue = ISet []++instance (Ord a,Show a) => Show (IxSet a) where show = show . toSet++instance (Ord a,Read a,Data a,Indexable a b) => Read (IxSet a) where+    readsPrec n = mapFst fromSet . readsPrec n++{- | empty defines what an empty IxSet for this particular type should look+     like.  +     calcs adds indexable values not found in the type.+     If you don't want calculated values use Indexable a ().+-}+class (Data b) => Indexable a b | a->b where+    empty :: IxSet a+    calcs :: a->b+        --should this be a fromDyn so we can provide a default impl?+           +-- | Function to be used for calcs in the case of an Indexable a () instance+noCalcs :: t -> ()+noCalcs _ = ()++inferIxSet :: String -> TH.Name -> TH.Name -> [TH.Name] -> Q [Dec]+inferIxSet ixset typeName calName entryPoints+    = do calInfo <- reify calName+         typeInfo <- reify typeName+         let (context,names) = case typeInfo of+                                 TyConI (DataD ctxt _ nms _ _) -> (ctxt,nms)+                                 TyConI (NewtypeD ctxt _ nms _ _) -> (ctxt,nms)+                                 TyConI (TySynD _ nms _) -> ([],nms)+                                 _ -> error "unexpected match"+             typeCon = foldl appT (conT typeName) (map varT names)+         case calInfo of+           VarI _ t _ _ ->+               let calType = getCalType t+                   getCalType (ForallT _names _ t') = getCalType t'+                   getCalType (AppT (AppT ArrowT _) t') = t'+                   getCalType t' = error ("Unexpected type: " ++ pprint t')+                   mkEntryPoint n = appE (conE 'Ix) (sigE (varE 'Map.empty) (forallT names (return context) $+                                                                             appT (appT (conT ''Map) (conT n)) (appT (conT ''Set) typeCon)))+               in do i <- instanceD' (return context) (appT (appT (conT ''Indexable) typeCon) (return calType))+                          [d| empty :: IxSet a+                              empty = IxSet $(listE (map mkEntryPoint entryPoints))+                              calcs :: a -> b+                              calcs = $(varE calName) |]+                     let ixType = appT (conT ''IxSet) typeCon+                     ixType' <- tySynD (mkName ixset) names ixType+                     return $ [i, ixType']  -- ++ d+           _ -> error "unexpected match"++-- modification operations++-- | Generically traverses the argument and converts all data in it to Dynamic+-- and returns all the iternal data as a list of Dynamic+flatten :: (Typeable a, Data a) => a -> [Dynamic]+flatten x = case cast x of+                Just y -> [toDyn (y :: String)]+                Nothing -> toDyn x : concat (gmapQ flatten x)++type IndexOp =+    forall k a. (Ord k,Ord a) => k -> a -> Map k (Set a) -> Map k (Set a)++-- | Higher order operator for modifying IxSets.  Use this when your final+-- function should have the form a->IxSet a->IxSet a, e.g. insert.+change :: (Data a, Ord a,Data b,Indexable a b) =>+          IndexOp -> a -> IxSet a -> IxSet a+change op x (ISet as) = change op x $ fromList as+change op x (IxSet indices) =+    IxSet $ update indices $ flatten (x,calcs x)+    where+    update [] _ = []+    update _ [] = []+    update (Ix index:is) dyns = Ix index':update is dyns'+        where+        keyType = typeOf ((undefined :: Map key (Set a) -> key) index)+        (ds,dyns') = partition (\d->dynTypeRep d == keyType) dyns+                     -- partition handles out of order indexes+        ii dkey = op (fromJust $ fromDynamic dkey) x+        index' = foldr ii index ds -- handle multiple values+    update _ _ = error "unexpected match"++-- | Inserts an item into the IxSet+insert :: (Data a, Ord a,Data b,Indexable a b) => a -> IxSet a -> IxSet a+insert = change Ix.insert++-- | Removes an item from the IxSet+delete :: (Data a, Ord a,Data b,Indexable a b) => a -> IxSet a -> IxSet a+delete = change Ix.delete++-- | Will replace the item with index k.  Only works if there is at most one+-- item with that index in the IxSet.+updateIx :: (Indexable a b, Ord a, Data a, Typeable k)+         => k -> a -> IxSet a -> IxSet a+updateIx i new ixset = insert new $+                     maybe ixset (flip delete ixset) $+                     getOne $ ixset @= i++-- conversion operations++-- | Converts an IxSet to a Set of its elements+toSet :: Ord a => IxSet a -> Set a+toSet (IxSet (Ix ix:_)) = Map.fold Set.union Set.empty ix+toSet (IxSet []) = Set.empty+toSet (ISet lst) = Set.fromList lst+toSet _ = error "unexpected match"++-- | Takes a list of Ixs and converts it into a Set+toSet' :: Ord a => [Ix a] -> Set a+toSet' (Ix ix:_) = Map.fold Set.union Set.empty ix+toSet' [] = Set.empty+toSet' _ = error "unexpected match"++-- | Converts a Set to an IxSet+fromSet :: (Indexable a b, Ord a, Data a) => Set a -> IxSet a+fromSet set = Set.fold insert empty set++-- | Converts a Set to an IxSet+fromSet' :: (Indexable a b, Ord a, Data a) => Set a -> IxSet a+fromSet' set = Set.fold insert empty set++-- | Converts a list to an IxSet+fromList :: (Indexable a b, Ord a, Data a) => [a] -> IxSet a+fromList = fromSet . Set.fromList++-- | Returns the number of unique items in the IxSet+size :: Ord a => IxSet a -> Int+size = Set.size . toSet++-- | Converts an IxSet to its list of elements.+toList :: Ord a => IxSet a -> [a]+toList = Set.toList . toSet++-- | Converts a list of Ix's +toList' :: Ord a => [Ix a] -> [a]+toList' = Set.toList . toSet'++-- | If the IxSet is a singleton it will return the one item stored, else Nothing.+getOne :: Ord a => IxSet a -> Maybe a+getOne ixset = case toList ixset of+                   [x] -> Just x+                   _   -> Nothing++-- | getOne with a user provided default+getOneOr :: Ord a => a -> IxSet a -> a+getOneOr def = fromMaybe def . getOne++-- set operations++-- | An infix intersection operation+(&&&) :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a+(&&&) = intersection++-- | An infix union operation+(|||) :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a+(|||) = union++infixr 5 &&&+infixr 5 |||++-- | Takes the union of the two IxSets+union :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a+union x1 x2 = fromSet $ Set.union (toSet x1) (toSet x2)++-- | Takes the intersection of the two IxSets+intersection :: (Ord a, Data a, Indexable a b) => IxSet a -> IxSet a -> IxSet a+intersection x1 x2 = fromSet $ Set.intersection (toSet x1) (toSet x2)+++-- query operators++-- | Infix version of getEQ+(@=) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> k -> IxSet a+ix @= v = getEQ v ix++-- | Infix version of getLT+(@<) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> k -> IxSet a+ix @< v = getLT v ix++-- | Infix version of getGT+(@>) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> k -> IxSet a+ix @> v = getGT v ix++-- | Infix version of getLTE+(@<=) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> k -> IxSet a+ix @<= v = getLTE v ix++-- | Infix version of getGTE+(@>=) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> k -> IxSet a+ix @>= v = getGTE v ix++-- | Returns the subset with indices in the open interval (k,k)+(@><) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> (k, k) -> IxSet a+ix @>< (v1,v2) = getLT v2 $ getGT v1 ix++-- | Returns the subset with indices in [k,k)+(@>=<) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> (k, k) -> IxSet a+ix @>=< (v1,v2) = getLT v2 $ getGTE v1 ix++-- | Returns the subset with indices in (k,k]+(@><=) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> (k, k) -> IxSet a+ix @><= (v1,v2) = getLTE v2 $ getGT v1 ix++-- | Returns the subset with indices in [k,k]+(@>=<=) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> (k, k) -> IxSet a+ix @>=<= (v1,v2) = getLTE v2 $ getGTE v1 ix++-- | Creates the subset that has an index in the provided list.+(@+) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> [k] -> IxSet a+ix @+ list = foldr union empty        $ map (ix @=) list++-- | Creates the subset that matches all the provided indices.+(@*) :: (Indexable a b, Data a, Ord a, Typeable k)+    => IxSet a -> [k] -> IxSet a+ix @* list = foldr intersection empty $ map (ix @=) list++-- | Returns the subset with an index equal to the provided key.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getEQ :: (Indexable a b, Data a, Ord a, Typeable k)+      => k -> IxSet a -> IxSet a+getEQ = getOrd EQ++-- | Returns the subset with an index less than the provided key.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getLT :: (Indexable a b, Data a, Ord a, Typeable k)+      => k -> IxSet a -> IxSet a+getLT = getOrd LT++-- | Returns the subset with an index greater than the provided key.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getGT :: (Indexable a b, Data a, Ord a, Typeable k)+      => k -> IxSet a -> IxSet a+getGT = getOrd GT++-- | Returns the subset with an index less than or equal to the provided key.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getLTE :: (Indexable a b, Data a, Ord a, Typeable k)+       => k -> IxSet a -> IxSet a+getLTE v ix = let ix2 = (getLT v ix) in union ix2 $ getEQ v ix++-- | Returns the subset with an index greater than or equal to the provided key.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getGTE :: (Indexable a b, Data a, Ord a, Typeable k)+       => k -> IxSet a -> IxSet a+getGTE v ix = let ix2 = (getOrd GT v ix) in union ix2 $ getEQ v ix++-- | Returns the subset with an index within the interval provided.+-- The top of the interval is closed and the bottom is open.+-- It is possible to provide a key of a type not indexed in the IxSet.  In+-- this case the function returns the empty IxSet for this type.+getRange :: (Indexable a b, Typeable k, Ord a, Data a)+         => k -> k -> IxSet a -> IxSet a+getRange k1 k2 ixset = intersection (getGTE k1 ixset) (getLT k2 ixset)++-- | Returns lists of elements paired with the indices determined by type+-- inference.+groupBy::(Typeable k,Typeable t) =>  IxSet t -> [(k, [t])]+groupBy (IxSet indices) = collect indices+    where+    collect [] = []+    collect (Ix index:is) = maybe (collect is) f (fromDynamic $ toDyn index)+    collect _ = error "unexpected match"+    f = mapSnd Set.toList . Map.toList+groupBy _ = error "unexpected match"++-- | A reversed groupBy+rGroupBy :: (Typeable k, Typeable t) => IxSet t -> [(k, [t])]+rGroupBy = reverse . groupBy+    +--query impl function+-- | A function for building up selectors on IxSets.  Used in the various get*+-- functions. +getOrd :: (Indexable a b, Ord a, Data a, Typeable k)+       => Ordering -> k -> IxSet a -> IxSet a+getOrd ord v (IxSet indices) = collect indices+    where+    v' = toDyn v+    collect [] = empty+    collect (Ix index:is) = maybe (collect is) f $ fromDynamic v'+        where+        f v'' = foldr insert empty $+              case ord of+              LT -> lt+              GT -> gt+              EQ -> eq+            where+            (lt',eq',gt')=Map.splitLookup v'' index+            lt = concatMap (Set.toList . snd) $ Map.toList lt'+            gt = concatMap (Set.toList . snd) $ Map.toList gt'+            eq = maybe [] Set.toList eq'+    collect _ = error "unexpected match"+getOrd _ _ _ = error "unexpected match"++--we want a gGets that returns a list of all matches++{--+Optimization todo:++* can we avoid rebuilding the collection every time we query?+  does laziness take care of everything?++* nicer operators?++* good way to enforce that you don't query on the wrong type?++* nice way to do updates that doesn't involve reinserting the entire data++* can we index on xpath rather than just type?++--}++instance (Show a,Indexable a b,Data a,Ord a) => Monoid (IxSet a) where+    mempty=empty+    mappend = union+
+ src/Happstack/Data/IxSet/Ix.hs view
@@ -0,0 +1,69 @@+{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances,+             MultiParamTypeClasses, TemplateHaskell, PolymorphicComponents,+             DeriveDataTypeable,ExistentialQuantification #-}++module Happstack.Data.IxSet.Ix where++import Data.Generics hiding (GT)+import           Data.Map (Map)+import qualified Data.Map as Map+import           Data.Set (Set)+import qualified Data.Set as Set+import Happstack.Data+import qualified Data.Generics.SYB.WithClass.Basics as SYBWC++-- the core datatypes++data Ix a = IxDefault |+            forall key . (Typeable key, Ord key) => Ix (Map key (Set a))+    deriving Typeable++ -- minimal hacky instance+instance Data a => Data (Ix a) where+    toConstr (Ix _) = con_Ix_Data+    toConstr _ = error "unexpected match for: toConstr"+    gunfold _ _     = error "gunfold"+    dataTypeOf _    = ixType_Data+++con_Ix_Data :: Constr+con_Ix_Data = mkConstr ixType_Data "Ix" [] Prefix+ixType_Data :: DataType+ixType_Data = mkDataType "Happstack.Data.IxSet.Ix" [con_Ix_Data]+++instance Default a => Default (Ix a) where+    defaultValue = IxDefault++ixDefaultConstr :: SYBWC.Constr+ixDefaultConstr = SYBWC.mkConstr ixDataType "IxDefault" [] SYBWC.Prefix+ixConstr :: SYBWC.Constr+ixConstr = SYBWC.mkConstr ixDataType "Ix" [] SYBWC.Prefix+ixDataType :: SYBWC.DataType+ixDataType = SYBWC.mkDataType "Ix" [ixDefaultConstr, ixConstr]++instance (SYBWC.Data ctx a, SYBWC.Sat (ctx (Ix a)))+       => SYBWC.Data ctx (Ix a) where+    gfoldl = error "gfoldl Ix"+    toConstr _ IxDefault = ixDefaultConstr+    toConstr _ (Ix _)    = ixConstr+    gunfold = error "gunfold Ix"+    dataTypeOf _ _ = ixDataType++-- modification operations++-- | Convenience function for inserting into Maps of Sets+-- as in the case of an Ix.  If they key did not already exist in the Map, then a new Set is added transparently.+insert :: (Ord a, Ord k)+       => k -> a -> Map k (Set a) -> Map k (Set a)+insert k v index = Map.insertWith Set.union k (Set.singleton v) index++-- | Convenience function for deleting from Maps of Sets+-- If the resulting Set is empty, then the entry is removed from the Map+delete :: (Ord a, Ord k)+       => k -> a -> Map k (Set a) -> Map k (Set a)+delete k v index = Map.update remove k index+    where+    remove set = let set' = Set.delete v set+                 in if Set.null set' then Nothing else Just set'+
+ src/Happstack/Data/IxSet/Usage.hs view
@@ -0,0 +1,52 @@+{-# LANGUAGE UndecidableInstances, OverlappingInstances, FlexibleInstances+             ,MultiParamTypeClasses, TemplateHaskell, DeriveDataTypeable,+              TypeSynonymInstances #-}++-- XXX This modules should be turned into documentation and/or test cases++module Happstack.Data.IxSet.Usage where++import Happstack.Data.IxSet++import Data.Generics hiding (GT)+import           Data.Map (Map)+import qualified Data.Map as Map+import           Data.Set (Set)++{--+HOW TO USE+--}++--define your datatype+data Test = Test String Int deriving (Data,Typeable,Eq,Ord,Show,Read)++--define the db on the datatype+--should be able to do template haskell to generate these+++instance Indexable Test String where+    empty =  IxSet [Ix (Map.empty :: Map String (Set Test)),+                    Ix (Map.empty :: Map Int (Set Test))]+    calcs (Test s _) = s ++ "bar"++t1, t2, t3 :: Test+t1 = Test "foo" 2+t2 = Test "foo" 3+t3 = Test "goo" 3++c1, c2, c3, c4 :: IxSet Test+c1 = insert t1 empty+c2 = insert t2 c1+c3 = delete t1 c2+c4 = insert t3 c2++s1, s2, s3, s4, s5, s6, s7, s8 :: IxSet Test+s1 = getEQ "foo" c4+s2 = getEQ (3::Int) c4+s3 = getLT (4::Int) c4+s4 = getGT (2::Int) c4+s5 = getRange "foo" "goo" c4+s6 = getLT (4::Int) s5+s7 = union s6 s4+s8 = getEQ "foobar" c4+
− tests/HAppS/Data/IxSet/Tests.hs
@@ -1,55 +0,0 @@--{-# LANGUAGE TemplateHaskell, OverlappingInstances, UndecidableInstances #-}-{-# OPTIONS_GHC -fglasgow-exts #-}---- Check that the SYBWC Data instance for IxSet works, by testing--- that going to and from XML works.--module HAppS.Data.IxSet.Tests (allTests, ixSet001) where--import Control.Monad-import Data.Generics.SYB.WithClass.Basics-import Data.Maybe-import HAppS.Data-import HAppS.Data.IxSet-import           Data.Map (Map)-import qualified Data.Map as Map-import           Data.Set (Set)-import Test.HUnit (Test,(~:),(@=?))--$( deriveAll [''Eq, ''Ord, ''Default, ''Show]-    [d|-        data Foo = Foo String Int-      |]- )--instance Indexable Foo String where-    empty =  IxSet [Ix (Map.empty :: Map String (Set Foo)),-                    Ix (Map.empty :: Map Int (Set Foo))]-    calcs (Foo s _) = s ++ "bar"--t1, t2, t3 :: Foo-t1 = Foo "foo" 2-t2 = Foo "foo" 3-t3 = Foo "goo" 3--ts :: [Foo]-ts = [t1, t2, t3]--ixset :: IxSet Foo-ixset = fromList ts--xml :: [Element]-xml = toXml ixset--ixset' :: Maybe (IxSet Foo)-ixset' = fromXml Rigid xml--ts' :: Maybe [Foo]-ts' = fmap toList ixset'--ixSet001 :: Test-ixSet001 = "ixSet001" ~: (Just ts) @=? ts'--allTests :: Test-allTests = "happstack-ixset" ~: [ixSet001]
+ tests/Happstack/Data/IxSet/Tests.hs view
@@ -0,0 +1,55 @@++{-# LANGUAGE TemplateHaskell, OverlappingInstances, UndecidableInstances #-}+{-# OPTIONS_GHC -fglasgow-exts #-}++-- Check that the SYBWC Data instance for IxSet works, by testing+-- that going to and from XML works.++module Happstack.Data.IxSet.Tests (allTests, ixSet001) where++import Control.Monad+import Data.Generics.SYB.WithClass.Basics+import Data.Maybe+import Happstack.Data+import Happstack.Data.IxSet+import           Data.Map (Map)+import qualified Data.Map as Map+import           Data.Set (Set)+import Test.HUnit (Test,(~:),(@=?))++$( deriveAll [''Eq, ''Ord, ''Default, ''Show]+    [d|+        data Foo = Foo String Int+      |]+ )++instance Indexable Foo String where+    empty =  IxSet [Ix (Map.empty :: Map String (Set Foo)),+                    Ix (Map.empty :: Map Int (Set Foo))]+    calcs (Foo s _) = s ++ "bar"++t1, t2, t3 :: Foo+t1 = Foo "foo" 2+t2 = Foo "foo" 3+t3 = Foo "goo" 3++ts :: [Foo]+ts = [t1, t2, t3]++ixset :: IxSet Foo+ixset = fromList ts++xml :: [Element]+xml = toXml ixset++ixset' :: Maybe (IxSet Foo)+ixset' = fromXml Rigid xml++ts' :: Maybe [Foo]+ts' = fmap toList ixset'++ixSet001 :: Test+ixSet001 = "ixSet001" ~: (Just ts) @=? ts'++allTests :: Test+allTests = "happstack-ixset" ~: [ixSet001]
tests/Test.hs view
@@ -1,6 +1,6 @@ module Main where -import HAppS.Data.IxSet.Tests (allTests)+import Happstack.Data.IxSet.Tests (allTests) import Test.HUnit (errors, failures, putTextToShowS,runTestText, runTestTT) import System.Exit (exitFailure) import System.IO (hIsTerminalDevice, stdout)