Statistics
| Branch: | Tag: | Revision:

root / scripts / gnt-debug @ 07813a9e

History | View | Annotate | Download (6.3 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 optparse import make_option
31

    
32
from ganeti.cli import *
33
from ganeti import cli
34
from ganeti import opcodes
35
from ganeti import constants
36
from ganeti import utils
37
from ganeti import errors
38

    
39

    
40
def Delay(opts, args):
41
  """Sleeps for a while
42

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

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

    
57
  return 0
58

    
59

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

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

    
72
  """
73
  cl = cli.GetClient()
74
  fname = args[0]
75
  op_data = simplejson.loads(open(fname).read())
76
  op_list = [opcodes.OpCode.LoadOpCode(val) for val in op_data]
77
  jid = cli.SendJob(op_list, cl=cl)
78
  ToStdout("Job id: %s", jid)
79
  cli.PollJob(jid, cl=cl)
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, ARGS_ONE,
133
            [DEBUG_OPT,
134
             make_option("--no-master", dest="on_master", default=True,
135
                         action="store_false",
136
                         help="Do not sleep in the master code"),
137
             make_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, ARGS_ONE,
143
                 [DEBUG_OPT,
144
                  ],
145
                 "<op_list_file>", "Submits a job built from a json-file"
146
                 " with a list of serialized opcodes"),
147
  'allocator': (TestAllocator, ARGS_ONE,
148
                [DEBUG_OPT,
149
                 make_option("--dir", dest="direction",
150
                             default="in", choices=["in", "out"],
151
                             help="Show allocator input (in) or allocator"
152
                             " results (out)"),
153
                 make_option("--algorithm", dest="allocator",
154
                             default=None,
155
                             help="Allocator algorithm name"),
156
                 make_option("-m", "--mode", default="relocate",
157
                             choices=["relocate", "allocate"],
158
                             help="Request mode, either allocate or"
159
                             " relocate"),
160
                 cli_option("--mem", default=128, type="unit",
161
                            help="Memory size for the instance (MiB)"),
162
                 make_option("--disks", default="4096,4096",
163
                             help="Comma separated list of disk sizes (MiB)"),
164
                 make_option("-t", "--disk-template", default="drbd",
165
                             help="Select the disk template"),
166
                 make_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
                 make_option("-o", "--os-type", default=None,
171
                             help="Select os for the instance"),
172
                 make_option("-p", "--vcpus", default=1, type="int",
173
                             help="Select number of VCPUs for the instance"),
174
                 make_option("--tags", default=None,
175
                             help="Comma separated list of tags"),
176
                 ],
177
                "{opts...} <instance>", "Executes a TestAllocator OpCode"),
178
  }
179

    
180

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