Statistics
| Branch: | Tag: | Revision:

root / htools / Ganeti / OpCodes.hs @ 10028866

History | View | Annotate | Download (5.1 kB)

1
{-| Implementation of the opcodes.
2

    
3
-}
4

    
5
{-
6

    
7
Copyright (C) 2009, 2010, 2011 Google Inc.
8

    
9
This program is free software; you can redistribute it and/or modify
10
it under the terms of the GNU General Public License as published by
11
the Free Software Foundation; either version 2 of the License, or
12
(at your option) any later version.
13

    
14
This program is distributed in the hope that it will be useful, but
15
WITHOUT ANY WARRANTY; without even the implied warranty of
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
General Public License for more details.
18

    
19
You should have received a copy of the GNU General Public License
20
along with this program; if not, write to the Free Software
21
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22
02110-1301, USA.
23

    
24
-}
25

    
26
module Ganeti.OpCodes
27
    ( OpCode(..)
28
    , ReplaceDisksMode(..)
29
    , opID
30
    ) where
31

    
32
import Control.Monad
33
import Text.JSON (readJSON, showJSON, makeObj, JSON)
34
import qualified Text.JSON as J
35
import Text.JSON.Types
36

    
37
import Ganeti.HTools.Utils
38

    
39
data ReplaceDisksMode = ReplaceOnPrimary
40
                  | ReplaceOnSecondary
41
                  | ReplaceNewSecondary
42
                  | ReplaceAuto
43
                  deriving (Show, Read, Eq)
44

    
45
instance JSON ReplaceDisksMode where
46
    showJSON m = case m of
47
                 ReplaceOnPrimary -> showJSON "replace_on_primary"
48
                 ReplaceOnSecondary -> showJSON "replace_on_secondary"
49
                 ReplaceNewSecondary -> showJSON "replace_new_secondary"
50
                 ReplaceAuto -> showJSON "replace_auto"
51
    readJSON s = case readJSON s of
52
                   J.Ok "replace_on_primary" -> J.Ok ReplaceOnPrimary
53
                   J.Ok "replace_on_secondary" -> J.Ok ReplaceOnSecondary
54
                   J.Ok "replace_new_secondary" -> J.Ok ReplaceNewSecondary
55
                   J.Ok "replace_auto" -> J.Ok ReplaceAuto
56
                   _ -> J.Error "Can't parse a valid ReplaceDisksMode"
57

    
58
data OpCode = OpTestDelay Double Bool [String]
59
            | OpInstanceReplaceDisks String (Maybe String) ReplaceDisksMode
60
              [Int] (Maybe String)
61
            | OpInstanceFailover String Bool
62
            | OpInstanceMigrate String Bool Bool Bool
63
            deriving (Show, Read, Eq)
64

    
65

    
66
opID :: OpCode -> String
67
opID (OpTestDelay _ _ _) = "OP_TEST_DELAY"
68
opID (OpInstanceReplaceDisks _ _ _ _ _) = "OP_INSTANCE_REPLACE_DISKS"
69
opID (OpInstanceFailover _ _) = "OP_INSTANCE_FAILOVER"
70
opID (OpInstanceMigrate _ _ _ _) = "OP_INSTANCE_MIGRATE"
71

    
72
loadOpCode :: JSValue -> J.Result OpCode
73
loadOpCode v = do
74
  o <- liftM J.fromJSObject (readJSON v)
75
  let extract x = fromObj o x
76
  op_id <- extract "OP_ID"
77
  case op_id of
78
    "OP_TEST_DELAY" -> do
79
                 on_nodes  <- extract "on_nodes"
80
                 on_master <- extract "on_master"
81
                 duration  <- extract "duration"
82
                 return $ OpTestDelay duration on_master on_nodes
83
    "OP_INSTANCE_REPLACE_DISKS" -> do
84
                 inst   <- extract "instance_name"
85
                 node   <- maybeFromObj o "remote_node"
86
                 mode   <- extract "mode"
87
                 disks  <- extract "disks"
88
                 ialloc <- maybeFromObj o "iallocator"
89
                 return $ OpInstanceReplaceDisks inst node mode disks ialloc
90
    "OP_INSTANCE_FAILOVER" -> do
91
                 inst    <- extract "instance_name"
92
                 consist <- extract "ignore_consistency"
93
                 return $ OpInstanceFailover inst consist
94
    "OP_INSTANCE_MIGRATE" -> do
95
                 inst    <- extract "instance_name"
96
                 live    <- extract "live"
97
                 cleanup <- extract "cleanup"
98
                 allow_failover <- fromObjWithDefault o "allow_failover" False
99
                 return $ OpInstanceMigrate inst live cleanup allow_failover
100
    _ -> J.Error $ "Unknown opcode " ++ op_id
101

    
102
saveOpCode :: OpCode -> JSValue
103
saveOpCode op@(OpTestDelay duration on_master on_nodes) =
104
    let ol = [ ("OP_ID", showJSON $ opID op)
105
             , ("duration", showJSON duration)
106
             , ("on_master", showJSON on_master)
107
             , ("on_nodes", showJSON on_nodes) ]
108
    in makeObj ol
109

    
110
saveOpCode op@(OpInstanceReplaceDisks inst node mode disks iallocator) =
111
    let ol = [ ("OP_ID", showJSON $ opID op)
112
             , ("instance_name", showJSON inst)
113
             , ("mode", showJSON mode)
114
             , ("disks", showJSON disks)]
115
        ol2 = case node of
116
                Just n -> ("remote_node", showJSON n):ol
117
                Nothing -> ol
118
        ol3 = case iallocator of
119
                Just i -> ("iallocator", showJSON i):ol2
120
                Nothing -> ol2
121
    in makeObj ol3
122

    
123
saveOpCode op@(OpInstanceFailover inst consist) =
124
    let ol = [ ("OP_ID", showJSON $ opID op)
125
             , ("instance_name", showJSON inst)
126
             , ("ignore_consistency", showJSON consist) ]
127
    in makeObj ol
128

    
129
saveOpCode op@(OpInstanceMigrate inst live cleanup allow_failover) =
130
    let ol = [ ("OP_ID", showJSON $ opID op)
131
             , ("instance_name", showJSON inst)
132
             , ("live", showJSON live)
133
             , ("cleanup", showJSON cleanup)
134
             , ("allow_failover", showJSON allow_failover) ]
135
    in makeObj ol
136

    
137
instance JSON OpCode where
138
    readJSON = loadOpCode
139
    showJSON = saveOpCode