{-# LANGUAGE TemplateHaskell #-}

{-| The Ganeti WConfd client functions.

The client functions are automatically generated from Ganeti.WConfd.Core

-}

{-

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.WConfd.Client where

import Control.Exception.Lifted (bracket)

import Ganeti.THH.HsRPC
import Ganeti.Constants
import Ganeti.JSON (unMaybeForJSON)
import Ganeti.Locking.Locks (ClientId)
import Ganeti.Objects (ConfigData)
import Ganeti.UDSServer (ConnectConfig(..), Client, connectClient)
import Ganeti.WConfd.Core (exportedFunctions)

-- * Generated client functions

$(mkRpcCalls exportedFunctions)

-- * Helper functions for creating the client

-- | The default WConfd client configuration
wconfdConnectConfig :: ConnectConfig
wconfdConnectConfig = ConnectConfig { recvTmo    = wconfdDefRwto
                                    , sendTmo    = wconfdDefRwto
                                    }

-- | Given a socket path, creates a WConfd client with the default
-- configuration and timeout.
getWConfdClient :: FilePath -> IO Client
getWConfdClient = connectClient wconfdConnectConfig wconfdDefCtmo

-- * Helper functions for getting a remote lock

-- | Calls the `lockConfig` RPC until the lock is obtained.
waitLockConfig :: ClientId
               -> Bool  -- ^ whether the lock shall be in shared mode
               -> RpcClientMonad ConfigData
waitLockConfig c shared = do
  mConfigData <- lockConfig c shared
  case unMaybeForJSON mConfigData of
    Just configData -> return configData
    Nothing         -> waitLockConfig c shared

-- | Calls the `lockConfig` RPC until the lock is obtained,
-- runs a function on the obtained config, and calls `unlockConfig`.
withLockedConfig :: ClientId
                 -> Bool  -- ^ whether the lock shall be in shared mode
                 -> (ConfigData -> RpcClientMonad a)  -- ^ action to run
                 -> RpcClientMonad a
withLockedConfig c shared =
  -- Unlock config even if something throws.
  bracket (waitLockConfig c shared) (const $ unlockConfig c)