2017-02-13 21:30:28 +00:00
|
|
|
{- Persistent sqlite database initialization
|
|
|
|
-
|
2018-10-30 17:47:38 +00:00
|
|
|
- Copyright 2015-2018 Joey Hess <id@joeyh.name>
|
2017-02-13 21:30:28 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Database.Init where
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import Annex.Perms
|
|
|
|
import Utility.FileMode
|
2018-10-30 17:47:38 +00:00
|
|
|
import Database.Handle
|
2017-02-13 21:30:28 +00:00
|
|
|
|
|
|
|
import Database.Persist.Sqlite
|
|
|
|
import qualified Database.Sqlite as Sqlite
|
|
|
|
import Control.Monad.IO.Class (liftIO)
|
|
|
|
import qualified Data.Text as T
|
2018-10-30 17:47:38 +00:00
|
|
|
import Lens.Micro
|
2017-02-13 21:30:28 +00:00
|
|
|
|
|
|
|
{- Ensures that the database is freshly initialized. Deletes any
|
|
|
|
- existing database. Pass the migration action for the database.
|
|
|
|
-
|
|
|
|
- The permissions of the database are set based on the
|
|
|
|
- core.sharedRepository setting. Setting these permissions on the main db
|
|
|
|
- file causes Sqlite to always use the same permissions for additional
|
|
|
|
- files it writes later on
|
|
|
|
-}
|
|
|
|
initDb :: FilePath -> SqlPersistM () -> Annex ()
|
|
|
|
initDb db migration = do
|
|
|
|
let dbdir = takeDirectory db
|
|
|
|
let tmpdbdir = dbdir ++ ".tmp"
|
|
|
|
let tmpdb = tmpdbdir </> "db"
|
|
|
|
liftIO $ do
|
|
|
|
createDirectoryIfMissing True tmpdbdir
|
2018-10-30 17:47:38 +00:00
|
|
|
runSqliteInfo (mkConnInfo tmpdb) migration
|
2017-02-13 21:30:28 +00:00
|
|
|
setAnnexDirPerm tmpdbdir
|
|
|
|
-- Work around sqlite bug that prevents it from honoring
|
|
|
|
-- less restrictive umasks.
|
|
|
|
liftIO $ setFileMode tmpdb =<< defaultFileMode
|
|
|
|
setAnnexFilePerm tmpdb
|
|
|
|
liftIO $ do
|
|
|
|
void $ tryIO $ removeDirectoryRecursive dbdir
|
|
|
|
rename tmpdbdir dbdir
|
|
|
|
|
2018-10-30 17:47:38 +00:00
|
|
|
{- Make sure that the database uses WAL mode, to prevent readers
|
|
|
|
- from blocking writers, and prevent a writer from blocking readers.
|
|
|
|
-
|
|
|
|
- This is the default in persistent-sqlite currently, but force it on just
|
|
|
|
- in case.
|
|
|
|
-
|
|
|
|
- Note that once WAL mode is enabled, it will persist whenever the
|
|
|
|
- database is opened. -}
|
|
|
|
mkConnInfo :: FilePath -> SqliteConnectionInfo
|
|
|
|
mkConnInfo db = over walEnabled (const True) $
|
|
|
|
mkSqliteConnectionInfo (T.pack db)
|