{-| Tags This module holds all the tag interpretation done by htools. -} {- Copyright (C) 2014 Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -} module Ganeti.HTools.Tags ( exTagsPrefix , standbyAuto , hasStandbyTag , autoRepairTagPrefix , autoRepairTagEnabled , autoRepairTagPending , autoRepairTagResult , autoRepairTagSuspended , getMigRestrictions , getRecvMigRestrictions , getLocations ) where import Control.Monad (guard, (>=>)) import Data.List (isPrefixOf, isInfixOf, stripPrefix) import Data.Maybe (mapMaybe) import qualified Data.Set as S import qualified Ganeti.HTools.Node as Node -- * Constants -- | The exclusion tag prefix. Instance tags starting with this prefix -- describe a service provided by the instance. Instances providing the -- same service at not places on the same node. exTagsPrefix :: String exTagsPrefix = "htools:iextags:" -- | The tag-prefix indicating that hsqueeze should consider a node -- as being standby. standbyPrefix :: String standbyPrefix = "htools:standby:" -- | The prefix for migration tags migrationPrefix :: String migrationPrefix = "htools:migration:" -- | Prefix of tags allowing migration allowMigrationPrefix :: String allowMigrationPrefix = "htools:allowmigration:" -- | The prefix for location tags. locationPrefix :: String locationPrefix = "htools:nlocation:" -- | The tag to be added to nodes that were shutdown by hsqueeze. standbyAuto :: String standbyAuto = "htools:standby:auto" -- | Auto-repair tag prefix autoRepairTagPrefix :: String autoRepairTagPrefix = "ganeti:watcher:autorepair:" autoRepairTagEnabled :: String autoRepairTagEnabled = autoRepairTagPrefix autoRepairTagPending :: String autoRepairTagPending = autoRepairTagPrefix ++ "pending:" autoRepairTagResult :: String autoRepairTagResult = autoRepairTagPrefix ++ "result:" autoRepairTagSuspended :: String autoRepairTagSuspended = autoRepairTagPrefix ++ "suspend:" -- * Predicates -- | Predicate of having a standby tag. hasStandbyTag :: Node.Node -> Bool hasStandbyTag = any (standbyPrefix `isPrefixOf`) . Node.nTags -- * Utility functions -- | Htools standard tag extraction. Given a set of cluster tags, -- take those starting with a specific prefix, strip the prefix -- and append a colon, and then take those node tags starting with -- one of those strings. getTags :: String -> [String] -> [String] -> S.Set String getTags prefix ctags ntags = S.fromList (mapMaybe (stripPrefix prefix) ctags >>= \ p -> filter ((p ++ ":") `isPrefixOf`) ntags) -- * Migration restriction tags -- | Given the cluster tags extract the migration restrictions -- from a node tag. getMigRestrictions :: [String] -> [String] -> S.Set String getMigRestrictions = getTags migrationPrefix -- | Maybe split a string on the first single occurence of "::" return -- the parts before and after. splitAtColons :: String -> Maybe (String, String) splitAtColons (':':':':xs) = do guard $ not ("::" `isInfixOf` xs) return ("", xs) splitAtColons (x:xs) = do (as, bs) <- splitAtColons xs return (x:as, bs) splitAtColons _ = Nothing -- | Get the pairs of allowed migrations from a set of cluster tags. migrations :: [String] -> [(String, String)] migrations = mapMaybe $ stripPrefix allowMigrationPrefix >=> splitAtColons -- | Given the cluster tags, extract the set of migration restrictions -- a node is able to receive from its node tags. getRecvMigRestrictions :: [String] -> [String] -> S.Set String getRecvMigRestrictions ctags ntags = let migs = migrations ctags closure tag = (:) tag . map fst $ filter ((==) tag . snd) migs in S.fromList $ S.elems (getMigRestrictions ctags ntags) >>= closure -- * Location tags -- | Given the cluster tags, extract the node location tags -- from the node tags. getLocations :: [String] -> [String] -> S.Set String getLocations = getTags locationPrefix