Statistics
| Branch: | Tag: | Revision:

root / src / Ganeti / Path.hs @ dcd54d32

History | View | Annotate | Download (3.8 kB)

1 9eeb0aa5 Michael Hanselmann
{-| Path-related helper functions.
2 9eeb0aa5 Michael Hanselmann
3 9eeb0aa5 Michael Hanselmann
-}
4 9eeb0aa5 Michael Hanselmann
5 9eeb0aa5 Michael Hanselmann
{-
6 9eeb0aa5 Michael Hanselmann
7 9eeb0aa5 Michael Hanselmann
Copyright (C) 2012 Google Inc.
8 9eeb0aa5 Michael Hanselmann
9 9eeb0aa5 Michael Hanselmann
This program is free software; you can redistribute it and/or modify
10 9eeb0aa5 Michael Hanselmann
it under the terms of the GNU General Public License as published by
11 9eeb0aa5 Michael Hanselmann
the Free Software Foundation; either version 2 of the License, or
12 9eeb0aa5 Michael Hanselmann
(at your option) any later version.
13 9eeb0aa5 Michael Hanselmann
14 9eeb0aa5 Michael Hanselmann
This program is distributed in the hope that it will be useful, but
15 9eeb0aa5 Michael Hanselmann
WITHOUT ANY WARRANTY; without even the implied warranty of
16 9eeb0aa5 Michael Hanselmann
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 9eeb0aa5 Michael Hanselmann
General Public License for more details.
18 9eeb0aa5 Michael Hanselmann
19 9eeb0aa5 Michael Hanselmann
You should have received a copy of the GNU General Public License
20 9eeb0aa5 Michael Hanselmann
along with this program; if not, write to the Free Software
21 9eeb0aa5 Michael Hanselmann
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 9eeb0aa5 Michael Hanselmann
02110-1301, USA.
23 9eeb0aa5 Michael Hanselmann
24 9eeb0aa5 Michael Hanselmann
-}
25 9eeb0aa5 Michael Hanselmann
26 29a30533 Iustin Pop
module Ganeti.Path
27 29a30533 Iustin Pop
  ( dataDir
28 29a30533 Iustin Pop
  , runDir
29 29a30533 Iustin Pop
  , logDir
30 29a30533 Iustin Pop
  , socketDir
31 9d049fb4 Klaus Aehlig
  , defaultMasterSocket
32 29a30533 Iustin Pop
  , defaultQuerySocket
33 29a30533 Iustin Pop
  , confdHmacKey
34 29a30533 Iustin Pop
  , clusterConfFile
35 4b7863cb Klaus Aehlig
  , watcherPauseFile
36 29a30533 Iustin Pop
  , nodedCertFile
37 1db32048 Iustin Pop
  , queueDir
38 1db32048 Iustin Pop
  , jobQueueSerialFile
39 02926b4b Klaus Aehlig
  , jobQueueLockFile 
40 e773a018 Klaus Aehlig
  , jobQueueDrainFile  
41 1db32048 Iustin Pop
  , jobQueueArchiveSubDir
42 74b25887 Michele Tartara
  , instanceReasonDir
43 74b25887 Michele Tartara
  , getInstReasonFilename
44 29a30533 Iustin Pop
  ) where
45 9eeb0aa5 Michael Hanselmann
46 9eeb0aa5 Michael Hanselmann
import System.FilePath
47 2f441f72 Michael Hanselmann
import System.Posix.Env (getEnvDefault)
48 2f441f72 Michael Hanselmann
49 f81d41cc Jose A. Lopes
import AutoConf
50 9eeb0aa5 Michael Hanselmann
51 29a30533 Iustin Pop
-- | Simple helper to concat two paths.
52 29a30533 Iustin Pop
pjoin :: IO String -> String -> IO String
53 29a30533 Iustin Pop
pjoin a b = do
54 29a30533 Iustin Pop
  a' <- a
55 29a30533 Iustin Pop
  return $ a' </> b
56 29a30533 Iustin Pop
57 29a30533 Iustin Pop
-- | Returns the root directory, which can be either the real root or
58 29a30533 Iustin Pop
-- the virtual root.
59 29a30533 Iustin Pop
getRootDir :: IO FilePath
60 29a30533 Iustin Pop
getRootDir = getEnvDefault "GANETI_ROOTDIR" ""
61 29a30533 Iustin Pop
62 29a30533 Iustin Pop
-- | Prefixes a path with the current root directory.
63 29a30533 Iustin Pop
addNodePrefix :: FilePath -> IO FilePath
64 29a30533 Iustin Pop
addNodePrefix path = do
65 29a30533 Iustin Pop
  root <- getRootDir
66 29a30533 Iustin Pop
  return $ root ++ path
67 29a30533 Iustin Pop
68 29a30533 Iustin Pop
-- | Directory for data.
69 29a30533 Iustin Pop
dataDir :: IO FilePath
70 f81d41cc Jose A. Lopes
dataDir = addNodePrefix $ AutoConf.localstatedir </> "lib" </> "ganeti"
71 9eeb0aa5 Michael Hanselmann
72 1db32048 Iustin Pop
-- | Helper for building on top of dataDir (internal).
73 1db32048 Iustin Pop
dataDirP :: FilePath -> IO FilePath
74 1db32048 Iustin Pop
dataDirP = (dataDir `pjoin`)
75 1db32048 Iustin Pop
76 29a30533 Iustin Pop
-- | Directory for runtime files.
77 29a30533 Iustin Pop
runDir :: IO FilePath
78 f81d41cc Jose A. Lopes
runDir = addNodePrefix $ AutoConf.localstatedir </> "run" </> "ganeti"
79 9eeb0aa5 Michael Hanselmann
80 29a30533 Iustin Pop
-- | Directory for log files.
81 29a30533 Iustin Pop
logDir :: IO FilePath
82 f81d41cc Jose A. Lopes
logDir = addNodePrefix $ AutoConf.localstatedir </> "log" </> "ganeti"
83 9eeb0aa5 Michael Hanselmann
84 29a30533 Iustin Pop
-- | Directory for Unix sockets.
85 29a30533 Iustin Pop
socketDir :: IO FilePath
86 29a30533 Iustin Pop
socketDir = runDir `pjoin` "socket"
87 9eeb0aa5 Michael Hanselmann
88 9d049fb4 Klaus Aehlig
-- | The default path for the master-daemon LUXI socket.
89 9d049fb4 Klaus Aehlig
defaultMasterSocket :: IO FilePath
90 9d049fb4 Klaus Aehlig
defaultMasterSocket = socketDir `pjoin` "ganeti-master"
91 9eeb0aa5 Michael Hanselmann
92 9eeb0aa5 Michael Hanselmann
-- | The default LUXI socket for queries.
93 29a30533 Iustin Pop
defaultQuerySocket :: IO FilePath
94 29a30533 Iustin Pop
defaultQuerySocket = socketDir `pjoin` "ganeti-query"
95 9eeb0aa5 Michael Hanselmann
96 29a30533 Iustin Pop
-- | Path to file containing confd's HMAC key.
97 29a30533 Iustin Pop
confdHmacKey :: IO FilePath
98 1db32048 Iustin Pop
confdHmacKey = dataDirP "hmac.key"
99 9eeb0aa5 Michael Hanselmann
100 29a30533 Iustin Pop
-- | Path to cluster configuration file.
101 29a30533 Iustin Pop
clusterConfFile :: IO FilePath
102 1db32048 Iustin Pop
clusterConfFile  = dataDirP "config.data"
103 7766de33 Agata Murawska
104 4b7863cb Klaus Aehlig
-- | Path to the watcher pause file.
105 4b7863cb Klaus Aehlig
watcherPauseFile :: IO FilePath
106 4b7863cb Klaus Aehlig
watcherPauseFile = dataDirP "watcher.pause"
107 4b7863cb Klaus Aehlig
108 29a30533 Iustin Pop
-- | Path to the noded certificate.
109 1db32048 Iustin Pop
nodedCertFile :: IO FilePath
110 1db32048 Iustin Pop
nodedCertFile = dataDirP "server.pem"
111 1db32048 Iustin Pop
112 1db32048 Iustin Pop
-- | Job queue directory.
113 1db32048 Iustin Pop
queueDir :: IO FilePath
114 1db32048 Iustin Pop
queueDir = dataDirP "queue"
115 1db32048 Iustin Pop
116 1db32048 Iustin Pop
-- | Job queue serial file.
117 1db32048 Iustin Pop
jobQueueSerialFile :: IO FilePath
118 6fe0f9a6 Klaus Aehlig
jobQueueSerialFile = queueDir `pjoin` "serial"
119 1db32048 Iustin Pop
120 02926b4b Klaus Aehlig
-- | Job queue lock file
121 02926b4b Klaus Aehlig
jobQueueLockFile :: IO FilePath
122 02926b4b Klaus Aehlig
jobQueueLockFile = queueDir `pjoin` "lock"
123 02926b4b Klaus Aehlig
124 e773a018 Klaus Aehlig
-- | Job queue drain file
125 e773a018 Klaus Aehlig
jobQueueDrainFile :: IO FilePath
126 e773a018 Klaus Aehlig
jobQueueDrainFile = queueDir `pjoin` "drain"
127 e773a018 Klaus Aehlig
128 1db32048 Iustin Pop
-- | Job queue archive directory.
129 1db32048 Iustin Pop
jobQueueArchiveSubDir :: FilePath
130 1db32048 Iustin Pop
jobQueueArchiveSubDir = "archive"
131 74b25887 Michele Tartara
132 74b25887 Michele Tartara
-- | Directory containing the reason trails for the last change of status of
133 74b25887 Michele Tartara
-- instances.
134 74b25887 Michele Tartara
instanceReasonDir :: IO FilePath
135 74b25887 Michele Tartara
instanceReasonDir = runDir `pjoin` "instance-reason"
136 74b25887 Michele Tartara
137 74b25887 Michele Tartara
-- | The path of the file containing the reason trail for an instance, given the
138 74b25887 Michele Tartara
-- instance name.
139 74b25887 Michele Tartara
getInstReasonFilename :: String -> IO FilePath
140 74b25887 Michele Tartara
getInstReasonFilename instName = instanceReasonDir `pjoin` instName