Statistics
| Branch: | Tag: | Revision:

root / lib / wconfd.py @ 93f1e606

History | View | Annotate | Download (1.4 kB)

1
#
2
#
3

    
4
# Copyright (C) 2014 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Module for the WConfd protocol
23

24
"""
25

    
26
import ganeti.rpc.client as cl
27
import ganeti.rpc.stub.wconfd as stub
28
from ganeti.rpc.transport import Transport
29

    
30

    
31
class Client(cl.AbstractStubClient, stub.ClientRpcStub):
32
  """High-level WConfD client implementation.
33

34
  This uses a backing Transport-like class on top of which it
35
  implements data serialization/deserialization.
36

37
  """
38
  def __init__(self, timeouts=None, transport=Transport):
39
    """Constructor for the Client class.
40

41
    Arguments are the same as for L{AbstractClient}.
42

43
    """
44
    cl.AbstractStubClient.__init__(self, timeouts, transport)
45
    stub.ClientRpcStub.__init__(self)
46
    self._InitTransport()