Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / HTools / Rapi.hs @ 2e5eb96a

History | View | Annotate | Download (6.9 kB)

1 a7654563 Iustin Pop
{-| Implementation of the RAPI client interface.
2 a7654563 Iustin Pop
3 a7654563 Iustin Pop
-}
4 a7654563 Iustin Pop
5 e2fa2baf Iustin Pop
{-
6 e2fa2baf Iustin Pop
7 4d8e5008 Iustin Pop
Copyright (C) 2009, 2010, 2011 Google Inc.
8 e2fa2baf Iustin Pop
9 e2fa2baf Iustin Pop
This program is free software; you can redistribute it and/or modify
10 e2fa2baf Iustin Pop
it under the terms of the GNU General Public License as published by
11 e2fa2baf Iustin Pop
the Free Software Foundation; either version 2 of the License, or
12 e2fa2baf Iustin Pop
(at your option) any later version.
13 e2fa2baf Iustin Pop
14 e2fa2baf Iustin Pop
This program is distributed in the hope that it will be useful, but
15 e2fa2baf Iustin Pop
WITHOUT ANY WARRANTY; without even the implied warranty of
16 e2fa2baf Iustin Pop
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 e2fa2baf Iustin Pop
General Public License for more details.
18 e2fa2baf Iustin Pop
19 e2fa2baf Iustin Pop
You should have received a copy of the GNU General Public License
20 e2fa2baf Iustin Pop
along with this program; if not, write to the Free Software
21 e2fa2baf Iustin Pop
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 e2fa2baf Iustin Pop
02110-1301, USA.
23 e2fa2baf Iustin Pop
24 e2fa2baf Iustin Pop
-}
25 e2fa2baf Iustin Pop
26 c478f837 Iustin Pop
{-# LANGUAGE BangPatterns, CPP #-}
27 c9224fa4 Iustin Pop
28 669d7e3d Iustin Pop
module Ganeti.HTools.Rapi
29 dd4c56ed Iustin Pop
    (
30 040afc35 Iustin Pop
      loadData
31 748bfcc2 Iustin Pop
    , parseData
32 dd4c56ed Iustin Pop
    ) where
33 a7654563 Iustin Pop
34 3986684e Iustin Pop
import Data.Maybe (fromMaybe)
35 c478f837 Iustin Pop
#ifndef NO_CURL
36 a7654563 Iustin Pop
import Network.Curl
37 b8b9a53c Iustin Pop
import Network.Curl.Types ()
38 c478f837 Iustin Pop
#endif
39 a7654563 Iustin Pop
import Control.Monad
40 ea017cbc Iustin Pop
import Text.JSON (JSObject, JSValue, fromJSObject, decodeStrict)
41 6402a260 Iustin Pop
import Text.JSON.Types (JSValue(..))
42 a7654563 Iustin Pop
import Text.Printf (printf)
43 040afc35 Iustin Pop
44 9ba5c28f Iustin Pop
import Ganeti.HTools.Utils
45 040afc35 Iustin Pop
import Ganeti.HTools.Loader
46 e4c5beaf Iustin Pop
import Ganeti.HTools.Types
47 a679e9dc Iustin Pop
import qualified Ganeti.HTools.Group as Group
48 040afc35 Iustin Pop
import qualified Ganeti.HTools.Node as Node
49 040afc35 Iustin Pop
import qualified Ganeti.HTools.Instance as Instance
50 a7654563 Iustin Pop
51 c478f837 Iustin Pop
-- | Read an URL via curl and return the body if successful.
52 c478f837 Iustin Pop
getUrl :: (Monad m) => String -> IO (m String)
53 c478f837 Iustin Pop
54 c478f837 Iustin Pop
#ifdef NO_CURL
55 c478f837 Iustin Pop
getUrl _ = return $ fail "RAPI/curl backend disabled at compile time"
56 c478f837 Iustin Pop
57 c478f837 Iustin Pop
#else
58 c478f837 Iustin Pop
59 4d8e5008 Iustin Pop
-- | The curl options we use
60 4d8e5008 Iustin Pop
curlOpts :: [CurlOption]
61 4d8e5008 Iustin Pop
curlOpts = [ CurlSSLVerifyPeer False
62 4d8e5008 Iustin Pop
           , CurlSSLVerifyHost 0
63 4d8e5008 Iustin Pop
           , CurlTimeout (fromIntegral queryTimeout)
64 4d8e5008 Iustin Pop
           , CurlConnectTimeout (fromIntegral connTimeout)
65 4d8e5008 Iustin Pop
           ]
66 4d8e5008 Iustin Pop
67 a7654563 Iustin Pop
getUrl url = do
68 c9224fa4 Iustin Pop
  (code, !body) <- curlGetString url curlOpts
69 a7654563 Iustin Pop
  return (case code of
70 ba00ad4d Iustin Pop
            CurlOK -> return body
71 ba00ad4d Iustin Pop
            _ -> fail $ printf "Curl error for '%s', error %s"
72 aab26f2d Iustin Pop
                 url (show code))
73 c478f837 Iustin Pop
#endif
74 aab26f2d Iustin Pop
75 9188aeef Iustin Pop
-- | Append the default port if not passed in.
76 e015b554 Iustin Pop
formatHost :: String -> String
77 e015b554 Iustin Pop
formatHost master =
78 5182e970 Iustin Pop
    if ':' `elem` master then  master
79 e015b554 Iustin Pop
    else "https://" ++ master ++ ":5080"
80 e015b554 Iustin Pop
81 9188aeef Iustin Pop
-- | Parse a instance list in JSON format.
82 040afc35 Iustin Pop
getInstances :: NameAssoc
83 040afc35 Iustin Pop
             -> String
84 040afc35 Iustin Pop
             -> Result [(String, Instance.Instance)]
85 262f3e6c Iustin Pop
getInstances ktn body =
86 c8b662f1 Iustin Pop
    loadJSArray "Parsing instance data" body >>=
87 c8b662f1 Iustin Pop
    mapM (parseInstance ktn . fromJSObject)
88 a7654563 Iustin Pop
89 9188aeef Iustin Pop
-- | Parse a node list in JSON format.
90 10ef6b4e Iustin Pop
getNodes :: NameAssoc -> String -> Result [(String, Node.Node)]
91 10ef6b4e Iustin Pop
getNodes ktg body = loadJSArray "Parsing node data" body >>=
92 10ef6b4e Iustin Pop
                mapM (parseNode ktg . fromJSObject)
93 a7654563 Iustin Pop
94 a679e9dc Iustin Pop
-- | Parse a group list in JSON format.
95 a679e9dc Iustin Pop
getGroups :: String -> Result [(String, Group.Group)]
96 a679e9dc Iustin Pop
getGroups body = loadJSArray "Parsing group data" body >>=
97 a679e9dc Iustin Pop
                mapM (parseGroup . fromJSObject)
98 a679e9dc Iustin Pop
99 fd3fe74d Iustin Pop
getFakeGroups :: Result [(String, Group.Group)]
100 fd3fe74d Iustin Pop
getFakeGroups =
101 d5072e4c Iustin Pop
  return [(defaultGroupID,
102 d5072e4c Iustin Pop
           Group.create "default" defaultGroupID AllocPreferred)]
103 fd3fe74d Iustin Pop
104 9188aeef Iustin Pop
-- | Construct an instance from a JSON object.
105 6ff78049 Iustin Pop
parseInstance :: NameAssoc
106 262f3e6c Iustin Pop
              -> [(String, JSValue)]
107 040afc35 Iustin Pop
              -> Result (String, Instance.Instance)
108 040afc35 Iustin Pop
parseInstance ktn a = do
109 117dc2d8 Iustin Pop
  name <- tryFromObj "Parsing new instance" a "name"
110 6a062ff9 Iustin Pop
  let owner_name = "Instance '" ++ name ++ "', error while parsing data"
111 6402a260 Iustin Pop
  let extract s x = tryFromObj owner_name x s
112 117dc2d8 Iustin Pop
  disk <- extract "disk_usage" a
113 117dc2d8 Iustin Pop
  beparams <- liftM fromJSObject (extract "beparams" a)
114 6402a260 Iustin Pop
  omem <- extract "oper_ram" a
115 6402a260 Iustin Pop
  mem <- (case omem of
116 6402a260 Iustin Pop
            JSRational _ _ -> annotateResult owner_name (fromJVal omem)
117 6402a260 Iustin Pop
            _ -> extract "memory" beparams)
118 117dc2d8 Iustin Pop
  vcpus <- extract "vcpus" beparams
119 117dc2d8 Iustin Pop
  pnode <- extract "pnode" a >>= lookupNode ktn name
120 117dc2d8 Iustin Pop
  snodes <- extract "snodes" a
121 040afc35 Iustin Pop
  snode <- (if null snodes then return Node.noSecondary
122 040afc35 Iustin Pop
            else readEitherString (head snodes) >>= lookupNode ktn name)
123 117dc2d8 Iustin Pop
  running <- extract "status" a
124 17e7af2b Iustin Pop
  tags <- extract "tags" a
125 a041ebb5 Iustin Pop
  auto_balance <- extract "auto_balance" beparams
126 a041ebb5 Iustin Pop
  let inst = Instance.create name mem disk vcpus running tags
127 a041ebb5 Iustin Pop
             auto_balance pnode snode
128 040afc35 Iustin Pop
  return (name, inst)
129 a7654563 Iustin Pop
130 9188aeef Iustin Pop
-- | Construct a node from a JSON object.
131 10ef6b4e Iustin Pop
parseNode :: NameAssoc -> [(String, JSValue)] -> Result (String, Node.Node)
132 10ef6b4e Iustin Pop
parseNode ktg a = do
133 117dc2d8 Iustin Pop
  name <- tryFromObj "Parsing new node" a "name"
134 6a062ff9 Iustin Pop
  let desc = "Node '" ++ name ++ "', error while parsing data"
135 3986684e Iustin Pop
      extract s = tryFromObj desc a s
136 117dc2d8 Iustin Pop
  offline <- extract "offline"
137 b45222ce Iustin Pop
  drained <- extract "drained"
138 3986684e Iustin Pop
  vm_cap  <- annotateResult desc $ maybeFromObj a "vm_capable"
139 3986684e Iustin Pop
  let vm_cap' = fromMaybe True vm_cap
140 3986684e Iustin Pop
  guuid   <- annotateResult desc $ maybeFromObj a "group.uuid"
141 3986684e Iustin Pop
  guuid' <-  lookupGroup ktg name (fromMaybe defaultGroupID guuid)
142 3986684e Iustin Pop
  node <- (if offline || drained || not vm_cap'
143 3986684e Iustin Pop
           then return $ Node.create name 0 0 0 0 0 0 True guuid'
144 262f3e6c Iustin Pop
           else do
145 117dc2d8 Iustin Pop
             mtotal  <- extract "mtotal"
146 117dc2d8 Iustin Pop
             mnode   <- extract "mnode"
147 117dc2d8 Iustin Pop
             mfree   <- extract "mfree"
148 117dc2d8 Iustin Pop
             dtotal  <- extract "dtotal"
149 117dc2d8 Iustin Pop
             dfree   <- extract "dfree"
150 117dc2d8 Iustin Pop
             ctotal  <- extract "ctotal"
151 262f3e6c Iustin Pop
             return $ Node.create name mtotal mnode mfree
152 3986684e Iustin Pop
                    dtotal dfree ctotal False guuid')
153 262f3e6c Iustin Pop
  return (name, node)
154 00b15752 Iustin Pop
155 a679e9dc Iustin Pop
-- | Construct a group from a JSON object.
156 a679e9dc Iustin Pop
parseGroup :: [(String, JSValue)] -> Result (String, Group.Group)
157 a679e9dc Iustin Pop
parseGroup a = do
158 a679e9dc Iustin Pop
  name <- tryFromObj "Parsing new group" a "name"
159 a679e9dc Iustin Pop
  let extract s = tryFromObj ("Group '" ++ name ++ "'") a s
160 a679e9dc Iustin Pop
  uuid <- extract "uuid"
161 2ddabf4f Iustin Pop
  apol <- extract "alloc_policy"
162 2ddabf4f Iustin Pop
  return (uuid, Group.create name uuid apol)
163 a679e9dc Iustin Pop
164 748bfcc2 Iustin Pop
-- | Loads the raw cluster data from an URL.
165 748bfcc2 Iustin Pop
readData :: String -- ^ Cluster or URL to use as source
166 a679e9dc Iustin Pop
         -> IO (Result String, Result String, Result String, Result String)
167 748bfcc2 Iustin Pop
readData master = do
168 040afc35 Iustin Pop
  let url = formatHost master
169 a679e9dc Iustin Pop
  group_body <- getUrl $ printf "%s/2/groups?bulk=1" url
170 040afc35 Iustin Pop
  node_body <- getUrl $ printf "%s/2/nodes?bulk=1" url
171 040afc35 Iustin Pop
  inst_body <- getUrl $ printf "%s/2/instances?bulk=1" url
172 ea017cbc Iustin Pop
  tags_body <- getUrl $ printf "%s/2/tags" url
173 a679e9dc Iustin Pop
  return (group_body, node_body, inst_body, tags_body)
174 748bfcc2 Iustin Pop
175 748bfcc2 Iustin Pop
-- | Builds the cluster data from the raw Rapi content
176 a679e9dc Iustin Pop
parseData :: (Result String, Result String, Result String, Result String)
177 f4f6eb0b Iustin Pop
          -> Result ClusterData
178 a679e9dc Iustin Pop
parseData (group_body, node_body, inst_body, tags_body) = do
179 fd3fe74d Iustin Pop
  group_data <-
180 fd3fe74d Iustin Pop
      -- TODO: handle different ganeti versions properly, not via "all
181 fd3fe74d Iustin Pop
      -- errors mean Ganeti 2.3"
182 fd3fe74d Iustin Pop
      case group_body of
183 fd3fe74d Iustin Pop
        Bad _ -> getFakeGroups
184 fd3fe74d Iustin Pop
        Ok v -> getGroups v
185 10ef6b4e Iustin Pop
  let (group_names, group_idx) = assignIndices group_data
186 10ef6b4e Iustin Pop
  node_data <- node_body >>= getNodes group_names
187 748bfcc2 Iustin Pop
  let (node_names, node_idx) = assignIndices node_data
188 748bfcc2 Iustin Pop
  inst_data <- inst_body >>= getInstances node_names
189 748bfcc2 Iustin Pop
  let (_, inst_idx) = assignIndices inst_data
190 748bfcc2 Iustin Pop
  tags_data <- tags_body >>= (fromJResult "Parsing tags data" . decodeStrict)
191 f4f6eb0b Iustin Pop
  return (ClusterData group_idx node_idx inst_idx tags_data)
192 748bfcc2 Iustin Pop
193 748bfcc2 Iustin Pop
-- | Top level function for data loading
194 748bfcc2 Iustin Pop
loadData :: String -- ^ Cluster or URL to use as source
195 f4f6eb0b Iustin Pop
         -> IO (Result ClusterData)
196 2a8e2dc9 Iustin Pop
loadData = fmap parseData . readData