Statistics
| Branch: | Tag: | Revision:

root / scripts / gnt-debug @ 13998ef2

History | View | Annotate | Download (6.5 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2006, 2007 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
# pylint: disable-msg=W0401,W0614
23
# W0401: Wildcard import ganeti.cli
24
# W0614: Unused import %s from wildcard import (since we need cli)
25

    
26
import sys
27
import simplejson
28
import time
29

    
30
from ganeti.cli import *
31
from ganeti import cli
32
from ganeti import opcodes
33
from ganeti import constants
34
from ganeti import utils
35
from ganeti import errors
36

    
37

    
38
def Delay(opts, args):
39
  """Sleeps for a while
40

    
41
  @param opts: the command line options selected by the user
42
  @type args: list
43
  @param args: should contain only one element, the duration
44
      the sleep
45
  @rtype: int
46
  @return: the desired exit code
47

    
48
  """
49
  delay = float(args[0])
50
  op = opcodes.OpTestDelay(duration=delay,
51
                           on_master=opts.on_master,
52
                           on_nodes=opts.on_nodes)
53
  SubmitOpCode(op)
54

    
55
  return 0
56

    
57

    
58
def GenericOpCodes(opts, args):
59
  """Send any opcode to the master.
60

    
61
  @todo: The function is broken and needs to be converted to the
62
      current job queue API
63
  @param opts: the command line options selected by the user
64
  @type args: list
65
  @param args: should contain only one element, the path of
66
      the file with the opcode definition
67
  @rtype: int
68
  @return: the desired exit code
69

    
70
  """
71
  cl = cli.GetClient()
72
  jex = cli.JobExecutor(cl=cl)
73

    
74
  for fname in args:
75
    op_data = simplejson.loads(utils.ReadFile(fname))
76
    op_list = [opcodes.OpCode.LoadOpCode(val) for val in op_data]
77
    jex.QueueJob("file %s" % fname, *op_list)
78

    
79
  jex.GetResults()
80
  return 0
81

    
82

    
83
def TestAllocator(opts, args):
84
  """Runs the test allocator opcode.
85

    
86
  @param opts: the command line options selected by the user
87
  @type args: list
88
  @param args: should contain only one element, the iallocator name
89
  @rtype: int
90
  @return: the desired exit code
91

    
92
  """
93
  try:
94
    disks = [{"size": utils.ParseUnit(val), "mode": 'w'}
95
             for val in opts.disks.split(",")]
96
  except errors.UnitParseError, err:
97
    ToStderr("Invalid disks parameter '%s': %s", opts.disks, err)
98
    return 1
99

    
100
  nics = [val.split("/") for val in opts.nics.split(",")]
101
  for row in nics:
102
    while len(row) < 3:
103
      row.append(None)
104
    for i in range(3):
105
      if row[i] == '':
106
        row[i] = None
107
  nic_dict = [{"mac": v[0], "ip": v[1], "bridge": v[2]} for v in nics]
108

    
109
  if opts.tags is None:
110
    opts.tags = []
111
  else:
112
    opts.tags = opts.tags.split(",")
113

    
114
  op = opcodes.OpTestAllocator(mode=opts.mode,
115
                               name=args[0],
116
                               mem_size=opts.mem,
117
                               disks=disks,
118
                               disk_template=opts.disk_template,
119
                               nics=nic_dict,
120
                               os=opts.os_type,
121
                               vcpus=opts.vcpus,
122
                               tags=opts.tags,
123
                               direction=opts.direction,
124
                               allocator=opts.allocator,
125
                               )
126
  result = SubmitOpCode(op)
127
  ToStdout("%s" % result)
128
  return 0
129

    
130

    
131
commands = {
132
  'delay': (Delay, [ArgUnknown(min=1, max=1)],
133
            [DEBUG_OPT,
134
             cli_option("--no-master", dest="on_master", default=True,
135
                        action="store_false",
136
                        help="Do not sleep in the master code"),
137
             cli_option("-n", dest="on_nodes", default=[],
138
                        action="append",
139
                        help="Select nodes to sleep on"),
140
             ],
141
            "[opts...] <duration>", "Executes a TestDelay OpCode"),
142
  'submit-job': (GenericOpCodes, [ArgFile(min=1)], [DEBUG_OPT],
143
                 "<op_list_file...>", "Submits jobs built from json files"
144
                 " containing a list of serialized opcodes"),
145
  'allocator': (TestAllocator, ARGS_ONE_INSTANCE,
146
                [DEBUG_OPT,
147
                 cli_option("--dir", dest="direction",
148
                            default="in", choices=["in", "out"],
149
                            help="Show allocator input (in) or allocator"
150
                            " results (out)"),
151
                 cli_option("--algorithm", dest="allocator",
152
                            default=None,
153
                            help="Allocator algorithm name",
154
                            completion_suggest=OPT_COMPL_ONE_IALLOCATOR),
155
                 cli_option("-m", "--mode", default="relocate",
156
                            choices=["relocate", "allocate"],
157
                            help="Request mode, either allocate or"
158
                            " relocate"),
159
                 cli_option("--mem", default=128, type="unit",
160
                            help="Memory size for the instance (MiB)"),
161
                 cli_option("--disks", default="4096,4096",
162
                            help="Comma separated list of disk sizes (MiB)"),
163
                 cli_option("-t", "--disk-template", default="drbd",
164
                            help="Select the disk template",
165
                            choices=list(constants.DISK_TEMPLATES)),
166
                 cli_option("--nics", default="00:11:22:33:44:55",
167
                            help="Comma separated list of nics, each nic"
168
                            " definition is of form mac/ip/bridge, if"
169
                            " missing values are replace by None"),
170
                 cli_option("-o", "--os-type", default=None,
171
                            help="Select os for the instance",
172
                            completion_suggest=OPT_COMPL_ONE_OS),
173
                 cli_option("-p", "--vcpus", default=1, type="int",
174
                            help="Select number of VCPUs for the instance"),
175
                 cli_option("--tags", default=None,
176
                            help="Comma separated list of tags"),
177
                 ],
178
                "{opts...} <instance>", "Executes a TestAllocator OpCode"),
179
  }
180

    
181

    
182
if __name__ == '__main__':
183
  sys.exit(GenericMain(commands))