Statistics
| Branch: | Tag: | Revision:

root / lib / cli.py @ d67e0a94

History | View | Annotate | Download (114.2 kB)

1 2f31098c Iustin Pop
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 d04c9d45 Iustin Pop
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Google Inc.
5 a8083063 Iustin Pop
#
6 a8083063 Iustin Pop
# This program is free software; you can redistribute it and/or modify
7 a8083063 Iustin Pop
# it under the terms of the GNU General Public License as published by
8 a8083063 Iustin Pop
# the Free Software Foundation; either version 2 of the License, or
9 a8083063 Iustin Pop
# (at your option) any later version.
10 a8083063 Iustin Pop
#
11 a8083063 Iustin Pop
# This program is distributed in the hope that it will be useful, but
12 a8083063 Iustin Pop
# WITHOUT ANY WARRANTY; without even the implied warranty of
13 a8083063 Iustin Pop
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 a8083063 Iustin Pop
# General Public License for more details.
15 a8083063 Iustin Pop
#
16 a8083063 Iustin Pop
# You should have received a copy of the GNU General Public License
17 a8083063 Iustin Pop
# along with this program; if not, write to the Free Software
18 a8083063 Iustin Pop
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 a8083063 Iustin Pop
# 02110-1301, USA.
20 a8083063 Iustin Pop
21 a8083063 Iustin Pop
22 a8083063 Iustin Pop
"""Module dealing with command line parsing"""
23 a8083063 Iustin Pop
24 a8083063 Iustin Pop
25 a8083063 Iustin Pop
import sys
26 a8083063 Iustin Pop
import textwrap
27 a8083063 Iustin Pop
import os.path
28 685ee993 Iustin Pop
import time
29 46fbdd04 Iustin Pop
import logging
30 225e2544 Iustin Pop
import errno
31 60452edf Michael Hanselmann
import itertools
32 ef9fa5b9 René Nussbaumer
import shlex
33 73702ee7 Iustin Pop
from cStringIO import StringIO
34 a8083063 Iustin Pop
35 a8083063 Iustin Pop
from ganeti import utils
36 a8083063 Iustin Pop
from ganeti import errors
37 a8083063 Iustin Pop
from ganeti import constants
38 846baef9 Iustin Pop
from ganeti import opcodes
39 ceab32dd Iustin Pop
from ganeti import luxi
40 b33e986b Iustin Pop
from ganeti import ssconf
41 4331f6cd Michael Hanselmann
from ganeti import rpc
42 7e49b6ce Michael Hanselmann
from ganeti import ssh
43 cea881e5 Michael Hanselmann
from ganeti import compat
44 a744b676 Manuel Franceschini
from ganeti import netutils
45 ee3aedff Michael Hanselmann
from ganeti import qlang
46 703fa9ab Iustin Pop
from ganeti import objects
47 a8083063 Iustin Pop
48 bf5338b3 Michael Hanselmann
from optparse import (OptionParser, TitledHelpFormatter,
49 38206f3c Iustin Pop
                      Option, OptionValueError)
50 a8083063 Iustin Pop
51 03298ebe Michael Hanselmann
52 4abc4f1e Iustin Pop
__all__ = [
53 4abc4f1e Iustin Pop
  # Command line options
54 ef8270dc Iustin Pop
  "ABSOLUTE_OPT",
55 fdad8c4d Balazs Lecz
  "ADD_UIDS_OPT",
56 e7e09483 Iustin Pop
  "ALLOCATABLE_OPT",
57 90e99856 Adeodato Simo
  "ALLOC_POLICY_OPT",
58 2d5e7ae1 Iustin Pop
  "ALL_OPT",
59 e9c487be René Nussbaumer
  "ALLOW_FAILOVER_OPT",
60 4c61d894 Iustin Pop
  "AUTO_PROMOTE_OPT",
61 e00f7a05 Iustin Pop
  "AUTO_REPLACE_OPT",
62 087ed2ed Iustin Pop
  "BACKEND_OPT",
63 61a14bb3 Iustin Pop
  "BLK_OS_OPT",
64 f91e255a Iustin Pop
  "CAPAB_MASTER_OPT",
65 53919782 Iustin Pop
  "CAPAB_VM_OPT",
66 baef337d Iustin Pop
  "CLEANUP_OPT",
67 3db3eb2a Michael Hanselmann
  "CLUSTER_DOMAIN_SECRET_OPT",
68 4abc4f1e Iustin Pop
  "CONFIRM_OPT",
69 e32df528 Iustin Pop
  "CP_SIZE_OPT",
70 4abc4f1e Iustin Pop
  "DEBUG_OPT",
71 a0c9776a Iustin Pop
  "DEBUG_SIMERR_OPT",
72 4b038a1e Iustin Pop
  "DISKIDX_OPT",
73 e3876ccb Iustin Pop
  "DISK_OPT",
74 bc5d0215 Andrea Spadaccini
  "DISK_PARAMS_OPT",
75 4b038a1e Iustin Pop
  "DISK_TEMPLATE_OPT",
76 771734c9 Iustin Pop
  "DRAINED_OPT",
77 a0a6ff34 Iustin Pop
  "DRY_RUN_OPT",
78 26591bfd Luca Bigliardi
  "DRBD_HELPER_OPT",
79 1b7761fd Apollon Oikonomopoulos
  "DST_NODE_OPT",
80 7ea7bcf6 Iustin Pop
  "EARLY_RELEASE_OPT",
81 383a3591 Iustin Pop
  "ENABLED_HV_OPT",
82 14e9e7f3 Iustin Pop
  "ERROR_CODES_OPT",
83 4abc4f1e Iustin Pop
  "FIELDS_OPT",
84 4a25828c Iustin Pop
  "FILESTORE_DIR_OPT",
85 0f87c43e Iustin Pop
  "FILESTORE_DRIVER_OPT",
86 442587bf Michael Hanselmann
  "FORCE_FILTER_OPT",
87 06073e85 Guido Trotter
  "FORCE_OPT",
88 06073e85 Guido Trotter
  "FORCE_VARIANT_OPT",
89 29392516 Iustin Pop
  "GLOBAL_FILEDIR_OPT",
90 61a14bb3 Iustin Pop
  "HID_OS_OPT",
91 4b97f902 Apollon Oikonomopoulos
  "GLOBAL_SHARED_FILEDIR_OPT",
92 073271f6 Iustin Pop
  "HVLIST_OPT",
93 48f212d7 Iustin Pop
  "HVOPTS_OPT",
94 236fd9c4 Iustin Pop
  "HYPERVISOR_OPT",
95 4eb62659 Iustin Pop
  "IALLOCATOR_OPT",
96 bf4af505 Apollon Oikonomopoulos
  "DEFAULT_IALLOCATOR_OPT",
97 e588764d Iustin Pop
  "IDENTIFY_DEFAULTS_OPT",
98 82a786d5 Iustin Pop
  "IGNORE_CONSIST_OPT",
99 93f2399e Andrea Spadaccini
  "IGNORE_ERRORS_OPT",
100 b6e841a8 Iustin Pop
  "IGNORE_FAILURES_OPT",
101 b44bd844 Michael Hanselmann
  "IGNORE_OFFLINE_OPT",
102 8d8d650c Michael Hanselmann
  "IGNORE_REMOVE_FAILURES_OPT",
103 ee3f9578 Iustin Pop
  "IGNORE_SECONDARIES_OPT",
104 05586c90 Iustin Pop
  "IGNORE_SIZE_OPT",
105 19b9ba9a Michael Hanselmann
  "INTERVAL_OPT",
106 e3646f22 Iustin Pop
  "MAC_PREFIX_OPT",
107 3953242f Iustin Pop
  "MAINTAIN_NODE_HEALTH_OPT",
108 29392516 Iustin Pop
  "MASTER_NETDEV_OPT",
109 5a8648eb Andrea Spadaccini
  "MASTER_NETMASK_OPT",
110 771734c9 Iustin Pop
  "MC_OPT",
111 783a6c0b Iustin Pop
  "MIGRATION_MODE_OPT",
112 7d3a9fab Iustin Pop
  "NET_OPT",
113 6d4a1656 Michael Hanselmann
  "NEW_CLUSTER_CERT_OPT",
114 3db3eb2a Michael Hanselmann
  "NEW_CLUSTER_DOMAIN_SECRET_OPT",
115 6b7d5878 Michael Hanselmann
  "NEW_CONFD_HMAC_KEY_OPT",
116 6d4a1656 Michael Hanselmann
  "NEW_RAPI_CERT_OPT",
117 a14db5ff Iustin Pop
  "NEW_SECONDARY_OPT",
118 b6267745 Andrea Spadaccini
  "NEW_SPICE_CERT_OPT",
119 4fbc93dd Iustin Pop
  "NIC_PARAMS_OPT",
120 61413377 Stephen Shirley
  "NODE_FORCE_JOIN_OPT",
121 7edc4637 Iustin Pop
  "NODE_LIST_OPT",
122 990b7886 Iustin Pop
  "NODE_PLACEMENT_OPT",
123 5fbbd028 Guido Trotter
  "NODEGROUP_OPT",
124 a535cef7 René Nussbaumer
  "NODE_PARAMS_OPT",
125 dd94e9f6 René Nussbaumer
  "NODE_POWERED_OPT",
126 26591bfd Luca Bigliardi
  "NODRBD_STORAGE_OPT",
127 4abc4f1e Iustin Pop
  "NOHDR_OPT",
128 91e0748c Iustin Pop
  "NOIPCHECK_OPT",
129 25a8792c Iustin Pop
  "NO_INSTALL_OPT",
130 460d22be Iustin Pop
  "NONAMECHECK_OPT",
131 831040bf Iustin Pop
  "NOLVM_STORAGE_OPT",
132 29392516 Iustin Pop
  "NOMODIFY_ETCHOSTS_OPT",
133 b989b9d9 Ken Wehr
  "NOMODIFY_SSH_SETUP_OPT",
134 26023ecd Iustin Pop
  "NONICS_OPT",
135 f2a0828c Iustin Pop
  "NONLIVE_OPT",
136 14e9e7f3 Iustin Pop
  "NONPLUS1_OPT",
137 8c0b16f6 Guido Trotter
  "NORUNTIME_CHGS_OPT",
138 44c44832 Iustin Pop
  "NOSHUTDOWN_OPT",
139 edeb878a Iustin Pop
  "NOSTART_OPT",
140 fcdde7f2 Iustin Pop
  "NOSSH_KEYCHECK_OPT",
141 58371861 Iustin Pop
  "NOVOTING_OPT",
142 885a0fc4 Iustin Pop
  "NO_REMEMBER_OPT",
143 3f75b4f3 Iustin Pop
  "NWSYNC_OPT",
144 57de31c0 Agata Murawska
  "OFFLINE_INST_OPT",
145 57de31c0 Agata Murawska
  "ONLINE_INST_OPT",
146 a72d0a79 Iustin Pop
  "ON_PRIMARY_OPT",
147 feb09e6a Iustin Pop
  "ON_SECONDARY_OPT",
148 771734c9 Iustin Pop
  "OFFLINE_OPT",
149 062a7100 Iustin Pop
  "OSPARAMS_OPT",
150 d3ed23ff Iustin Pop
  "OS_OPT",
151 ff00c1a7 Iustin Pop
  "OS_SIZE_OPT",
152 41543d8b René Nussbaumer
  "OOB_TIMEOUT_OPT",
153 0c086a13 René Nussbaumer
  "POWER_DELAY_OPT",
154 b883637f René Nussbaumer
  "PREALLOC_WIPE_DISKS_OPT",
155 e7323b5e Manuel Franceschini
  "PRIMARY_IP_VERSION_OPT",
156 aafee533 Michael Hanselmann
  "PRIMARY_ONLY_OPT",
157 84a5b33c Michael Hanselmann
  "PRIORITY_OPT",
158 6d4a1656 Michael Hanselmann
  "RAPI_CERT_OPT",
159 b8d0f938 Iustin Pop
  "READD_OPT",
160 12054861 Iustin Pop
  "REBOOT_TYPE_OPT",
161 8d8d650c Michael Hanselmann
  "REMOVE_INSTANCE_OPT",
162 fdad8c4d Balazs Lecz
  "REMOVE_UIDS_OPT",
163 f38ea602 Iustin Pop
  "RESERVED_LVS_OPT",
164 2c0af7da Guido Trotter
  "RUNTIME_MEM_OPT",
165 31d97b2a Guido Trotter
  "ROMAN_OPT",
166 8d823629 Iustin Pop
  "SECONDARY_IP_OPT",
167 aafee533 Michael Hanselmann
  "SECONDARY_ONLY_OPT",
168 67840b40 Iustin Pop
  "SELECT_OS_OPT",
169 4abc4f1e Iustin Pop
  "SEP_OPT",
170 fdcf4d84 Iustin Pop
  "SHOWCMD_OPT",
171 7e5eaaa8 Guido Trotter
  "SHUTDOWN_TIMEOUT_OPT",
172 f36d7d81 Iustin Pop
  "SINGLE_NODE_OPT",
173 32017174 Agata Murawska
  "SPECS_CPU_COUNT_OPT",
174 32017174 Agata Murawska
  "SPECS_DISK_COUNT_OPT",
175 32017174 Agata Murawska
  "SPECS_DISK_SIZE_OPT",
176 32017174 Agata Murawska
  "SPECS_MEM_SIZE_OPT",
177 32017174 Agata Murawska
  "SPECS_NIC_COUNT_OPT",
178 d04c9d45 Iustin Pop
  "IPOLICY_DISK_TEMPLATES",
179 976b78ba Iustin Pop
  "IPOLICY_VCPU_RATIO",
180 b6267745 Andrea Spadaccini
  "SPICE_CACERT_OPT",
181 b6267745 Andrea Spadaccini
  "SPICE_CERT_OPT",
182 df62e5db Iustin Pop
  "SRC_DIR_OPT",
183 df62e5db Iustin Pop
  "SRC_NODE_OPT",
184 4abc4f1e Iustin Pop
  "SUBMIT_OPT",
185 323f9095 Stephen Shirley
  "STARTUP_PAUSED_OPT",
186 99a8c799 Iustin Pop
  "STATIC_OPT",
187 4abc4f1e Iustin Pop
  "SYNC_OPT",
188 a57981c5 Apollon Oikonomopoulos
  "TAG_ADD_OPT",
189 4abc4f1e Iustin Pop
  "TAG_SRC_OPT",
190 b5762e2a Guido Trotter
  "TIMEOUT_OPT",
191 f6eb380d Michael Hanselmann
  "TO_GROUP_OPT",
192 1338f2b4 Balazs Lecz
  "UIDPOOL_OPT",
193 4abc4f1e Iustin Pop
  "USEUNITS_OPT",
194 bf689b7a Andrea Spadaccini
  "USE_EXTERNAL_MIP_SCRIPT",
195 74adc100 Iustin Pop
  "USE_REPL_NET_OPT",
196 9cdb9578 Iustin Pop
  "VERBOSE_OPT",
197 b58726e8 Iustin Pop
  "VG_NAME_OPT",
198 1f587d3d Iustin Pop
  "YES_DOIT_OPT",
199 38f29a36 René Nussbaumer
  "DISK_STATE_OPT",
200 38f29a36 René Nussbaumer
  "HV_STATE_OPT",
201 b6aaf437 René Nussbaumer
  "IGNORE_IPOLICY_OPT",
202 0ce212e5 Iustin Pop
  "INSTANCE_POLICY_OPTS",
203 4abc4f1e Iustin Pop
  # Generic functions for CLI programs
204 25bd815c René Nussbaumer
  "ConfirmOperation",
205 703fa9ab Iustin Pop
  "CreateIPolicyFromOpts",
206 4abc4f1e Iustin Pop
  "GenericMain",
207 d77490c5 Iustin Pop
  "GenericInstanceCreate",
208 ee3aedff Michael Hanselmann
  "GenericList",
209 ee3aedff Michael Hanselmann
  "GenericListFields",
210 4abc4f1e Iustin Pop
  "GetClient",
211 4abc4f1e Iustin Pop
  "GetOnlineNodes",
212 4abc4f1e Iustin Pop
  "JobExecutor",
213 4abc4f1e Iustin Pop
  "JobSubmittedException",
214 4abc4f1e Iustin Pop
  "ParseTimespec",
215 7e49b6ce Michael Hanselmann
  "RunWhileClusterStopped",
216 4abc4f1e Iustin Pop
  "SubmitOpCode",
217 4abc4f1e Iustin Pop
  "SubmitOrSend",
218 4abc4f1e Iustin Pop
  "UsesRPC",
219 4abc4f1e Iustin Pop
  # Formatting functions
220 4abc4f1e Iustin Pop
  "ToStderr", "ToStdout",
221 4abc4f1e Iustin Pop
  "FormatError",
222 ee3aedff Michael Hanselmann
  "FormatQueryResult",
223 acd19189 René Nussbaumer
  "FormatParameterDict",
224 4abc4f1e Iustin Pop
  "GenerateTable",
225 4abc4f1e Iustin Pop
  "AskUser",
226 4abc4f1e Iustin Pop
  "FormatTimestamp",
227 8a7f1c61 Michael Hanselmann
  "FormatLogMessage",
228 4abc4f1e Iustin Pop
  # Tags functions
229 4abc4f1e Iustin Pop
  "ListTags",
230 4abc4f1e Iustin Pop
  "AddTags",
231 4abc4f1e Iustin Pop
  "RemoveTags",
232 4abc4f1e Iustin Pop
  # command line options support infrastructure
233 4abc4f1e Iustin Pop
  "ARGS_MANY_INSTANCES",
234 4abc4f1e Iustin Pop
  "ARGS_MANY_NODES",
235 667dbd6b Adeodato Simo
  "ARGS_MANY_GROUPS",
236 4abc4f1e Iustin Pop
  "ARGS_NONE",
237 4abc4f1e Iustin Pop
  "ARGS_ONE_INSTANCE",
238 4abc4f1e Iustin Pop
  "ARGS_ONE_NODE",
239 667dbd6b Adeodato Simo
  "ARGS_ONE_GROUP",
240 f9faf9c3 René Nussbaumer
  "ARGS_ONE_OS",
241 4abc4f1e Iustin Pop
  "ArgChoice",
242 4abc4f1e Iustin Pop
  "ArgCommand",
243 4abc4f1e Iustin Pop
  "ArgFile",
244 667dbd6b Adeodato Simo
  "ArgGroup",
245 4abc4f1e Iustin Pop
  "ArgHost",
246 4abc4f1e Iustin Pop
  "ArgInstance",
247 4abc4f1e Iustin Pop
  "ArgJobId",
248 4abc4f1e Iustin Pop
  "ArgNode",
249 f9faf9c3 René Nussbaumer
  "ArgOs",
250 4abc4f1e Iustin Pop
  "ArgSuggest",
251 4abc4f1e Iustin Pop
  "ArgUnknown",
252 4abc4f1e Iustin Pop
  "OPT_COMPL_INST_ADD_NODES",
253 4abc4f1e Iustin Pop
  "OPT_COMPL_MANY_NODES",
254 4abc4f1e Iustin Pop
  "OPT_COMPL_ONE_IALLOCATOR",
255 4abc4f1e Iustin Pop
  "OPT_COMPL_ONE_INSTANCE",
256 4abc4f1e Iustin Pop
  "OPT_COMPL_ONE_NODE",
257 36e247e1 Guido Trotter
  "OPT_COMPL_ONE_NODEGROUP",
258 4abc4f1e Iustin Pop
  "OPT_COMPL_ONE_OS",
259 4abc4f1e Iustin Pop
  "cli_option",
260 4abc4f1e Iustin Pop
  "SplitNodeOption",
261 07150497 Guido Trotter
  "CalculateOSNames",
262 a4ebd726 Michael Hanselmann
  "ParseFields",
263 eb28ecf6 Guido Trotter
  "COMMON_CREATE_OPTS",
264 4abc4f1e Iustin Pop
  ]
265 846baef9 Iustin Pop
266 8b46606c Guido Trotter
NO_PREFIX = "no_"
267 8b46606c Guido Trotter
UN_PREFIX = "-"
268 846baef9 Iustin Pop
269 84a5b33c Michael Hanselmann
#: Priorities (sorted)
270 84a5b33c Michael Hanselmann
_PRIORITY_NAMES = [
271 84a5b33c Michael Hanselmann
  ("low", constants.OP_PRIO_LOW),
272 84a5b33c Michael Hanselmann
  ("normal", constants.OP_PRIO_NORMAL),
273 84a5b33c Michael Hanselmann
  ("high", constants.OP_PRIO_HIGH),
274 84a5b33c Michael Hanselmann
  ]
275 84a5b33c Michael Hanselmann
276 84a5b33c Michael Hanselmann
#: Priority dictionary for easier lookup
277 84a5b33c Michael Hanselmann
# TODO: Replace this and _PRIORITY_NAMES with a single sorted dictionary once
278 84a5b33c Michael Hanselmann
# we migrate to Python 2.6
279 84a5b33c Michael Hanselmann
_PRIONAME_TO_VALUE = dict(_PRIORITY_NAMES)
280 84a5b33c Michael Hanselmann
281 ee3aedff Michael Hanselmann
# Query result status for clients
282 ee3aedff Michael Hanselmann
(QR_NORMAL,
283 ee3aedff Michael Hanselmann
 QR_UNKNOWN,
284 ee3aedff Michael Hanselmann
 QR_INCOMPLETE) = range(3)
285 ee3aedff Michael Hanselmann
286 11705e3d Iustin Pop
#: Maximum batch size for ChooseJob
287 11705e3d Iustin Pop
_CHOOSE_BATCH = 25
288 11705e3d Iustin Pop
289 03298ebe Michael Hanselmann
290 703fa9ab Iustin Pop
# constants used to create InstancePolicy dictionary
291 703fa9ab Iustin Pop
TISPECS_GROUP_TYPES = {
292 703fa9ab Iustin Pop
  constants.ISPECS_MIN: constants.VTYPE_INT,
293 703fa9ab Iustin Pop
  constants.ISPECS_MAX: constants.VTYPE_INT,
294 703fa9ab Iustin Pop
  }
295 703fa9ab Iustin Pop
296 703fa9ab Iustin Pop
TISPECS_CLUSTER_TYPES = {
297 703fa9ab Iustin Pop
  constants.ISPECS_MIN: constants.VTYPE_INT,
298 703fa9ab Iustin Pop
  constants.ISPECS_MAX: constants.VTYPE_INT,
299 703fa9ab Iustin Pop
  constants.ISPECS_STD: constants.VTYPE_INT,
300 703fa9ab Iustin Pop
  }
301 703fa9ab Iustin Pop
302 703fa9ab Iustin Pop
303 863d7f46 Michael Hanselmann
class _Argument:
304 b459a848 Andrea Spadaccini
  def __init__(self, min=0, max=None): # pylint: disable=W0622
305 863d7f46 Michael Hanselmann
    self.min = min
306 863d7f46 Michael Hanselmann
    self.max = max
307 863d7f46 Michael Hanselmann
308 863d7f46 Michael Hanselmann
  def __repr__(self):
309 863d7f46 Michael Hanselmann
    return ("<%s min=%s max=%s>" %
310 863d7f46 Michael Hanselmann
            (self.__class__.__name__, self.min, self.max))
311 863d7f46 Michael Hanselmann
312 863d7f46 Michael Hanselmann
313 863d7f46 Michael Hanselmann
class ArgSuggest(_Argument):
314 863d7f46 Michael Hanselmann
  """Suggesting argument.
315 863d7f46 Michael Hanselmann

316 863d7f46 Michael Hanselmann
  Value can be any of the ones passed to the constructor.
317 863d7f46 Michael Hanselmann

318 863d7f46 Michael Hanselmann
  """
319 b459a848 Andrea Spadaccini
  # pylint: disable=W0622
320 863d7f46 Michael Hanselmann
  def __init__(self, min=0, max=None, choices=None):
321 863d7f46 Michael Hanselmann
    _Argument.__init__(self, min=min, max=max)
322 863d7f46 Michael Hanselmann
    self.choices = choices
323 863d7f46 Michael Hanselmann
324 863d7f46 Michael Hanselmann
  def __repr__(self):
325 863d7f46 Michael Hanselmann
    return ("<%s min=%s max=%s choices=%r>" %
326 863d7f46 Michael Hanselmann
            (self.__class__.__name__, self.min, self.max, self.choices))
327 863d7f46 Michael Hanselmann
328 863d7f46 Michael Hanselmann
329 863d7f46 Michael Hanselmann
class ArgChoice(ArgSuggest):
330 863d7f46 Michael Hanselmann
  """Choice argument.
331 863d7f46 Michael Hanselmann

332 863d7f46 Michael Hanselmann
  Value can be any of the ones passed to the constructor. Like L{ArgSuggest},
333 863d7f46 Michael Hanselmann
  but value must be one of the choices.
334 863d7f46 Michael Hanselmann

335 863d7f46 Michael Hanselmann
  """
336 863d7f46 Michael Hanselmann
337 863d7f46 Michael Hanselmann
338 863d7f46 Michael Hanselmann
class ArgUnknown(_Argument):
339 863d7f46 Michael Hanselmann
  """Unknown argument to program (e.g. determined at runtime).
340 863d7f46 Michael Hanselmann

341 863d7f46 Michael Hanselmann
  """
342 863d7f46 Michael Hanselmann
343 863d7f46 Michael Hanselmann
344 863d7f46 Michael Hanselmann
class ArgInstance(_Argument):
345 863d7f46 Michael Hanselmann
  """Instances argument.
346 863d7f46 Michael Hanselmann

347 863d7f46 Michael Hanselmann
  """
348 863d7f46 Michael Hanselmann
349 863d7f46 Michael Hanselmann
350 863d7f46 Michael Hanselmann
class ArgNode(_Argument):
351 863d7f46 Michael Hanselmann
  """Node argument.
352 863d7f46 Michael Hanselmann

353 863d7f46 Michael Hanselmann
  """
354 863d7f46 Michael Hanselmann
355 667dbd6b Adeodato Simo
356 667dbd6b Adeodato Simo
class ArgGroup(_Argument):
357 667dbd6b Adeodato Simo
  """Node group argument.
358 667dbd6b Adeodato Simo

359 667dbd6b Adeodato Simo
  """
360 667dbd6b Adeodato Simo
361 667dbd6b Adeodato Simo
362 863d7f46 Michael Hanselmann
class ArgJobId(_Argument):
363 863d7f46 Michael Hanselmann
  """Job ID argument.
364 863d7f46 Michael Hanselmann

365 863d7f46 Michael Hanselmann
  """
366 863d7f46 Michael Hanselmann
367 863d7f46 Michael Hanselmann
368 863d7f46 Michael Hanselmann
class ArgFile(_Argument):
369 863d7f46 Michael Hanselmann
  """File path argument.
370 863d7f46 Michael Hanselmann

371 863d7f46 Michael Hanselmann
  """
372 863d7f46 Michael Hanselmann
373 863d7f46 Michael Hanselmann
374 863d7f46 Michael Hanselmann
class ArgCommand(_Argument):
375 863d7f46 Michael Hanselmann
  """Command argument.
376 863d7f46 Michael Hanselmann

377 863d7f46 Michael Hanselmann
  """
378 863d7f46 Michael Hanselmann
379 863d7f46 Michael Hanselmann
380 83ec7961 Michael Hanselmann
class ArgHost(_Argument):
381 83ec7961 Michael Hanselmann
  """Host argument.
382 83ec7961 Michael Hanselmann

383 83ec7961 Michael Hanselmann
  """
384 83ec7961 Michael Hanselmann
385 83ec7961 Michael Hanselmann
386 f9faf9c3 René Nussbaumer
class ArgOs(_Argument):
387 f9faf9c3 René Nussbaumer
  """OS argument.
388 f9faf9c3 René Nussbaumer

389 f9faf9c3 René Nussbaumer
  """
390 f9faf9c3 René Nussbaumer
391 f9faf9c3 René Nussbaumer
392 4a265c08 Michael Hanselmann
ARGS_NONE = []
393 4a265c08 Michael Hanselmann
ARGS_MANY_INSTANCES = [ArgInstance()]
394 4a265c08 Michael Hanselmann
ARGS_MANY_NODES = [ArgNode()]
395 667dbd6b Adeodato Simo
ARGS_MANY_GROUPS = [ArgGroup()]
396 4a265c08 Michael Hanselmann
ARGS_ONE_INSTANCE = [ArgInstance(min=1, max=1)]
397 4a265c08 Michael Hanselmann
ARGS_ONE_NODE = [ArgNode(min=1, max=1)]
398 dadf6b7d Michael Hanselmann
# TODO
399 dadf6b7d Michael Hanselmann
ARGS_ONE_GROUP = [ArgGroup(min=1, max=1)]
400 f9faf9c3 René Nussbaumer
ARGS_ONE_OS = [ArgOs(min=1, max=1)]
401 4a265c08 Michael Hanselmann
402 4a265c08 Michael Hanselmann
403 846baef9 Iustin Pop
def _ExtractTagsObject(opts, args):
404 846baef9 Iustin Pop
  """Extract the tag type object.
405 846baef9 Iustin Pop

406 846baef9 Iustin Pop
  Note that this function will modify its args parameter.
407 846baef9 Iustin Pop

408 846baef9 Iustin Pop
  """
409 846baef9 Iustin Pop
  if not hasattr(opts, "tag_type"):
410 846baef9 Iustin Pop
    raise errors.ProgrammerError("tag_type not passed to _ExtractTagsObject")
411 846baef9 Iustin Pop
  kind = opts.tag_type
412 846baef9 Iustin Pop
  if kind == constants.TAG_CLUSTER:
413 846baef9 Iustin Pop
    retval = kind, kind
414 819cbfe5 Michael Hanselmann
  elif kind in (constants.TAG_NODEGROUP,
415 819cbfe5 Michael Hanselmann
                constants.TAG_NODE,
416 819cbfe5 Michael Hanselmann
                constants.TAG_INSTANCE):
417 846baef9 Iustin Pop
    if not args:
418 0c434948 Iustin Pop
      raise errors.OpPrereqError("no arguments passed to the command")
419 846baef9 Iustin Pop
    name = args.pop(0)
420 846baef9 Iustin Pop
    retval = kind, name
421 846baef9 Iustin Pop
  else:
422 846baef9 Iustin Pop
    raise errors.ProgrammerError("Unhandled tag type '%s'" % kind)
423 846baef9 Iustin Pop
  return retval
424 846baef9 Iustin Pop
425 846baef9 Iustin Pop
426 810c50b7 Iustin Pop
def _ExtendTags(opts, args):
427 810c50b7 Iustin Pop
  """Extend the args if a source file has been given.
428 810c50b7 Iustin Pop

429 810c50b7 Iustin Pop
  This function will extend the tags with the contents of the file
430 810c50b7 Iustin Pop
  passed in the 'tags_source' attribute of the opts parameter. A file
431 810c50b7 Iustin Pop
  named '-' will be replaced by stdin.
432 810c50b7 Iustin Pop

433 810c50b7 Iustin Pop
  """
434 810c50b7 Iustin Pop
  fname = opts.tags_source
435 810c50b7 Iustin Pop
  if fname is None:
436 810c50b7 Iustin Pop
    return
437 810c50b7 Iustin Pop
  if fname == "-":
438 810c50b7 Iustin Pop
    new_fh = sys.stdin
439 810c50b7 Iustin Pop
  else:
440 810c50b7 Iustin Pop
    new_fh = open(fname, "r")
441 810c50b7 Iustin Pop
  new_data = []
442 810c50b7 Iustin Pop
  try:
443 810c50b7 Iustin Pop
    # we don't use the nice 'new_data = [line.strip() for line in fh]'
444 810c50b7 Iustin Pop
    # because of python bug 1633941
445 810c50b7 Iustin Pop
    while True:
446 810c50b7 Iustin Pop
      line = new_fh.readline()
447 810c50b7 Iustin Pop
      if not line:
448 810c50b7 Iustin Pop
        break
449 810c50b7 Iustin Pop
      new_data.append(line.strip())
450 810c50b7 Iustin Pop
  finally:
451 810c50b7 Iustin Pop
    new_fh.close()
452 810c50b7 Iustin Pop
  args.extend(new_data)
453 810c50b7 Iustin Pop
454 810c50b7 Iustin Pop
455 846baef9 Iustin Pop
def ListTags(opts, args):
456 846baef9 Iustin Pop
  """List the tags on a given object.
457 846baef9 Iustin Pop

458 846baef9 Iustin Pop
  This is a generic implementation that knows how to deal with all
459 846baef9 Iustin Pop
  three cases of tag objects (cluster, node, instance). The opts
460 846baef9 Iustin Pop
  argument is expected to contain a tag_type field denoting what
461 846baef9 Iustin Pop
  object type we work on.
462 846baef9 Iustin Pop

463 846baef9 Iustin Pop
  """
464 846baef9 Iustin Pop
  kind, name = _ExtractTagsObject(opts, args)
465 7699c3af Iustin Pop
  cl = GetClient()
466 7699c3af Iustin Pop
  result = cl.QueryTags(kind, name)
467 846baef9 Iustin Pop
  result = list(result)
468 846baef9 Iustin Pop
  result.sort()
469 846baef9 Iustin Pop
  for tag in result:
470 03298ebe Michael Hanselmann
    ToStdout(tag)
471 846baef9 Iustin Pop
472 846baef9 Iustin Pop
473 846baef9 Iustin Pop
def AddTags(opts, args):
474 846baef9 Iustin Pop
  """Add tags on a given object.
475 846baef9 Iustin Pop

476 846baef9 Iustin Pop
  This is a generic implementation that knows how to deal with all
477 846baef9 Iustin Pop
  three cases of tag objects (cluster, node, instance). The opts
478 846baef9 Iustin Pop
  argument is expected to contain a tag_type field denoting what
479 846baef9 Iustin Pop
  object type we work on.
480 846baef9 Iustin Pop

481 846baef9 Iustin Pop
  """
482 846baef9 Iustin Pop
  kind, name = _ExtractTagsObject(opts, args)
483 810c50b7 Iustin Pop
  _ExtendTags(opts, args)
484 846baef9 Iustin Pop
  if not args:
485 846baef9 Iustin Pop
    raise errors.OpPrereqError("No tags to be added")
486 d1602edc Iustin Pop
  op = opcodes.OpTagsSet(kind=kind, name=name, tags=args)
487 6bc3ed14 Michael Hanselmann
  SubmitOrSend(op, opts)
488 846baef9 Iustin Pop
489 846baef9 Iustin Pop
490 846baef9 Iustin Pop
def RemoveTags(opts, args):
491 846baef9 Iustin Pop
  """Remove tags from a given object.
492 846baef9 Iustin Pop

493 846baef9 Iustin Pop
  This is a generic implementation that knows how to deal with all
494 846baef9 Iustin Pop
  three cases of tag objects (cluster, node, instance). The opts
495 846baef9 Iustin Pop
  argument is expected to contain a tag_type field denoting what
496 846baef9 Iustin Pop
  object type we work on.
497 846baef9 Iustin Pop

498 846baef9 Iustin Pop
  """
499 846baef9 Iustin Pop
  kind, name = _ExtractTagsObject(opts, args)
500 810c50b7 Iustin Pop
  _ExtendTags(opts, args)
501 846baef9 Iustin Pop
  if not args:
502 846baef9 Iustin Pop
    raise errors.OpPrereqError("No tags to be removed")
503 3f0ab95f Iustin Pop
  op = opcodes.OpTagsDel(kind=kind, name=name, tags=args)
504 6bc3ed14 Michael Hanselmann
  SubmitOrSend(op, opts)
505 846baef9 Iustin Pop
506 a8083063 Iustin Pop
507 b459a848 Andrea Spadaccini
def check_unit(option, opt, value): # pylint: disable=W0613
508 65fe4693 Iustin Pop
  """OptParsers custom converter for units.
509 65fe4693 Iustin Pop

510 65fe4693 Iustin Pop
  """
511 a8083063 Iustin Pop
  try:
512 a8083063 Iustin Pop
    return utils.ParseUnit(value)
513 a8083063 Iustin Pop
  except errors.UnitParseError, err:
514 3ecf6786 Iustin Pop
    raise OptionValueError("option %s: %s" % (opt, err))
515 a8083063 Iustin Pop
516 a8083063 Iustin Pop
517 a8469393 Iustin Pop
def _SplitKeyVal(opt, data):
518 a8469393 Iustin Pop
  """Convert a KeyVal string into a dict.
519 a8469393 Iustin Pop

520 a8469393 Iustin Pop
  This function will convert a key=val[,...] string into a dict. Empty
521 a8469393 Iustin Pop
  values will be converted specially: keys which have the prefix 'no_'
522 a8469393 Iustin Pop
  will have the value=False and the prefix stripped, the others will
523 a8469393 Iustin Pop
  have value=True.
524 a8469393 Iustin Pop

525 a8469393 Iustin Pop
  @type opt: string
526 a8469393 Iustin Pop
  @param opt: a string holding the option name for which we process the
527 a8469393 Iustin Pop
      data, used in building error messages
528 a8469393 Iustin Pop
  @type data: string
529 a8469393 Iustin Pop
  @param data: a string of the format key=val,key=val,...
530 a8469393 Iustin Pop
  @rtype: dict
531 a8469393 Iustin Pop
  @return: {key=val, key=val}
532 a8469393 Iustin Pop
  @raises errors.ParameterError: if there are duplicate keys
533 a8469393 Iustin Pop

534 a8469393 Iustin Pop
  """
535 a8469393 Iustin Pop
  kv_dict = {}
536 4f31882e Guido Trotter
  if data:
537 1b3a7656 Iustin Pop
    for elem in utils.UnescapeAndSplit(data, sep=","):
538 4f31882e Guido Trotter
      if "=" in elem:
539 4f31882e Guido Trotter
        key, val = elem.split("=", 1)
540 a8469393 Iustin Pop
      else:
541 4f31882e Guido Trotter
        if elem.startswith(NO_PREFIX):
542 4f31882e Guido Trotter
          key, val = elem[len(NO_PREFIX):], False
543 4f31882e Guido Trotter
        elif elem.startswith(UN_PREFIX):
544 4f31882e Guido Trotter
          key, val = elem[len(UN_PREFIX):], None
545 4f31882e Guido Trotter
        else:
546 4f31882e Guido Trotter
          key, val = elem, True
547 4f31882e Guido Trotter
      if key in kv_dict:
548 4f31882e Guido Trotter
        raise errors.ParameterError("Duplicate key '%s' in option %s" %
549 4f31882e Guido Trotter
                                    (key, opt))
550 4f31882e Guido Trotter
      kv_dict[key] = val
551 a8469393 Iustin Pop
  return kv_dict
552 a8469393 Iustin Pop
553 a8469393 Iustin Pop
554 b459a848 Andrea Spadaccini
def check_ident_key_val(option, opt, value):  # pylint: disable=W0613
555 552c8dff Michael Hanselmann
  """Custom parser for ident:key=val,key=val options.
556 552c8dff Michael Hanselmann

557 552c8dff Michael Hanselmann
  This will store the parsed values as a tuple (ident, {key: val}). As such,
558 552c8dff Michael Hanselmann
  multiple uses of this option via action=append is possible.
559 a8469393 Iustin Pop

560 a8469393 Iustin Pop
  """
561 a8469393 Iustin Pop
  if ":" not in value:
562 d0c8c01d Iustin Pop
    ident, rest = value, ""
563 a8469393 Iustin Pop
  else:
564 a8469393 Iustin Pop
    ident, rest = value.split(":", 1)
565 8b46606c Guido Trotter
566 8b46606c Guido Trotter
  if ident.startswith(NO_PREFIX):
567 8b46606c Guido Trotter
    if rest:
568 8b46606c Guido Trotter
      msg = "Cannot pass options when removing parameter groups: %s" % value
569 8b46606c Guido Trotter
      raise errors.ParameterError(msg)
570 8b46606c Guido Trotter
    retval = (ident[len(NO_PREFIX):], False)
571 956631b6 Michael Hanselmann
  elif (ident.startswith(UN_PREFIX) and
572 956631b6 Michael Hanselmann
        (len(ident) <= len(UN_PREFIX) or
573 956631b6 Michael Hanselmann
         not ident[len(UN_PREFIX)][0].isdigit())):
574 8b46606c Guido Trotter
    if rest:
575 8b46606c Guido Trotter
      msg = "Cannot pass options when removing parameter groups: %s" % value
576 8b46606c Guido Trotter
      raise errors.ParameterError(msg)
577 8b46606c Guido Trotter
    retval = (ident[len(UN_PREFIX):], None)
578 8b46606c Guido Trotter
  else:
579 a8469393 Iustin Pop
    kv_dict = _SplitKeyVal(opt, rest)
580 a8469393 Iustin Pop
    retval = (ident, kv_dict)
581 a8469393 Iustin Pop
  return retval
582 a8469393 Iustin Pop
583 a8469393 Iustin Pop
584 b459a848 Andrea Spadaccini
def check_key_val(option, opt, value):  # pylint: disable=W0613
585 552c8dff Michael Hanselmann
  """Custom parser class for key=val,key=val options.
586 552c8dff Michael Hanselmann

587 552c8dff Michael Hanselmann
  This will store the parsed values as a dict {key: val}.
588 a8469393 Iustin Pop

589 a8469393 Iustin Pop
  """
590 a8469393 Iustin Pop
  return _SplitKeyVal(opt, value)
591 a8469393 Iustin Pop
592 a8469393 Iustin Pop
593 b459a848 Andrea Spadaccini
def check_bool(option, opt, value): # pylint: disable=W0613
594 e7b61bb0 Iustin Pop
  """Custom parser for yes/no options.
595 e7b61bb0 Iustin Pop

596 e7b61bb0 Iustin Pop
  This will store the parsed value as either True or False.
597 e7b61bb0 Iustin Pop

598 e7b61bb0 Iustin Pop
  """
599 e7b61bb0 Iustin Pop
  value = value.lower()
600 e7b61bb0 Iustin Pop
  if value == constants.VALUE_FALSE or value == "no":
601 e7b61bb0 Iustin Pop
    return False
602 e7b61bb0 Iustin Pop
  elif value == constants.VALUE_TRUE or value == "yes":
603 e7b61bb0 Iustin Pop
    return True
604 e7b61bb0 Iustin Pop
  else:
605 e7b61bb0 Iustin Pop
    raise errors.ParameterError("Invalid boolean value '%s'" % value)
606 e7b61bb0 Iustin Pop
607 e7b61bb0 Iustin Pop
608 499eb088 Iustin Pop
def check_list(option, opt, value): # pylint: disable=W0613
609 499eb088 Iustin Pop
  """Custom parser for comma-separated lists.
610 499eb088 Iustin Pop

611 499eb088 Iustin Pop
  """
612 499eb088 Iustin Pop
  # we have to make this explicit check since "".split(",") is [""],
613 499eb088 Iustin Pop
  # not an empty list :(
614 499eb088 Iustin Pop
  if not value:
615 499eb088 Iustin Pop
    return []
616 499eb088 Iustin Pop
  else:
617 499eb088 Iustin Pop
    return utils.UnescapeAndSplit(value)
618 499eb088 Iustin Pop
619 499eb088 Iustin Pop
620 63d44c55 Michael Hanselmann
# completion_suggestion is normally a list. Using numeric values not evaluating
621 63d44c55 Michael Hanselmann
# to False for dynamic completion.
622 63d44c55 Michael Hanselmann
(OPT_COMPL_MANY_NODES,
623 63d44c55 Michael Hanselmann
 OPT_COMPL_ONE_NODE,
624 63d44c55 Michael Hanselmann
 OPT_COMPL_ONE_INSTANCE,
625 63d44c55 Michael Hanselmann
 OPT_COMPL_ONE_OS,
626 2d3ed64b Michael Hanselmann
 OPT_COMPL_ONE_IALLOCATOR,
627 36e247e1 Guido Trotter
 OPT_COMPL_INST_ADD_NODES,
628 36e247e1 Guido Trotter
 OPT_COMPL_ONE_NODEGROUP) = range(100, 107)
629 63d44c55 Michael Hanselmann
630 63d44c55 Michael Hanselmann
OPT_COMPL_ALL = frozenset([
631 63d44c55 Michael Hanselmann
  OPT_COMPL_MANY_NODES,
632 63d44c55 Michael Hanselmann
  OPT_COMPL_ONE_NODE,
633 63d44c55 Michael Hanselmann
  OPT_COMPL_ONE_INSTANCE,
634 63d44c55 Michael Hanselmann
  OPT_COMPL_ONE_OS,
635 63d44c55 Michael Hanselmann
  OPT_COMPL_ONE_IALLOCATOR,
636 2d3ed64b Michael Hanselmann
  OPT_COMPL_INST_ADD_NODES,
637 36e247e1 Guido Trotter
  OPT_COMPL_ONE_NODEGROUP,
638 63d44c55 Michael Hanselmann
  ])
639 63d44c55 Michael Hanselmann
640 63d44c55 Michael Hanselmann
641 552c8dff Michael Hanselmann
class CliOption(Option):
642 552c8dff Michael Hanselmann
  """Custom option class for optparse.
643 a8469393 Iustin Pop

644 a8469393 Iustin Pop
  """
645 863d7f46 Michael Hanselmann
  ATTRS = Option.ATTRS + [
646 863d7f46 Michael Hanselmann
    "completion_suggest",
647 863d7f46 Michael Hanselmann
    ]
648 552c8dff Michael Hanselmann
  TYPES = Option.TYPES + (
649 552c8dff Michael Hanselmann
    "identkeyval",
650 552c8dff Michael Hanselmann
    "keyval",
651 552c8dff Michael Hanselmann
    "unit",
652 e7b61bb0 Iustin Pop
    "bool",
653 499eb088 Iustin Pop
    "list",
654 552c8dff Michael Hanselmann
    )
655 552c8dff Michael Hanselmann
  TYPE_CHECKER = Option.TYPE_CHECKER.copy()
656 552c8dff Michael Hanselmann
  TYPE_CHECKER["identkeyval"] = check_ident_key_val
657 a8469393 Iustin Pop
  TYPE_CHECKER["keyval"] = check_key_val
658 552c8dff Michael Hanselmann
  TYPE_CHECKER["unit"] = check_unit
659 e7b61bb0 Iustin Pop
  TYPE_CHECKER["bool"] = check_bool
660 499eb088 Iustin Pop
  TYPE_CHECKER["list"] = check_list
661 a8469393 Iustin Pop
662 a8469393 Iustin Pop
663 a8083063 Iustin Pop
# optparse.py sets make_option, so we do it for our own option class, too
664 a8083063 Iustin Pop
cli_option = CliOption
665 a8083063 Iustin Pop
666 a8083063 Iustin Pop
667 771734c9 Iustin Pop
_YORNO = "yes|no"
668 771734c9 Iustin Pop
669 ea34193f Iustin Pop
DEBUG_OPT = cli_option("-d", "--debug", default=0, action="count",
670 ea34193f Iustin Pop
                       help="Increase debugging level")
671 c38c44ad Michael Hanselmann
672 c38c44ad Michael Hanselmann
NOHDR_OPT = cli_option("--no-headers", default=False,
673 c38c44ad Michael Hanselmann
                       action="store_true", dest="no_headers",
674 c38c44ad Michael Hanselmann
                       help="Don't display column headers")
675 c38c44ad Michael Hanselmann
676 c38c44ad Michael Hanselmann
SEP_OPT = cli_option("--separator", default=None,
677 c38c44ad Michael Hanselmann
                     action="store", dest="separator",
678 c38c44ad Michael Hanselmann
                     help=("Separator between output fields"
679 c38c44ad Michael Hanselmann
                           " (defaults to one space)"))
680 c38c44ad Michael Hanselmann
681 c38c44ad Michael Hanselmann
USEUNITS_OPT = cli_option("--units", default=None,
682 d0c8c01d Iustin Pop
                          dest="units", choices=("h", "m", "g", "t"),
683 b714765a Adeodato Simo
                          help="Specify units for output (one of h/m/g/t)")
684 c38c44ad Michael Hanselmann
685 c38c44ad Michael Hanselmann
FIELDS_OPT = cli_option("-o", "--output", dest="output", action="store",
686 c38c44ad Michael Hanselmann
                        type="string", metavar="FIELDS",
687 c38c44ad Michael Hanselmann
                        help="Comma separated list of output fields")
688 c38c44ad Michael Hanselmann
689 c38c44ad Michael Hanselmann
FORCE_OPT = cli_option("-f", "--force", dest="force", action="store_true",
690 c38c44ad Michael Hanselmann
                       default=False, help="Force the operation")
691 c38c44ad Michael Hanselmann
692 c38c44ad Michael Hanselmann
CONFIRM_OPT = cli_option("--yes", dest="confirm", action="store_true",
693 c38c44ad Michael Hanselmann
                         default=False, help="Do not require confirmation")
694 c38c44ad Michael Hanselmann
695 b44bd844 Michael Hanselmann
IGNORE_OFFLINE_OPT = cli_option("--ignore-offline", dest="ignore_offline",
696 b44bd844 Michael Hanselmann
                                  action="store_true", default=False,
697 b44bd844 Michael Hanselmann
                                  help=("Ignore offline nodes and do as much"
698 b44bd844 Michael Hanselmann
                                        " as possible"))
699 b44bd844 Michael Hanselmann
700 a57981c5 Apollon Oikonomopoulos
TAG_ADD_OPT = cli_option("--tags", dest="tags",
701 a57981c5 Apollon Oikonomopoulos
                         default=None, help="Comma-separated list of instance"
702 a57981c5 Apollon Oikonomopoulos
                                            " tags")
703 a57981c5 Apollon Oikonomopoulos
704 c38c44ad Michael Hanselmann
TAG_SRC_OPT = cli_option("--from", dest="tags_source",
705 c38c44ad Michael Hanselmann
                         default=None, help="File with tag names")
706 c38c44ad Michael Hanselmann
707 c38c44ad Michael Hanselmann
SUBMIT_OPT = cli_option("--submit", dest="submit_only",
708 c38c44ad Michael Hanselmann
                        default=False, action="store_true",
709 c38c44ad Michael Hanselmann
                        help=("Submit the job and return the job ID, but"
710 c38c44ad Michael Hanselmann
                              " don't wait for the job to finish"))
711 c38c44ad Michael Hanselmann
712 c38c44ad Michael Hanselmann
SYNC_OPT = cli_option("--sync", dest="do_locking",
713 c38c44ad Michael Hanselmann
                      default=False, action="store_true",
714 c38c44ad Michael Hanselmann
                      help=("Grab locks while doing the queries"
715 c38c44ad Michael Hanselmann
                            " in order to ensure more consistent results"))
716 c38c44ad Michael Hanselmann
717 a0a6ff34 Iustin Pop
DRY_RUN_OPT = cli_option("--dry-run", default=False,
718 a0a6ff34 Iustin Pop
                         action="store_true",
719 a0a6ff34 Iustin Pop
                         help=("Do not execute the operation, just run the"
720 a0a6ff34 Iustin Pop
                               " check steps and verify it it could be"
721 a0a6ff34 Iustin Pop
                               " executed"))
722 c38c44ad Michael Hanselmann
723 9cdb9578 Iustin Pop
VERBOSE_OPT = cli_option("-v", "--verbose", default=False,
724 9cdb9578 Iustin Pop
                         action="store_true",
725 9cdb9578 Iustin Pop
                         help="Increase the verbosity of the operation")
726 9cdb9578 Iustin Pop
727 a0c9776a Iustin Pop
DEBUG_SIMERR_OPT = cli_option("--debug-simulate-errors", default=False,
728 a0c9776a Iustin Pop
                              action="store_true", dest="simulate_errors",
729 a0c9776a Iustin Pop
                              help="Debugging option that makes the operation"
730 a0c9776a Iustin Pop
                              " treat most runtime checks as failed")
731 a0c9776a Iustin Pop
732 3f75b4f3 Iustin Pop
NWSYNC_OPT = cli_option("--no-wait-for-sync", dest="wait_for_sync",
733 3f75b4f3 Iustin Pop
                        default=True, action="store_false",
734 3f75b4f3 Iustin Pop
                        help="Don't wait for sync (DANGEROUS!)")
735 3f75b4f3 Iustin Pop
736 57de31c0 Agata Murawska
ONLINE_INST_OPT = cli_option("--online", dest="online_inst",
737 57de31c0 Agata Murawska
                             action="store_true", default=False,
738 57de31c0 Agata Murawska
                             help="Enable offline instance")
739 57de31c0 Agata Murawska
740 57de31c0 Agata Murawska
OFFLINE_INST_OPT = cli_option("--offline", dest="offline_inst",
741 57de31c0 Agata Murawska
                              action="store_true", default=False,
742 57de31c0 Agata Murawska
                              help="Disable down instance")
743 57de31c0 Agata Murawska
744 4f365444 Iustin Pop
DISK_TEMPLATE_OPT = cli_option("-t", "--disk-template", dest="disk_template",
745 235407ba Michael Hanselmann
                               help=("Custom disk setup (%s)" %
746 235407ba Michael Hanselmann
                                     utils.CommaJoin(constants.DISK_TEMPLATES)),
747 4f365444 Iustin Pop
                               default=None, metavar="TEMPL",
748 4f365444 Iustin Pop
                               choices=list(constants.DISK_TEMPLATES))
749 4f365444 Iustin Pop
750 26023ecd Iustin Pop
NONICS_OPT = cli_option("--no-nics", default=False, action="store_true",
751 26023ecd Iustin Pop
                        help="Do not create any network cards for"
752 26023ecd Iustin Pop
                        " the instance")
753 26023ecd Iustin Pop
754 4a25828c Iustin Pop
FILESTORE_DIR_OPT = cli_option("--file-storage-dir", dest="file_storage_dir",
755 4a25828c Iustin Pop
                               help="Relative path under default cluster-wide"
756 4a25828c Iustin Pop
                               " file storage dir to store file-based disks",
757 4a25828c Iustin Pop
                               default=None, metavar="<DIR>")
758 4a25828c Iustin Pop
759 0f87c43e Iustin Pop
FILESTORE_DRIVER_OPT = cli_option("--file-driver", dest="file_driver",
760 0f87c43e Iustin Pop
                                  help="Driver to use for image files",
761 0f87c43e Iustin Pop
                                  default="loop", metavar="<DRIVER>",
762 0f87c43e Iustin Pop
                                  choices=list(constants.FILE_DRIVER))
763 0f87c43e Iustin Pop
764 4eb62659 Iustin Pop
IALLOCATOR_OPT = cli_option("-I", "--iallocator", metavar="<NAME>",
765 4eb62659 Iustin Pop
                            help="Select nodes for the instance automatically"
766 4eb62659 Iustin Pop
                            " using the <NAME> iallocator plugin",
767 4eb62659 Iustin Pop
                            default=None, type="string",
768 4eb62659 Iustin Pop
                            completion_suggest=OPT_COMPL_ONE_IALLOCATOR)
769 4eb62659 Iustin Pop
770 bf4af505 Apollon Oikonomopoulos
DEFAULT_IALLOCATOR_OPT = cli_option("-I", "--default-iallocator",
771 bf4af505 Apollon Oikonomopoulos
                            metavar="<NAME>",
772 bf4af505 Apollon Oikonomopoulos
                            help="Set the default instance allocator plugin",
773 bf4af505 Apollon Oikonomopoulos
                            default=None, type="string",
774 bf4af505 Apollon Oikonomopoulos
                            completion_suggest=OPT_COMPL_ONE_IALLOCATOR)
775 bf4af505 Apollon Oikonomopoulos
776 d3ed23ff Iustin Pop
OS_OPT = cli_option("-o", "--os-type", dest="os", help="What OS to run",
777 d3ed23ff Iustin Pop
                    metavar="<os>",
778 d3ed23ff Iustin Pop
                    completion_suggest=OPT_COMPL_ONE_OS)
779 d3ed23ff Iustin Pop
780 062a7100 Iustin Pop
OSPARAMS_OPT = cli_option("-O", "--os-parameters", dest="osparams",
781 062a7100 Iustin Pop
                         type="keyval", default={},
782 062a7100 Iustin Pop
                         help="OS parameters")
783 062a7100 Iustin Pop
784 06073e85 Guido Trotter
FORCE_VARIANT_OPT = cli_option("--force-variant", dest="force_variant",
785 06073e85 Guido Trotter
                               action="store_true", default=False,
786 06073e85 Guido Trotter
                               help="Force an unknown variant")
787 06073e85 Guido Trotter
788 25a8792c Iustin Pop
NO_INSTALL_OPT = cli_option("--no-install", dest="no_install",
789 25a8792c Iustin Pop
                            action="store_true", default=False,
790 25a8792c Iustin Pop
                            help="Do not install the OS (will"
791 25a8792c Iustin Pop
                            " enable no-start)")
792 25a8792c Iustin Pop
793 8c0b16f6 Guido Trotter
NORUNTIME_CHGS_OPT = cli_option("--no-runtime-changes",
794 8c0b16f6 Guido Trotter
                                dest="allow_runtime_chgs",
795 8c0b16f6 Guido Trotter
                                default=True, action="store_false",
796 8c0b16f6 Guido Trotter
                                help="Don't allow runtime changes")
797 8c0b16f6 Guido Trotter
798 087ed2ed Iustin Pop
BACKEND_OPT = cli_option("-B", "--backend-parameters", dest="beparams",
799 087ed2ed Iustin Pop
                         type="keyval", default={},
800 087ed2ed Iustin Pop
                         help="Backend parameters")
801 48f212d7 Iustin Pop
802 e687ec01 Michael Hanselmann
HVOPTS_OPT = cli_option("-H", "--hypervisor-parameters", type="keyval",
803 e687ec01 Michael Hanselmann
                        default={}, dest="hvparams",
804 e687ec01 Michael Hanselmann
                        help="Hypervisor parameters")
805 087ed2ed Iustin Pop
806 bc5d0215 Andrea Spadaccini
DISK_PARAMS_OPT = cli_option("-D", "--disk-parameters", dest="diskparams",
807 bc5d0215 Andrea Spadaccini
                             help="Disk template parameters, in the format"
808 bc5d0215 Andrea Spadaccini
                             " template:option=value,option=value,...",
809 bc5d0215 Andrea Spadaccini
                             type="identkeyval", action="append", default=[])
810 bc5d0215 Andrea Spadaccini
811 32017174 Agata Murawska
SPECS_MEM_SIZE_OPT = cli_option("--specs-mem-size", dest="ispecs_mem_size",
812 32017174 Agata Murawska
                                 type="keyval", default={},
813 d67e0a94 Iustin Pop
                                 help="Memory size specs: list of key=value,"
814 d67e0a94 Iustin Pop
                                " where key is one of min, max, std"
815 d67e0a94 Iustin Pop
                                 " (in MB or using a unit)")
816 32017174 Agata Murawska
817 32017174 Agata Murawska
SPECS_CPU_COUNT_OPT = cli_option("--specs-cpu-count", dest="ispecs_cpu_count",
818 32017174 Agata Murawska
                                 type="keyval", default={},
819 d67e0a94 Iustin Pop
                                 help="CPU count specs: list of key=value,"
820 d67e0a94 Iustin Pop
                                 " where key is one of min, max, std")
821 32017174 Agata Murawska
822 32017174 Agata Murawska
SPECS_DISK_COUNT_OPT = cli_option("--specs-disk-count",
823 32017174 Agata Murawska
                                  dest="ispecs_disk_count",
824 32017174 Agata Murawska
                                  type="keyval", default={},
825 d67e0a94 Iustin Pop
                                  help="Disk count specs: list of key=value,"
826 d67e0a94 Iustin Pop
                                  " where key is one of min, max, std")
827 32017174 Agata Murawska
828 32017174 Agata Murawska
SPECS_DISK_SIZE_OPT = cli_option("--specs-disk-size", dest="ispecs_disk_size",
829 32017174 Agata Murawska
                                 type="keyval", default={},
830 d67e0a94 Iustin Pop
                                 help="Disk size specs: list of key=value,"
831 d67e0a94 Iustin Pop
                                " where key is one of min, max, std"
832 d67e0a94 Iustin Pop
                                 " (in MB or using a unit)")
833 32017174 Agata Murawska
834 32017174 Agata Murawska
SPECS_NIC_COUNT_OPT = cli_option("--specs-nic-count", dest="ispecs_nic_count",
835 32017174 Agata Murawska
                                 type="keyval", default={},
836 d67e0a94 Iustin Pop
                                 help="NIC count specs: list of key=value,"
837 d67e0a94 Iustin Pop
                                 " where key is one of min, max, std")
838 32017174 Agata Murawska
839 d04c9d45 Iustin Pop
IPOLICY_DISK_TEMPLATES = cli_option("--ipolicy-disk-templates",
840 d04c9d45 Iustin Pop
                                 dest="ipolicy_disk_templates",
841 d04c9d45 Iustin Pop
                                 type="list", default=None,
842 d04c9d45 Iustin Pop
                                 help="Comma-separated list of"
843 d04c9d45 Iustin Pop
                                 " enabled disk templates")
844 12c3d3f6 Iustin Pop
845 976b78ba Iustin Pop
IPOLICY_VCPU_RATIO = cli_option("--ipolicy-vcpu-ratio",
846 976b78ba Iustin Pop
                                 dest="ipolicy_vcpu_ratio",
847 976b78ba Iustin Pop
                                 type="float", default=None,
848 976b78ba Iustin Pop
                                 help="The maximum allowed vcpu-to-cpu ratio")
849 976b78ba Iustin Pop
850 236fd9c4 Iustin Pop
HYPERVISOR_OPT = cli_option("-H", "--hypervisor-parameters", dest="hypervisor",
851 236fd9c4 Iustin Pop
                            help="Hypervisor and hypervisor options, in the"
852 236fd9c4 Iustin Pop
                            " format hypervisor:option=value,option=value,...",
853 236fd9c4 Iustin Pop
                            default=None, type="identkeyval")
854 073271f6 Iustin Pop
855 073271f6 Iustin Pop
HVLIST_OPT = cli_option("-H", "--hypervisor-parameters", dest="hvparams",
856 073271f6 Iustin Pop
                        help="Hypervisor and hypervisor options, in the"
857 073271f6 Iustin Pop
                        " format hypervisor:option=value,option=value,...",
858 073271f6 Iustin Pop
                        default=[], action="append", type="identkeyval")
859 236fd9c4 Iustin Pop
860 91e0748c Iustin Pop
NOIPCHECK_OPT = cli_option("--no-ip-check", dest="ip_check", default=True,
861 91e0748c Iustin Pop
                           action="store_false",
862 91e0748c Iustin Pop
                           help="Don't check that the instance's IP"
863 91e0748c Iustin Pop
                           " is alive")
864 91e0748c Iustin Pop
865 460d22be Iustin Pop
NONAMECHECK_OPT = cli_option("--no-name-check", dest="name_check",
866 460d22be Iustin Pop
                             default=True, action="store_false",
867 460d22be Iustin Pop
                             help="Don't check that the instance's name"
868 460d22be Iustin Pop
                             " is resolvable")
869 460d22be Iustin Pop
870 7d3a9fab Iustin Pop
NET_OPT = cli_option("--net",
871 7d3a9fab Iustin Pop
                     help="NIC parameters", default=[],
872 7d3a9fab Iustin Pop
                     dest="nics", action="append", type="identkeyval")
873 e3876ccb Iustin Pop
874 e3876ccb Iustin Pop
DISK_OPT = cli_option("--disk", help="Disk parameters", default=[],
875 e3876ccb Iustin Pop
                      dest="disks", action="append", type="identkeyval")
876 91e0748c Iustin Pop
877 4b038a1e Iustin Pop
DISKIDX_OPT = cli_option("--disks", dest="disks", default=None,
878 4b038a1e Iustin Pop
                         help="Comma-separated list of disks"
879 4b038a1e Iustin Pop
                         " indices to act on (e.g. 0,2) (optional,"
880 4b038a1e Iustin Pop
                         " defaults to all disks)")
881 4b038a1e Iustin Pop
882 ff00c1a7 Iustin Pop
OS_SIZE_OPT = cli_option("-s", "--os-size", dest="sd_size",
883 ff00c1a7 Iustin Pop
                         help="Enforces a single-disk configuration using the"
884 ff00c1a7 Iustin Pop
                         " given disk size, in MiB unless a suffix is used",
885 ff00c1a7 Iustin Pop
                         default=None, type="unit", metavar="<size>")
886 ff00c1a7 Iustin Pop
887 82a786d5 Iustin Pop
IGNORE_CONSIST_OPT = cli_option("--ignore-consistency",
888 82a786d5 Iustin Pop
                                dest="ignore_consistency",
889 82a786d5 Iustin Pop
                                action="store_true", default=False,
890 82a786d5 Iustin Pop
                                help="Ignore the consistency of the disks on"
891 82a786d5 Iustin Pop
                                " the secondary")
892 82a786d5 Iustin Pop
893 e9c487be René Nussbaumer
ALLOW_FAILOVER_OPT = cli_option("--allow-failover",
894 e9c487be René Nussbaumer
                                dest="allow_failover",
895 e9c487be René Nussbaumer
                                action="store_true", default=False,
896 e9c487be René Nussbaumer
                                help="If migration is not possible fallback to"
897 e9c487be René Nussbaumer
                                     " failover")
898 e9c487be René Nussbaumer
899 f2a0828c Iustin Pop
NONLIVE_OPT = cli_option("--non-live", dest="live",
900 f2a0828c Iustin Pop
                         default=True, action="store_false",
901 f2a0828c Iustin Pop
                         help="Do a non-live migration (this usually means"
902 f2a0828c Iustin Pop
                         " freeze the instance, save the state, transfer and"
903 f2a0828c Iustin Pop
                         " only then resume running on the secondary node)")
904 f2a0828c Iustin Pop
905 783a6c0b Iustin Pop
MIGRATION_MODE_OPT = cli_option("--migration-mode", dest="migration_mode",
906 e71b9ef4 Iustin Pop
                                default=None,
907 783a6c0b Iustin Pop
                                choices=list(constants.HT_MIGRATION_MODES),
908 783a6c0b Iustin Pop
                                help="Override default migration mode (choose"
909 e71b9ef4 Iustin Pop
                                " either live or non-live")
910 e71b9ef4 Iustin Pop
911 990b7886 Iustin Pop
NODE_PLACEMENT_OPT = cli_option("-n", "--node", dest="node",
912 990b7886 Iustin Pop
                                help="Target node and optional secondary node",
913 990b7886 Iustin Pop
                                metavar="<pnode>[:<snode>]",
914 990b7886 Iustin Pop
                                completion_suggest=OPT_COMPL_INST_ADD_NODES)
915 990b7886 Iustin Pop
916 7edc4637 Iustin Pop
NODE_LIST_OPT = cli_option("-n", "--node", dest="nodes", default=[],
917 7edc4637 Iustin Pop
                           action="append", metavar="<node>",
918 7edc4637 Iustin Pop
                           help="Use only this node (can be used multiple"
919 7edc4637 Iustin Pop
                           " times, if not given defaults to all nodes)",
920 7edc4637 Iustin Pop
                           completion_suggest=OPT_COMPL_ONE_NODE)
921 f36d7d81 Iustin Pop
922 21ee2318 Michael Hanselmann
NODEGROUP_OPT_NAME = "--node-group"
923 21ee2318 Michael Hanselmann
NODEGROUP_OPT = cli_option("-g", NODEGROUP_OPT_NAME,
924 5fbbd028 Guido Trotter
                           dest="nodegroup",
925 5fbbd028 Guido Trotter
                           help="Node group (name or uuid)",
926 5fbbd028 Guido Trotter
                           metavar="<nodegroup>",
927 5fbbd028 Guido Trotter
                           default=None, type="string",
928 5fbbd028 Guido Trotter
                           completion_suggest=OPT_COMPL_ONE_NODEGROUP)
929 5fbbd028 Guido Trotter
930 f36d7d81 Iustin Pop
SINGLE_NODE_OPT = cli_option("-n", "--node", dest="node", help="Target node",
931 f36d7d81 Iustin Pop
                             metavar="<node>",
932 f36d7d81 Iustin Pop
                             completion_suggest=OPT_COMPL_ONE_NODE)
933 7edc4637 Iustin Pop
934 edeb878a Iustin Pop
NOSTART_OPT = cli_option("--no-start", dest="start", default=True,
935 edeb878a Iustin Pop
                         action="store_false",
936 edeb878a Iustin Pop
                         help="Don't start the instance after creation")
937 edeb878a Iustin Pop
938 fdcf4d84 Iustin Pop
SHOWCMD_OPT = cli_option("--show-cmd", dest="show_command",
939 fdcf4d84 Iustin Pop
                         action="store_true", default=False,
940 fdcf4d84 Iustin Pop
                         help="Show command instead of executing it")
941 fdcf4d84 Iustin Pop
942 baef337d Iustin Pop
CLEANUP_OPT = cli_option("--cleanup", dest="cleanup",
943 baef337d Iustin Pop
                         default=False, action="store_true",
944 baef337d Iustin Pop
                         help="Instead of performing the migration, try to"
945 baef337d Iustin Pop
                         " recover from a failed cleanup. This is safe"
946 baef337d Iustin Pop
                         " to run even if the instance is healthy, but it"
947 baef337d Iustin Pop
                         " will create extra replication traffic and "
948 baef337d Iustin Pop
                         " disrupt briefly the replication (like during the"
949 baef337d Iustin Pop
                         " migration")
950 baef337d Iustin Pop
951 99a8c799 Iustin Pop
STATIC_OPT = cli_option("-s", "--static", dest="static",
952 99a8c799 Iustin Pop
                        action="store_true", default=False,
953 99a8c799 Iustin Pop
                        help="Only show configuration data, not runtime data")
954 99a8c799 Iustin Pop
955 2d5e7ae1 Iustin Pop
ALL_OPT = cli_option("--all", dest="show_all",
956 2d5e7ae1 Iustin Pop
                     default=False, action="store_true",
957 2d5e7ae1 Iustin Pop
                     help="Show info on all instances on the cluster."
958 2d5e7ae1 Iustin Pop
                     " This can take a long time to run, use wisely")
959 2d5e7ae1 Iustin Pop
960 67840b40 Iustin Pop
SELECT_OS_OPT = cli_option("--select-os", dest="select_os",
961 67840b40 Iustin Pop
                           action="store_true", default=False,
962 67840b40 Iustin Pop
                           help="Interactive OS reinstall, lists available"
963 67840b40 Iustin Pop
                           " OS templates for selection")
964 2d5e7ae1 Iustin Pop
965 b6e841a8 Iustin Pop
IGNORE_FAILURES_OPT = cli_option("--ignore-failures", dest="ignore_failures",
966 b6e841a8 Iustin Pop
                                 action="store_true", default=False,
967 b6e841a8 Iustin Pop
                                 help="Remove the instance from the cluster"
968 b6e841a8 Iustin Pop
                                 " configuration even if there are failures"
969 b6e841a8 Iustin Pop
                                 " during the removal process")
970 b6e841a8 Iustin Pop
971 8d8d650c Michael Hanselmann
IGNORE_REMOVE_FAILURES_OPT = cli_option("--ignore-remove-failures",
972 8d8d650c Michael Hanselmann
                                        dest="ignore_remove_failures",
973 8d8d650c Michael Hanselmann
                                        action="store_true", default=False,
974 8d8d650c Michael Hanselmann
                                        help="Remove the instance from the"
975 8d8d650c Michael Hanselmann
                                        " cluster configuration even if there"
976 8d8d650c Michael Hanselmann
                                        " are failures during the removal"
977 8d8d650c Michael Hanselmann
                                        " process")
978 8d8d650c Michael Hanselmann
979 8d8d650c Michael Hanselmann
REMOVE_INSTANCE_OPT = cli_option("--remove-instance", dest="remove_instance",
980 8d8d650c Michael Hanselmann
                                 action="store_true", default=False,
981 8d8d650c Michael Hanselmann
                                 help="Remove the instance from the cluster")
982 8d8d650c Michael Hanselmann
983 1b7761fd Apollon Oikonomopoulos
DST_NODE_OPT = cli_option("-n", "--target-node", dest="dst_node",
984 1b7761fd Apollon Oikonomopoulos
                               help="Specifies the new node for the instance",
985 1b7761fd Apollon Oikonomopoulos
                               metavar="NODE", default=None,
986 1b7761fd Apollon Oikonomopoulos
                               completion_suggest=OPT_COMPL_ONE_NODE)
987 1b7761fd Apollon Oikonomopoulos
988 a14db5ff Iustin Pop
NEW_SECONDARY_OPT = cli_option("-n", "--new-secondary", dest="dst_node",
989 a14db5ff Iustin Pop
                               help="Specifies the new secondary node",
990 a14db5ff Iustin Pop
                               metavar="NODE", default=None,
991 a14db5ff Iustin Pop
                               completion_suggest=OPT_COMPL_ONE_NODE)
992 a14db5ff Iustin Pop
993 a72d0a79 Iustin Pop
ON_PRIMARY_OPT = cli_option("-p", "--on-primary", dest="on_primary",
994 a72d0a79 Iustin Pop
                            default=False, action="store_true",
995 a72d0a79 Iustin Pop
                            help="Replace the disk(s) on the primary"
996 235407ba Michael Hanselmann
                                 " node (applies only to internally mirrored"
997 235407ba Michael Hanselmann
                                 " disk templates, e.g. %s)" %
998 235407ba Michael Hanselmann
                                 utils.CommaJoin(constants.DTS_INT_MIRROR))
999 feb09e6a Iustin Pop
1000 feb09e6a Iustin Pop
ON_SECONDARY_OPT = cli_option("-s", "--on-secondary", dest="on_secondary",
1001 feb09e6a Iustin Pop
                              default=False, action="store_true",
1002 feb09e6a Iustin Pop
                              help="Replace the disk(s) on the secondary"
1003 235407ba Michael Hanselmann
                                   " node (applies only to internally mirrored"
1004 235407ba Michael Hanselmann
                                   " disk templates, e.g. %s)" %
1005 235407ba Michael Hanselmann
                                   utils.CommaJoin(constants.DTS_INT_MIRROR))
1006 e00f7a05 Iustin Pop
1007 4c61d894 Iustin Pop
AUTO_PROMOTE_OPT = cli_option("--auto-promote", dest="auto_promote",
1008 4c61d894 Iustin Pop
                              default=False, action="store_true",
1009 4c61d894 Iustin Pop
                              help="Lock all nodes and auto-promote as needed"
1010 4c61d894 Iustin Pop
                              " to MC status")
1011 4c61d894 Iustin Pop
1012 e00f7a05 Iustin Pop
AUTO_REPLACE_OPT = cli_option("-a", "--auto", dest="auto",
1013 e00f7a05 Iustin Pop
                              default=False, action="store_true",
1014 e00f7a05 Iustin Pop
                              help="Automatically replace faulty disks"
1015 235407ba Michael Hanselmann
                                   " (applies only to internally mirrored"
1016 235407ba Michael Hanselmann
                                   " disk templates, e.g. %s)" %
1017 235407ba Michael Hanselmann
                                   utils.CommaJoin(constants.DTS_INT_MIRROR))
1018 a72d0a79 Iustin Pop
1019 05586c90 Iustin Pop
IGNORE_SIZE_OPT = cli_option("--ignore-size", dest="ignore_size",
1020 05586c90 Iustin Pop
                             default=False, action="store_true",
1021 05586c90 Iustin Pop
                             help="Ignore current recorded size"
1022 05586c90 Iustin Pop
                             " (useful for forcing activation when"
1023 05586c90 Iustin Pop
                             " the recorded size is wrong)")
1024 05586c90 Iustin Pop
1025 df62e5db Iustin Pop
SRC_NODE_OPT = cli_option("--src-node", dest="src_node", help="Source node",
1026 df62e5db Iustin Pop
                          metavar="<node>",
1027 df62e5db Iustin Pop
                          completion_suggest=OPT_COMPL_ONE_NODE)
1028 df62e5db Iustin Pop
1029 df62e5db Iustin Pop
SRC_DIR_OPT = cli_option("--src-dir", dest="src_dir", help="Source directory",
1030 df62e5db Iustin Pop
                         metavar="<dir>")
1031 df62e5db Iustin Pop
1032 8d823629 Iustin Pop
SECONDARY_IP_OPT = cli_option("-s", "--secondary-ip", dest="secondary_ip",
1033 8d823629 Iustin Pop
                              help="Specify the secondary ip for the node",
1034 8d823629 Iustin Pop
                              metavar="ADDRESS", default=None)
1035 8d823629 Iustin Pop
1036 b8d0f938 Iustin Pop
READD_OPT = cli_option("--readd", dest="readd",
1037 b8d0f938 Iustin Pop
                       default=False, action="store_true",
1038 b8d0f938 Iustin Pop
                       help="Readd old node after replacing it")
1039 b8d0f938 Iustin Pop
1040 fcdde7f2 Iustin Pop
NOSSH_KEYCHECK_OPT = cli_option("--no-ssh-key-check", dest="ssh_key_check",
1041 fcdde7f2 Iustin Pop
                                default=True, action="store_false",
1042 fcdde7f2 Iustin Pop
                                help="Disable SSH key fingerprint checking")
1043 fcdde7f2 Iustin Pop
1044 61413377 Stephen Shirley
NODE_FORCE_JOIN_OPT = cli_option("--force-join", dest="force_join",
1045 61413377 Stephen Shirley
                                 default=False, action="store_true",
1046 50769215 Stephen Shirley
                                 help="Force the joining of a node")
1047 61413377 Stephen Shirley
1048 771734c9 Iustin Pop
MC_OPT = cli_option("-C", "--master-candidate", dest="master_candidate",
1049 e7b61bb0 Iustin Pop
                    type="bool", default=None, metavar=_YORNO,
1050 771734c9 Iustin Pop
                    help="Set the master_candidate flag on the node")
1051 771734c9 Iustin Pop
1052 771734c9 Iustin Pop
OFFLINE_OPT = cli_option("-O", "--offline", dest="offline", metavar=_YORNO,
1053 e7b61bb0 Iustin Pop
                         type="bool", default=None,
1054 34616379 Michael Hanselmann
                         help=("Set the offline flag on the node"
1055 34616379 Michael Hanselmann
                               " (cluster does not communicate with offline"
1056 34616379 Michael Hanselmann
                               " nodes)"))
1057 771734c9 Iustin Pop
1058 771734c9 Iustin Pop
DRAINED_OPT = cli_option("-D", "--drained", dest="drained", metavar=_YORNO,
1059 e7b61bb0 Iustin Pop
                         type="bool", default=None,
1060 34616379 Michael Hanselmann
                         help=("Set the drained flag on the node"
1061 34616379 Michael Hanselmann
                               " (excluded from allocation operations)"))
1062 771734c9 Iustin Pop
1063 f91e255a Iustin Pop
CAPAB_MASTER_OPT = cli_option("--master-capable", dest="master_capable",
1064 f91e255a Iustin Pop
                    type="bool", default=None, metavar=_YORNO,
1065 f91e255a Iustin Pop
                    help="Set the master_capable flag on the node")
1066 f91e255a Iustin Pop
1067 53919782 Iustin Pop
CAPAB_VM_OPT = cli_option("--vm-capable", dest="vm_capable",
1068 53919782 Iustin Pop
                    type="bool", default=None, metavar=_YORNO,
1069 53919782 Iustin Pop
                    help="Set the vm_capable flag on the node")
1070 53919782 Iustin Pop
1071 e7e09483 Iustin Pop
ALLOCATABLE_OPT = cli_option("--allocatable", dest="allocatable",
1072 e7b61bb0 Iustin Pop
                             type="bool", default=None, metavar=_YORNO,
1073 e7e09483 Iustin Pop
                             help="Set the allocatable flag on a volume")
1074 e7e09483 Iustin Pop
1075 831040bf Iustin Pop
NOLVM_STORAGE_OPT = cli_option("--no-lvm-storage", dest="lvm_storage",
1076 831040bf Iustin Pop
                               help="Disable support for lvm based instances"
1077 831040bf Iustin Pop
                               " (cluster-wide)",
1078 831040bf Iustin Pop
                               action="store_false", default=True)
1079 831040bf Iustin Pop
1080 383a3591 Iustin Pop
ENABLED_HV_OPT = cli_option("--enabled-hypervisors",
1081 383a3591 Iustin Pop
                            dest="enabled_hypervisors",
1082 383a3591 Iustin Pop
                            help="Comma-separated list of hypervisors",
1083 383a3591 Iustin Pop
                            type="string", default=None)
1084 383a3591 Iustin Pop
1085 4fbc93dd Iustin Pop
NIC_PARAMS_OPT = cli_option("-N", "--nic-parameters", dest="nicparams",
1086 4fbc93dd Iustin Pop
                            type="keyval", default={},
1087 4fbc93dd Iustin Pop
                            help="NIC parameters")
1088 4fbc93dd Iustin Pop
1089 e32df528 Iustin Pop
CP_SIZE_OPT = cli_option("-C", "--candidate-pool-size", default=None,
1090 e32df528 Iustin Pop
                         dest="candidate_pool_size", type="int",
1091 e32df528 Iustin Pop
                         help="Set the candidate pool size")
1092 e32df528 Iustin Pop
1093 04367e70 Guido Trotter
VG_NAME_OPT = cli_option("--vg-name", dest="vg_name",
1094 34616379 Michael Hanselmann
                         help=("Enables LVM and specifies the volume group"
1095 34616379 Michael Hanselmann
                               " name (cluster-wide) for disk allocation"
1096 34616379 Michael Hanselmann
                               " [%s]" % constants.DEFAULT_VG),
1097 b58726e8 Iustin Pop
                         metavar="VG", default=None)
1098 b58726e8 Iustin Pop
1099 a3ac3243 Iustin Pop
YES_DOIT_OPT = cli_option("--yes-do-it", "--ya-rly", dest="yes_do_it",
1100 1f587d3d Iustin Pop
                          help="Destroy cluster", action="store_true")
1101 b58726e8 Iustin Pop
1102 58371861 Iustin Pop
NOVOTING_OPT = cli_option("--no-voting", dest="no_voting",
1103 58371861 Iustin Pop
                          help="Skip node agreement check (dangerous)",
1104 58371861 Iustin Pop
                          action="store_true", default=False)
1105 58371861 Iustin Pop
1106 e3646f22 Iustin Pop
MAC_PREFIX_OPT = cli_option("-m", "--mac-prefix", dest="mac_prefix",
1107 e3646f22 Iustin Pop
                            help="Specify the mac prefix for the instance IP"
1108 e3646f22 Iustin Pop
                            " addresses, in the format XX:XX:XX",
1109 e3646f22 Iustin Pop
                            metavar="PREFIX",
1110 e3646f22 Iustin Pop
                            default=None)
1111 e3646f22 Iustin Pop
1112 29392516 Iustin Pop
MASTER_NETDEV_OPT = cli_option("--master-netdev", dest="master_netdev",
1113 29392516 Iustin Pop
                               help="Specify the node interface (cluster-wide)"
1114 25be0c75 Guido Trotter
                               " on which the master IP address will be added"
1115 25be0c75 Guido Trotter
                               " (cluster init default: %s)" %
1116 25be0c75 Guido Trotter
                               constants.DEFAULT_BRIDGE,
1117 29392516 Iustin Pop
                               metavar="NETDEV",
1118 25be0c75 Guido Trotter
                               default=None)
1119 29392516 Iustin Pop
1120 5a8648eb Andrea Spadaccini
MASTER_NETMASK_OPT = cli_option("--master-netmask", dest="master_netmask",
1121 5a8648eb Andrea Spadaccini
                                help="Specify the netmask of the master IP",
1122 5a8648eb Andrea Spadaccini
                                metavar="NETMASK",
1123 5a8648eb Andrea Spadaccini
                                default=None)
1124 5a8648eb Andrea Spadaccini
1125 bf689b7a Andrea Spadaccini
USE_EXTERNAL_MIP_SCRIPT = cli_option("--use-external-mip-script",
1126 bf689b7a Andrea Spadaccini
                                dest="use_external_mip_script",
1127 bf689b7a Andrea Spadaccini
                                help="Specify whether to run a user-provided"
1128 bf689b7a Andrea Spadaccini
                                " script for the master IP address turnup and"
1129 bf689b7a Andrea Spadaccini
                                " turndown operations",
1130 bf689b7a Andrea Spadaccini
                                type="bool", metavar=_YORNO, default=None)
1131 bf689b7a Andrea Spadaccini
1132 29392516 Iustin Pop
GLOBAL_FILEDIR_OPT = cli_option("--file-storage-dir", dest="file_storage_dir",
1133 29392516 Iustin Pop
                                help="Specify the default directory (cluster-"
1134 29392516 Iustin Pop
                                "wide) for storing the file-based disks [%s]" %
1135 29392516 Iustin Pop
                                constants.DEFAULT_FILE_STORAGE_DIR,
1136 29392516 Iustin Pop
                                metavar="DIR",
1137 29392516 Iustin Pop
                                default=constants.DEFAULT_FILE_STORAGE_DIR)
1138 4b97f902 Apollon Oikonomopoulos
1139 4b97f902 Apollon Oikonomopoulos
GLOBAL_SHARED_FILEDIR_OPT = cli_option("--shared-file-storage-dir",
1140 4b97f902 Apollon Oikonomopoulos
                            dest="shared_file_storage_dir",
1141 4b97f902 Apollon Oikonomopoulos
                            help="Specify the default directory (cluster-"
1142 4b97f902 Apollon Oikonomopoulos
                            "wide) for storing the shared file-based"
1143 4b97f902 Apollon Oikonomopoulos
                            " disks [%s]" %
1144 4b97f902 Apollon Oikonomopoulos
                            constants.DEFAULT_SHARED_FILE_STORAGE_DIR,
1145 4b97f902 Apollon Oikonomopoulos
                            metavar="SHAREDDIR",
1146 4b97f902 Apollon Oikonomopoulos
                            default=constants.DEFAULT_SHARED_FILE_STORAGE_DIR)
1147 29392516 Iustin Pop
1148 29392516 Iustin Pop
NOMODIFY_ETCHOSTS_OPT = cli_option("--no-etc-hosts", dest="modify_etc_hosts",
1149 29392516 Iustin Pop
                                   help="Don't modify /etc/hosts",
1150 29392516 Iustin Pop
                                   action="store_false", default=True)
1151 29392516 Iustin Pop
1152 b989b9d9 Ken Wehr
NOMODIFY_SSH_SETUP_OPT = cli_option("--no-ssh-init", dest="modify_ssh_setup",
1153 b989b9d9 Ken Wehr
                                    help="Don't initialize SSH keys",
1154 b989b9d9 Ken Wehr
                                    action="store_false", default=True)
1155 b989b9d9 Ken Wehr
1156 14e9e7f3 Iustin Pop
ERROR_CODES_OPT = cli_option("--error-codes", dest="error_codes",
1157 14e9e7f3 Iustin Pop
                             help="Enable parseable error messages",
1158 14e9e7f3 Iustin Pop
                             action="store_true", default=False)
1159 14e9e7f3 Iustin Pop
1160 14e9e7f3 Iustin Pop
NONPLUS1_OPT = cli_option("--no-nplus1-mem", dest="skip_nplusone_mem",
1161 14e9e7f3 Iustin Pop
                          help="Skip N+1 memory redundancy tests",
1162 14e9e7f3 Iustin Pop
                          action="store_true", default=False)
1163 14e9e7f3 Iustin Pop
1164 12054861 Iustin Pop
REBOOT_TYPE_OPT = cli_option("-t", "--type", dest="reboot_type",
1165 12054861 Iustin Pop
                             help="Type of reboot: soft/hard/full",
1166 12054861 Iustin Pop
                             default=constants.INSTANCE_REBOOT_HARD,
1167 12054861 Iustin Pop
                             metavar="<REBOOT>",
1168 12054861 Iustin Pop
                             choices=list(constants.REBOOT_TYPES))
1169 12054861 Iustin Pop
1170 ee3f9578 Iustin Pop
IGNORE_SECONDARIES_OPT = cli_option("--ignore-secondaries",
1171 ee3f9578 Iustin Pop
                                    dest="ignore_secondaries",
1172 ee3f9578 Iustin Pop
                                    default=False, action="store_true",
1173 ee3f9578 Iustin Pop
                                    help="Ignore errors from secondaries")
1174 ee3f9578 Iustin Pop
1175 69b99987 Michael Hanselmann
NOSHUTDOWN_OPT = cli_option("--noshutdown", dest="shutdown",
1176 44c44832 Iustin Pop
                            action="store_false", default=True,
1177 44c44832 Iustin Pop
                            help="Don't shutdown the instance (unsafe)")
1178 44c44832 Iustin Pop
1179 b5762e2a Guido Trotter
TIMEOUT_OPT = cli_option("--timeout", dest="timeout", type="int",
1180 b5762e2a Guido Trotter
                         default=constants.DEFAULT_SHUTDOWN_TIMEOUT,
1181 b5762e2a Guido Trotter
                         help="Maximum time to wait")
1182 44c44832 Iustin Pop
1183 4d98c565 Guido Trotter
SHUTDOWN_TIMEOUT_OPT = cli_option("--shutdown-timeout",
1184 4d98c565 Guido Trotter
                         dest="shutdown_timeout", type="int",
1185 7e5eaaa8 Guido Trotter
                         default=constants.DEFAULT_SHUTDOWN_TIMEOUT,
1186 7e5eaaa8 Guido Trotter
                         help="Maximum time to wait for instance shutdown")
1187 7e5eaaa8 Guido Trotter
1188 19b9ba9a Michael Hanselmann
INTERVAL_OPT = cli_option("--interval", dest="interval", type="int",
1189 19b9ba9a Michael Hanselmann
                          default=None,
1190 19b9ba9a Michael Hanselmann
                          help=("Number of seconds between repetions of the"
1191 19b9ba9a Michael Hanselmann
                                " command"))
1192 19b9ba9a Michael Hanselmann
1193 7ea7bcf6 Iustin Pop
EARLY_RELEASE_OPT = cli_option("--early-release",
1194 7ea7bcf6 Iustin Pop
                               dest="early_release", default=False,
1195 7ea7bcf6 Iustin Pop
                               action="store_true",
1196 7ea7bcf6 Iustin Pop
                               help="Release the locks on the secondary"
1197 7ea7bcf6 Iustin Pop
                               " node(s) early")
1198 7ea7bcf6 Iustin Pop
1199 6d4a1656 Michael Hanselmann
NEW_CLUSTER_CERT_OPT = cli_option("--new-cluster-certificate",
1200 6d4a1656 Michael Hanselmann
                                  dest="new_cluster_cert",
1201 6d4a1656 Michael Hanselmann
                                  default=False, action="store_true",
1202 6d4a1656 Michael Hanselmann
                                  help="Generate a new cluster certificate")
1203 6d4a1656 Michael Hanselmann
1204 6d4a1656 Michael Hanselmann
RAPI_CERT_OPT = cli_option("--rapi-certificate", dest="rapi_cert",
1205 6d4a1656 Michael Hanselmann
                           default=None,
1206 6d4a1656 Michael Hanselmann
                           help="File containing new RAPI certificate")
1207 6d4a1656 Michael Hanselmann
1208 6d4a1656 Michael Hanselmann
NEW_RAPI_CERT_OPT = cli_option("--new-rapi-certificate", dest="new_rapi_cert",
1209 6d4a1656 Michael Hanselmann
                               default=None, action="store_true",
1210 6d4a1656 Michael Hanselmann
                               help=("Generate a new self-signed RAPI"
1211 6d4a1656 Michael Hanselmann
                                     " certificate"))
1212 6d4a1656 Michael Hanselmann
1213 b6267745 Andrea Spadaccini
SPICE_CERT_OPT = cli_option("--spice-certificate", dest="spice_cert",
1214 b6267745 Andrea Spadaccini
                           default=None,
1215 b6267745 Andrea Spadaccini
                           help="File containing new SPICE certificate")
1216 b6267745 Andrea Spadaccini
1217 b6267745 Andrea Spadaccini
SPICE_CACERT_OPT = cli_option("--spice-ca-certificate", dest="spice_cacert",
1218 b6267745 Andrea Spadaccini
                           default=None,
1219 b6267745 Andrea Spadaccini
                           help="File containing the certificate of the CA"
1220 b6267745 Andrea Spadaccini
                                " which signed the SPICE certificate")
1221 b6267745 Andrea Spadaccini
1222 b6267745 Andrea Spadaccini
NEW_SPICE_CERT_OPT = cli_option("--new-spice-certificate",
1223 b6267745 Andrea Spadaccini
                               dest="new_spice_cert", default=None,
1224 b6267745 Andrea Spadaccini
                               action="store_true",
1225 b6267745 Andrea Spadaccini
                               help=("Generate a new self-signed SPICE"
1226 b6267745 Andrea Spadaccini
                                     " certificate"))
1227 b6267745 Andrea Spadaccini
1228 6b7d5878 Michael Hanselmann
NEW_CONFD_HMAC_KEY_OPT = cli_option("--new-confd-hmac-key",
1229 6b7d5878 Michael Hanselmann
                                    dest="new_confd_hmac_key",
1230 6b7d5878 Michael Hanselmann
                                    default=False, action="store_true",
1231 6b7d5878 Michael Hanselmann
                                    help=("Create a new HMAC key for %s" %
1232 6b7d5878 Michael Hanselmann
                                          constants.CONFD))
1233 6d4a1656 Michael Hanselmann
1234 3db3eb2a Michael Hanselmann
CLUSTER_DOMAIN_SECRET_OPT = cli_option("--cluster-domain-secret",
1235 3db3eb2a Michael Hanselmann
                                       dest="cluster_domain_secret",
1236 3db3eb2a Michael Hanselmann
                                       default=None,
1237 3db3eb2a Michael Hanselmann
                                       help=("Load new new cluster domain"
1238 3db3eb2a Michael Hanselmann
                                             " secret from file"))
1239 3db3eb2a Michael Hanselmann
1240 3db3eb2a Michael Hanselmann
NEW_CLUSTER_DOMAIN_SECRET_OPT = cli_option("--new-cluster-domain-secret",
1241 3db3eb2a Michael Hanselmann
                                           dest="new_cluster_domain_secret",
1242 3db3eb2a Michael Hanselmann
                                           default=False, action="store_true",
1243 3db3eb2a Michael Hanselmann
                                           help=("Create a new cluster domain"
1244 3db3eb2a Michael Hanselmann
                                                 " secret"))
1245 3db3eb2a Michael Hanselmann
1246 74adc100 Iustin Pop
USE_REPL_NET_OPT = cli_option("--use-replication-network",
1247 74adc100 Iustin Pop
                              dest="use_replication_network",
1248 74adc100 Iustin Pop
                              help="Whether to use the replication network"
1249 74adc100 Iustin Pop
                              " for talking to the nodes",
1250 74adc100 Iustin Pop
                              action="store_true", default=False)
1251 74adc100 Iustin Pop
1252 3953242f Iustin Pop
MAINTAIN_NODE_HEALTH_OPT = \
1253 3953242f Iustin Pop
    cli_option("--maintain-node-health", dest="maintain_node_health",
1254 3953242f Iustin Pop
               metavar=_YORNO, default=None, type="bool",
1255 3953242f Iustin Pop
               help="Configure the cluster to automatically maintain node"
1256 3953242f Iustin Pop
               " health, by shutting down unknown instances, shutting down"
1257 3953242f Iustin Pop
               " unknown DRBD devices, etc.")
1258 3953242f Iustin Pop
1259 e588764d Iustin Pop
IDENTIFY_DEFAULTS_OPT = \
1260 e588764d Iustin Pop
    cli_option("--identify-defaults", dest="identify_defaults",
1261 e588764d Iustin Pop
               default=False, action="store_true",
1262 e588764d Iustin Pop
               help="Identify which saved instance parameters are equal to"
1263 e588764d Iustin Pop
               " the current cluster defaults and set them as such, instead"
1264 e588764d Iustin Pop
               " of marking them as overridden")
1265 e588764d Iustin Pop
1266 1338f2b4 Balazs Lecz
UIDPOOL_OPT = cli_option("--uid-pool", default=None,
1267 1338f2b4 Balazs Lecz
                         action="store", dest="uid_pool",
1268 1338f2b4 Balazs Lecz
                         help=("A list of user-ids or user-id"
1269 1338f2b4 Balazs Lecz
                               " ranges separated by commas"))
1270 1338f2b4 Balazs Lecz
1271 fdad8c4d Balazs Lecz
ADD_UIDS_OPT = cli_option("--add-uids", default=None,
1272 fdad8c4d Balazs Lecz
                          action="store", dest="add_uids",
1273 fdad8c4d Balazs Lecz
                          help=("A list of user-ids or user-id"
1274 fdad8c4d Balazs Lecz
                                " ranges separated by commas, to be"
1275 fdad8c4d Balazs Lecz
                                " added to the user-id pool"))
1276 fdad8c4d Balazs Lecz
1277 fdad8c4d Balazs Lecz
REMOVE_UIDS_OPT = cli_option("--remove-uids", default=None,
1278 fdad8c4d Balazs Lecz
                             action="store", dest="remove_uids",
1279 fdad8c4d Balazs Lecz
                             help=("A list of user-ids or user-id"
1280 fdad8c4d Balazs Lecz
                                   " ranges separated by commas, to be"
1281 fdad8c4d Balazs Lecz
                                   " removed from the user-id pool"))
1282 fdad8c4d Balazs Lecz
1283 f38ea602 Iustin Pop
RESERVED_LVS_OPT = cli_option("--reserved-lvs", default=None,
1284 f38ea602 Iustin Pop
                             action="store", dest="reserved_lvs",
1285 f38ea602 Iustin Pop
                             help=("A comma-separated list of reserved"
1286 f38ea602 Iustin Pop
                                   " logical volumes names, that will be"
1287 f38ea602 Iustin Pop
                                   " ignored by cluster verify"))
1288 f38ea602 Iustin Pop
1289 31d97b2a Guido Trotter
ROMAN_OPT = cli_option("--roman",
1290 31d97b2a Guido Trotter
                       dest="roman_integers", default=False,
1291 31d97b2a Guido Trotter
                       action="store_true",
1292 31d97b2a Guido Trotter
                       help="Use roman numbers for positive integers")
1293 31d97b2a Guido Trotter
1294 26591bfd Luca Bigliardi
DRBD_HELPER_OPT = cli_option("--drbd-usermode-helper", dest="drbd_helper",
1295 26591bfd Luca Bigliardi
                             action="store", default=None,
1296 26591bfd Luca Bigliardi
                             help="Specifies usermode helper for DRBD")
1297 26591bfd Luca Bigliardi
1298 26591bfd Luca Bigliardi
NODRBD_STORAGE_OPT = cli_option("--no-drbd-storage", dest="drbd_storage",
1299 26591bfd Luca Bigliardi
                                action="store_false", default=True,
1300 26591bfd Luca Bigliardi
                                help="Disable support for DRBD")
1301 31d97b2a Guido Trotter
1302 e7323b5e Manuel Franceschini
PRIMARY_IP_VERSION_OPT = \
1303 e7323b5e Manuel Franceschini
    cli_option("--primary-ip-version", default=constants.IP4_VERSION,
1304 e7323b5e Manuel Franceschini
               action="store", dest="primary_ip_version",
1305 e7323b5e Manuel Franceschini
               metavar="%d|%d" % (constants.IP4_VERSION,
1306 e7323b5e Manuel Franceschini
                                  constants.IP6_VERSION),
1307 e7323b5e Manuel Franceschini
               help="Cluster-wide IP version for primary IP")
1308 e7323b5e Manuel Franceschini
1309 84a5b33c Michael Hanselmann
PRIORITY_OPT = cli_option("--priority", default=None, dest="priority",
1310 84a5b33c Michael Hanselmann
                          metavar="|".join(name for name, _ in _PRIORITY_NAMES),
1311 84a5b33c Michael Hanselmann
                          choices=_PRIONAME_TO_VALUE.keys(),
1312 aa06f8c6 Michael Hanselmann
                          help="Priority for opcode processing")
1313 84a5b33c Michael Hanselmann
1314 61a14bb3 Iustin Pop
HID_OS_OPT = cli_option("--hidden", dest="hidden",
1315 61a14bb3 Iustin Pop
                        type="bool", default=None, metavar=_YORNO,
1316 61a14bb3 Iustin Pop
                        help="Sets the hidden flag on the OS")
1317 61a14bb3 Iustin Pop
1318 61a14bb3 Iustin Pop
BLK_OS_OPT = cli_option("--blacklisted", dest="blacklisted",
1319 61a14bb3 Iustin Pop
                        type="bool", default=None, metavar=_YORNO,
1320 61a14bb3 Iustin Pop
                        help="Sets the blacklisted flag on the OS")
1321 61a14bb3 Iustin Pop
1322 b883637f René Nussbaumer
PREALLOC_WIPE_DISKS_OPT = cli_option("--prealloc-wipe-disks", default=None,
1323 b883637f René Nussbaumer
                                     type="bool", metavar=_YORNO,
1324 b883637f René Nussbaumer
                                     dest="prealloc_wipe_disks",
1325 b883637f René Nussbaumer
                                     help=("Wipe disks prior to instance"
1326 b883637f René Nussbaumer
                                           " creation"))
1327 b883637f René Nussbaumer
1328 a535cef7 René Nussbaumer
NODE_PARAMS_OPT = cli_option("--node-parameters", dest="ndparams",
1329 3c2b6a98 René Nussbaumer
                             type="keyval", default=None,
1330 a535cef7 René Nussbaumer
                             help="Node parameters")
1331 a535cef7 René Nussbaumer
1332 90e99856 Adeodato Simo
ALLOC_POLICY_OPT = cli_option("--alloc-policy", dest="alloc_policy",
1333 90e99856 Adeodato Simo
                              action="store", metavar="POLICY", default=None,
1334 90e99856 Adeodato Simo
                              help="Allocation policy for the node group")
1335 90e99856 Adeodato Simo
1336 d2881c71 René Nussbaumer
NODE_POWERED_OPT = cli_option("--node-powered", default=None,
1337 d2881c71 René Nussbaumer
                              type="bool", metavar=_YORNO,
1338 d2881c71 René Nussbaumer
                              dest="node_powered",
1339 d2881c71 René Nussbaumer
                              help="Specify if the SoR for node is powered")
1340 d2881c71 René Nussbaumer
1341 41543d8b René Nussbaumer
OOB_TIMEOUT_OPT = cli_option("--oob-timeout", dest="oob_timeout", type="int",
1342 41543d8b René Nussbaumer
                         default=constants.OOB_TIMEOUT,
1343 41543d8b René Nussbaumer
                         help="Maximum time to wait for out-of-band helper")
1344 41543d8b René Nussbaumer
1345 0c086a13 René Nussbaumer
POWER_DELAY_OPT = cli_option("--power-delay", dest="power_delay", type="float",
1346 0c086a13 René Nussbaumer
                             default=constants.OOB_POWER_DELAY,
1347 0c086a13 René Nussbaumer
                             help="Time in seconds to wait between power-ons")
1348 0c086a13 René Nussbaumer
1349 442587bf Michael Hanselmann
FORCE_FILTER_OPT = cli_option("-F", "--filter", dest="force_filter",
1350 442587bf Michael Hanselmann
                              action="store_true", default=False,
1351 442587bf Michael Hanselmann
                              help=("Whether command argument should be treated"
1352 442587bf Michael Hanselmann
                                    " as filter"))
1353 442587bf Michael Hanselmann
1354 885a0fc4 Iustin Pop
NO_REMEMBER_OPT = cli_option("--no-remember",
1355 885a0fc4 Iustin Pop
                             dest="no_remember",
1356 885a0fc4 Iustin Pop
                             action="store_true", default=False,
1357 885a0fc4 Iustin Pop
                             help="Perform but do not record the change"
1358 885a0fc4 Iustin Pop
                             " in the configuration")
1359 885a0fc4 Iustin Pop
1360 aafee533 Michael Hanselmann
PRIMARY_ONLY_OPT = cli_option("-p", "--primary-only",
1361 aafee533 Michael Hanselmann
                              default=False, action="store_true",
1362 aafee533 Michael Hanselmann
                              help="Evacuate primary instances only")
1363 aafee533 Michael Hanselmann
1364 aafee533 Michael Hanselmann
SECONDARY_ONLY_OPT = cli_option("-s", "--secondary-only",
1365 aafee533 Michael Hanselmann
                                default=False, action="store_true",
1366 aafee533 Michael Hanselmann
                                help="Evacuate secondary instances only"
1367 aafee533 Michael Hanselmann
                                     " (applies only to internally mirrored"
1368 aafee533 Michael Hanselmann
                                     " disk templates, e.g. %s)" %
1369 aafee533 Michael Hanselmann
                                     utils.CommaJoin(constants.DTS_INT_MIRROR))
1370 aafee533 Michael Hanselmann
1371 323f9095 Stephen Shirley
STARTUP_PAUSED_OPT = cli_option("--paused", dest="startup_paused",
1372 323f9095 Stephen Shirley
                                action="store_true", default=False,
1373 323f9095 Stephen Shirley
                                help="Pause instance at startup")
1374 323f9095 Stephen Shirley
1375 f6eb380d Michael Hanselmann
TO_GROUP_OPT = cli_option("--to", dest="to", metavar="<group>",
1376 f6eb380d Michael Hanselmann
                          help="Destination node group (name or uuid)",
1377 f6eb380d Michael Hanselmann
                          default=None, action="append",
1378 f6eb380d Michael Hanselmann
                          completion_suggest=OPT_COMPL_ONE_NODEGROUP)
1379 f6eb380d Michael Hanselmann
1380 93f2399e Andrea Spadaccini
IGNORE_ERRORS_OPT = cli_option("-I", "--ignore-errors", default=[],
1381 93f2399e Andrea Spadaccini
                               action="append", dest="ignore_errors",
1382 93f2399e Andrea Spadaccini
                               choices=list(constants.CV_ALL_ECODES_STRINGS),
1383 93f2399e Andrea Spadaccini
                               help="Error code to be ignored")
1384 93f2399e Andrea Spadaccini
1385 38f29a36 René Nussbaumer
DISK_STATE_OPT = cli_option("--disk-state", default=[], dest="disk_state",
1386 38f29a36 René Nussbaumer
                            action="append",
1387 38f29a36 René Nussbaumer
                            help=("Specify disk state information in the format"
1388 38f29a36 René Nussbaumer
                                  " storage_type/identifier:option=value,..."),
1389 38f29a36 René Nussbaumer
                            type="identkeyval")
1390 38f29a36 René Nussbaumer
1391 38f29a36 René Nussbaumer
HV_STATE_OPT = cli_option("--hypervisor-state", default=[], dest="hv_state",
1392 38f29a36 René Nussbaumer
                          action="append",
1393 38f29a36 René Nussbaumer
                          help=("Specify hypervisor state information in the"
1394 38f29a36 René Nussbaumer
                                " format hypervisor:option=value,..."),
1395 38f29a36 René Nussbaumer
                          type="identkeyval")
1396 38f29a36 René Nussbaumer
1397 b6aaf437 René Nussbaumer
IGNORE_IPOLICY_OPT = cli_option("--ignore-ipolicy", dest="ignore_ipolicy",
1398 b6aaf437 René Nussbaumer
                                action="store_true", default=False,
1399 b6aaf437 René Nussbaumer
                                help="Ignore instance policy violations")
1400 b6aaf437 René Nussbaumer
1401 2c0af7da Guido Trotter
RUNTIME_MEM_OPT = cli_option("-m", "--runtime-memory", dest="runtime_mem",
1402 2c0af7da Guido Trotter
                             help="Sets the instance's runtime memory,"
1403 2c0af7da Guido Trotter
                             " ballooning it up or down to the new value",
1404 2c0af7da Guido Trotter
                             default=None, type="unit", metavar="<size>")
1405 61a14bb3 Iustin Pop
1406 ef8270dc Iustin Pop
ABSOLUTE_OPT = cli_option("--absolute", dest="absolute",
1407 ef8270dc Iustin Pop
                          action="store_true", default=False,
1408 ef8270dc Iustin Pop
                          help="Marks the grow as absolute instead of the"
1409 ef8270dc Iustin Pop
                          " (default) relative mode")
1410 ef8270dc Iustin Pop
1411 5786c087 Michael Hanselmann
#: Options provided by all commands
1412 5786c087 Michael Hanselmann
COMMON_OPTS = [DEBUG_OPT]
1413 5786c087 Michael Hanselmann
1414 eb28ecf6 Guido Trotter
# common options for creating instances. add and import then add their own
1415 eb28ecf6 Guido Trotter
# specific ones.
1416 eb28ecf6 Guido Trotter
COMMON_CREATE_OPTS = [
1417 eb28ecf6 Guido Trotter
  BACKEND_OPT,
1418 eb28ecf6 Guido Trotter
  DISK_OPT,
1419 eb28ecf6 Guido Trotter
  DISK_TEMPLATE_OPT,
1420 eb28ecf6 Guido Trotter
  FILESTORE_DIR_OPT,
1421 eb28ecf6 Guido Trotter
  FILESTORE_DRIVER_OPT,
1422 eb28ecf6 Guido Trotter
  HYPERVISOR_OPT,
1423 eb28ecf6 Guido Trotter
  IALLOCATOR_OPT,
1424 eb28ecf6 Guido Trotter
  NET_OPT,
1425 eb28ecf6 Guido Trotter
  NODE_PLACEMENT_OPT,
1426 eb28ecf6 Guido Trotter
  NOIPCHECK_OPT,
1427 eb28ecf6 Guido Trotter
  NONAMECHECK_OPT,
1428 eb28ecf6 Guido Trotter
  NONICS_OPT,
1429 eb28ecf6 Guido Trotter
  NWSYNC_OPT,
1430 eb28ecf6 Guido Trotter
  OSPARAMS_OPT,
1431 eb28ecf6 Guido Trotter
  OS_SIZE_OPT,
1432 eb28ecf6 Guido Trotter
  SUBMIT_OPT,
1433 0f8810df Michael Hanselmann
  TAG_ADD_OPT,
1434 eb28ecf6 Guido Trotter
  DRY_RUN_OPT,
1435 eb28ecf6 Guido Trotter
  PRIORITY_OPT,
1436 eb28ecf6 Guido Trotter
  ]
1437 eb28ecf6 Guido Trotter
1438 0ce212e5 Iustin Pop
# common instance policy options
1439 0ce212e5 Iustin Pop
INSTANCE_POLICY_OPTS = [
1440 0ce212e5 Iustin Pop
  SPECS_CPU_COUNT_OPT,
1441 0ce212e5 Iustin Pop
  SPECS_DISK_COUNT_OPT,
1442 0ce212e5 Iustin Pop
  SPECS_DISK_SIZE_OPT,
1443 0ce212e5 Iustin Pop
  SPECS_MEM_SIZE_OPT,
1444 0ce212e5 Iustin Pop
  SPECS_NIC_COUNT_OPT,
1445 d04c9d45 Iustin Pop
  IPOLICY_DISK_TEMPLATES,
1446 976b78ba Iustin Pop
  IPOLICY_VCPU_RATIO,
1447 0ce212e5 Iustin Pop
  ]
1448 0ce212e5 Iustin Pop
1449 771734c9 Iustin Pop
1450 ef9fa5b9 René Nussbaumer
def _ParseArgs(argv, commands, aliases, env_override):
1451 c41eea6e Iustin Pop
  """Parser for the command line arguments.
1452 a8083063 Iustin Pop

1453 5bbd3f7f Michael Hanselmann
  This function parses the arguments and returns the function which
1454 c41eea6e Iustin Pop
  must be executed together with its (modified) arguments.
1455 a8083063 Iustin Pop

1456 c41eea6e Iustin Pop
  @param argv: the command line
1457 c41eea6e Iustin Pop
  @param commands: dictionary with special contents, see the design
1458 c41eea6e Iustin Pop
      doc for cmdline handling
1459 c41eea6e Iustin Pop
  @param aliases: dictionary with command aliases {'alias': 'target, ...}
1460 ef9fa5b9 René Nussbaumer
  @param env_override: list of env variables allowed for default args
1461 098c0958 Michael Hanselmann

1462 a8083063 Iustin Pop
  """
1463 ef9fa5b9 René Nussbaumer
  assert not (env_override - set(commands))
1464 ef9fa5b9 René Nussbaumer
1465 a8083063 Iustin Pop
  if len(argv) == 0:
1466 a8083063 Iustin Pop
    binary = "<command>"
1467 a8083063 Iustin Pop
  else:
1468 a8083063 Iustin Pop
    binary = argv[0].split("/")[-1]
1469 a8083063 Iustin Pop
1470 a8083063 Iustin Pop
  if len(argv) > 1 and argv[1] == "--version":
1471 84a12e40 Iustin Pop
    ToStdout("%s (ganeti %s) %s", binary, constants.VCS_VERSION,
1472 84a12e40 Iustin Pop
             constants.RELEASE_VERSION)
1473 a8083063 Iustin Pop
    # Quit right away. That way we don't have to care about this special
1474 a8083063 Iustin Pop
    # argument. optparse.py does it the same.
1475 a8083063 Iustin Pop
    sys.exit(0)
1476 a8083063 Iustin Pop
1477 de47cf8f Guido Trotter
  if len(argv) < 2 or not (argv[1] in commands or
1478 70a35b6f Guido Trotter
                           argv[1] in aliases):
1479 a8083063 Iustin Pop
    # let's do a nice thing
1480 a8083063 Iustin Pop
    sortedcmds = commands.keys()
1481 a8083063 Iustin Pop
    sortedcmds.sort()
1482 03298ebe Michael Hanselmann
1483 03298ebe Michael Hanselmann
    ToStdout("Usage: %s {command} [options...] [argument...]", binary)
1484 03298ebe Michael Hanselmann
    ToStdout("%s <command> --help to see details, or man %s", binary, binary)
1485 03298ebe Michael Hanselmann
    ToStdout("")
1486 03298ebe Michael Hanselmann
1487 a8083063 Iustin Pop
    # compute the max line length for cmd + usage
1488 4e713df6 Iustin Pop
    mlen = max([len(" %s" % cmd) for cmd in commands])
1489 a8083063 Iustin Pop
    mlen = min(60, mlen) # should not get here...
1490 03298ebe Michael Hanselmann
1491 a8083063 Iustin Pop
    # and format a nice command list
1492 03298ebe Michael Hanselmann
    ToStdout("Commands:")
1493 a8083063 Iustin Pop
    for cmd in sortedcmds:
1494 4e713df6 Iustin Pop
      cmdstr = " %s" % (cmd,)
1495 9a033156 Iustin Pop
      help_text = commands[cmd][4]
1496 03298ebe Michael Hanselmann
      help_lines = textwrap.wrap(help_text, 79 - 3 - mlen)
1497 03298ebe Michael Hanselmann
      ToStdout("%-*s - %s", mlen, cmdstr, help_lines.pop(0))
1498 a8083063 Iustin Pop
      for line in help_lines:
1499 03298ebe Michael Hanselmann
        ToStdout("%-*s   %s", mlen, "", line)
1500 03298ebe Michael Hanselmann
1501 03298ebe Michael Hanselmann
    ToStdout("")
1502 03298ebe Michael Hanselmann
1503 a8083063 Iustin Pop
    return None, None, None
1504 de47cf8f Guido Trotter
1505 de47cf8f Guido Trotter
  # get command, unalias it, and look it up in commands
1506 a8083063 Iustin Pop
  cmd = argv.pop(1)
1507 de47cf8f Guido Trotter
  if cmd in aliases:
1508 de47cf8f Guido Trotter
    if cmd in commands:
1509 de47cf8f Guido Trotter
      raise errors.ProgrammerError("Alias '%s' overrides an existing"
1510 de47cf8f Guido Trotter
                                   " command" % cmd)
1511 de47cf8f Guido Trotter
1512 de47cf8f Guido Trotter
    if aliases[cmd] not in commands:
1513 de47cf8f Guido Trotter
      raise errors.ProgrammerError("Alias '%s' maps to non-existing"
1514 de47cf8f Guido Trotter
                                   " command '%s'" % (cmd, aliases[cmd]))
1515 de47cf8f Guido Trotter
1516 de47cf8f Guido Trotter
    cmd = aliases[cmd]
1517 de47cf8f Guido Trotter
1518 ef9fa5b9 René Nussbaumer
  if cmd in env_override:
1519 ef9fa5b9 René Nussbaumer
    args_env_name = ("%s_%s" % (binary.replace("-", "_"), cmd)).upper()
1520 ef9fa5b9 René Nussbaumer
    env_args = os.environ.get(args_env_name)
1521 ef9fa5b9 René Nussbaumer
    if env_args:
1522 ef9fa5b9 René Nussbaumer
      argv = utils.InsertAtPos(argv, 1, shlex.split(env_args))
1523 ef9fa5b9 René Nussbaumer
1524 a8005e17 Michael Hanselmann
  func, args_def, parser_opts, usage, description = commands[cmd]
1525 bf5338b3 Michael Hanselmann
  parser = OptionParser(option_list=parser_opts + COMMON_OPTS,
1526 bf5338b3 Michael Hanselmann
                        description=description,
1527 bf5338b3 Michael Hanselmann
                        formatter=TitledHelpFormatter(),
1528 bf5338b3 Michael Hanselmann
                        usage="%%prog %s %s" % (cmd, usage))
1529 a8083063 Iustin Pop
  parser.disable_interspersed_args()
1530 ef9fa5b9 René Nussbaumer
  options, args = parser.parse_args(args=argv[1:])
1531 a8005e17 Michael Hanselmann
1532 a8005e17 Michael Hanselmann
  if not _CheckArguments(cmd, args_def, args):
1533 a8083063 Iustin Pop
    return None, None, None
1534 a8083063 Iustin Pop
1535 a8083063 Iustin Pop
  return func, options, args
1536 a8083063 Iustin Pop
1537 a8083063 Iustin Pop
1538 a8005e17 Michael Hanselmann
def _CheckArguments(cmd, args_def, args):
1539 a8005e17 Michael Hanselmann
  """Verifies the arguments using the argument definition.
1540 a8005e17 Michael Hanselmann

1541 a8005e17 Michael Hanselmann
  Algorithm:
1542 a8005e17 Michael Hanselmann

1543 a8005e17 Michael Hanselmann
    1. Abort with error if values specified by user but none expected.
1544 a8005e17 Michael Hanselmann

1545 a8005e17 Michael Hanselmann
    1. For each argument in definition
1546 a8005e17 Michael Hanselmann

1547 a8005e17 Michael Hanselmann
      1. Keep running count of minimum number of values (min_count)
1548 a8005e17 Michael Hanselmann
      1. Keep running count of maximum number of values (max_count)
1549 a8005e17 Michael Hanselmann
      1. If it has an unlimited number of values
1550 a8005e17 Michael Hanselmann

1551 a8005e17 Michael Hanselmann
        1. Abort with error if it's not the last argument in the definition
1552 a8005e17 Michael Hanselmann

1553 a8005e17 Michael Hanselmann
    1. If last argument has limited number of values
1554 a8005e17 Michael Hanselmann

1555 a8005e17 Michael Hanselmann
      1. Abort with error if number of values doesn't match or is too large
1556 a8005e17 Michael Hanselmann

1557 a8005e17 Michael Hanselmann
    1. Abort with error if user didn't pass enough values (min_count)
1558 a8005e17 Michael Hanselmann

1559 a8005e17 Michael Hanselmann
  """
1560 a8005e17 Michael Hanselmann
  if args and not args_def:
1561 a8005e17 Michael Hanselmann
    ToStderr("Error: Command %s expects no arguments", cmd)
1562 a8005e17 Michael Hanselmann
    return False
1563 a8005e17 Michael Hanselmann
1564 a8005e17 Michael Hanselmann
  min_count = None
1565 a8005e17 Michael Hanselmann
  max_count = None
1566 a8005e17 Michael Hanselmann
  check_max = None
1567 a8005e17 Michael Hanselmann
1568 a8005e17 Michael Hanselmann
  last_idx = len(args_def) - 1
1569 a8005e17 Michael Hanselmann
1570 a8005e17 Michael Hanselmann
  for idx, arg in enumerate(args_def):
1571 a8005e17 Michael Hanselmann
    if min_count is None:
1572 a8005e17 Michael Hanselmann
      min_count = arg.min
1573 a8005e17 Michael Hanselmann
    elif arg.min is not None:
1574 a8005e17 Michael Hanselmann
      min_count += arg.min
1575 a8005e17 Michael Hanselmann
1576 a8005e17 Michael Hanselmann
    if max_count is None:
1577 a8005e17 Michael Hanselmann
      max_count = arg.max
1578 a8005e17 Michael Hanselmann
    elif arg.max is not None:
1579 a8005e17 Michael Hanselmann
      max_count += arg.max
1580 a8005e17 Michael Hanselmann
1581 a8005e17 Michael Hanselmann
    if idx == last_idx:
1582 a8005e17 Michael Hanselmann
      check_max = (arg.max is not None)
1583 a8005e17 Michael Hanselmann
1584 a8005e17 Michael Hanselmann
    elif arg.max is None:
1585 a8005e17 Michael Hanselmann
      raise errors.ProgrammerError("Only the last argument can have max=None")
1586 a8005e17 Michael Hanselmann
1587 a8005e17 Michael Hanselmann
  if check_max:
1588 a8005e17 Michael Hanselmann
    # Command with exact number of arguments
1589 a8005e17 Michael Hanselmann
    if (min_count is not None and max_count is not None and
1590 a8005e17 Michael Hanselmann
        min_count == max_count and len(args) != min_count):
1591 a8005e17 Michael Hanselmann
      ToStderr("Error: Command %s expects %d argument(s)", cmd, min_count)
1592 a8005e17 Michael Hanselmann
      return False
1593 a8005e17 Michael Hanselmann
1594 a8005e17 Michael Hanselmann
    # Command with limited number of arguments
1595 a8005e17 Michael Hanselmann
    if max_count is not None and len(args) > max_count:
1596 a8005e17 Michael Hanselmann
      ToStderr("Error: Command %s expects only %d argument(s)",
1597 a8005e17 Michael Hanselmann
               cmd, max_count)
1598 a8005e17 Michael Hanselmann
      return False
1599 a8005e17 Michael Hanselmann
1600 a8005e17 Michael Hanselmann
  # Command with some required arguments
1601 a8005e17 Michael Hanselmann
  if min_count is not None and len(args) < min_count:
1602 a8005e17 Michael Hanselmann
    ToStderr("Error: Command %s expects at least %d argument(s)",
1603 a8005e17 Michael Hanselmann
             cmd, min_count)
1604 a8005e17 Michael Hanselmann
    return False
1605 a8005e17 Michael Hanselmann
1606 a8005e17 Michael Hanselmann
  return True
1607 a8005e17 Michael Hanselmann
1608 a8005e17 Michael Hanselmann
1609 60d49723 Michael Hanselmann
def SplitNodeOption(value):
1610 60d49723 Michael Hanselmann
  """Splits the value of a --node option.
1611 60d49723 Michael Hanselmann

1612 60d49723 Michael Hanselmann
  """
1613 d0c8c01d Iustin Pop
  if value and ":" in value:
1614 d0c8c01d Iustin Pop
    return value.split(":", 1)
1615 60d49723 Michael Hanselmann
  else:
1616 60d49723 Michael Hanselmann
    return (value, None)
1617 60d49723 Michael Hanselmann
1618 60d49723 Michael Hanselmann
1619 07150497 Guido Trotter
def CalculateOSNames(os_name, os_variants):
1620 07150497 Guido Trotter
  """Calculates all the names an OS can be called, according to its variants.
1621 07150497 Guido Trotter

1622 07150497 Guido Trotter
  @type os_name: string
1623 07150497 Guido Trotter
  @param os_name: base name of the os
1624 07150497 Guido Trotter
  @type os_variants: list or None
1625 07150497 Guido Trotter
  @param os_variants: list of supported variants
1626 07150497 Guido Trotter
  @rtype: list
1627 07150497 Guido Trotter
  @return: list of valid names
1628 07150497 Guido Trotter

1629 07150497 Guido Trotter
  """
1630 07150497 Guido Trotter
  if os_variants:
1631 d0c8c01d Iustin Pop
    return ["%s+%s" % (os_name, v) for v in os_variants]
1632 07150497 Guido Trotter
  else:
1633 07150497 Guido Trotter
    return [os_name]
1634 07150497 Guido Trotter
1635 07150497 Guido Trotter
1636 a4ebd726 Michael Hanselmann
def ParseFields(selected, default):
1637 a4ebd726 Michael Hanselmann
  """Parses the values of "--field"-like options.
1638 a4ebd726 Michael Hanselmann

1639 a4ebd726 Michael Hanselmann
  @type selected: string or None
1640 a4ebd726 Michael Hanselmann
  @param selected: User-selected options
1641 a4ebd726 Michael Hanselmann
  @type default: list
1642 a4ebd726 Michael Hanselmann
  @param default: Default fields
1643 a4ebd726 Michael Hanselmann

1644 a4ebd726 Michael Hanselmann
  """
1645 a4ebd726 Michael Hanselmann
  if selected is None:
1646 a4ebd726 Michael Hanselmann
    return default
1647 a4ebd726 Michael Hanselmann
1648 a4ebd726 Michael Hanselmann
  if selected.startswith("+"):
1649 a4ebd726 Michael Hanselmann
    return default + selected[1:].split(",")
1650 a4ebd726 Michael Hanselmann
1651 a4ebd726 Michael Hanselmann
  return selected.split(",")
1652 a4ebd726 Michael Hanselmann
1653 a4ebd726 Michael Hanselmann
1654 e0e916fe Iustin Pop
UsesRPC = rpc.RunWithRPC
1655 4331f6cd Michael Hanselmann
1656 4331f6cd Michael Hanselmann
1657 47988778 Iustin Pop
def AskUser(text, choices=None):
1658 47988778 Iustin Pop
  """Ask the user a question.
1659 a8083063 Iustin Pop

1660 c41eea6e Iustin Pop
  @param text: the question to ask
1661 a8083063 Iustin Pop

1662 c41eea6e Iustin Pop
  @param choices: list with elements tuples (input_char, return_value,
1663 c41eea6e Iustin Pop
      description); if not given, it will default to: [('y', True,
1664 c41eea6e Iustin Pop
      'Perform the operation'), ('n', False, 'Do no do the operation')];
1665 c41eea6e Iustin Pop
      note that the '?' char is reserved for help
1666 47988778 Iustin Pop

1667 c41eea6e Iustin Pop
  @return: one of the return values from the choices list; if input is
1668 c41eea6e Iustin Pop
      not possible (i.e. not running with a tty, we return the last
1669 c41eea6e Iustin Pop
      entry from the list
1670 a8083063 Iustin Pop

1671 a8083063 Iustin Pop
  """
1672 47988778 Iustin Pop
  if choices is None:
1673 d0c8c01d Iustin Pop
    choices = [("y", True, "Perform the operation"),
1674 d0c8c01d Iustin Pop
               ("n", False, "Do not perform the operation")]
1675 47988778 Iustin Pop
  if not choices or not isinstance(choices, list):
1676 5bbd3f7f Michael Hanselmann
    raise errors.ProgrammerError("Invalid choices argument to AskUser")
1677 47988778 Iustin Pop
  for entry in choices:
1678 d0c8c01d Iustin Pop
    if not isinstance(entry, tuple) or len(entry) < 3 or entry[0] == "?":
1679 5bbd3f7f Michael Hanselmann
      raise errors.ProgrammerError("Invalid choices element to AskUser")
1680 47988778 Iustin Pop
1681 47988778 Iustin Pop
  answer = choices[-1][1]
1682 47988778 Iustin Pop
  new_text = []
1683 47988778 Iustin Pop
  for line in text.splitlines():
1684 47988778 Iustin Pop
    new_text.append(textwrap.fill(line, 70, replace_whitespace=False))
1685 47988778 Iustin Pop
  text = "\n".join(new_text)
1686 a8083063 Iustin Pop
  try:
1687 3023170f Iustin Pop
    f = file("/dev/tty", "a+")
1688 a8083063 Iustin Pop
  except IOError:
1689 47988778 Iustin Pop
    return answer
1690 a8083063 Iustin Pop
  try:
1691 47988778 Iustin Pop
    chars = [entry[0] for entry in choices]
1692 47988778 Iustin Pop
    chars[-1] = "[%s]" % chars[-1]
1693 d0c8c01d Iustin Pop
    chars.append("?")
1694 47988778 Iustin Pop
    maps = dict([(entry[0], entry[1]) for entry in choices])
1695 47988778 Iustin Pop
    while True:
1696 47988778 Iustin Pop
      f.write(text)
1697 d0c8c01d Iustin Pop
      f.write("\n")
1698 47988778 Iustin Pop
      f.write("/".join(chars))
1699 47988778 Iustin Pop
      f.write(": ")
1700 47988778 Iustin Pop
      line = f.readline(2).strip().lower()
1701 47988778 Iustin Pop
      if line in maps:
1702 47988778 Iustin Pop
        answer = maps[line]
1703 47988778 Iustin Pop
        break
1704 d0c8c01d Iustin Pop
      elif line == "?":
1705 47988778 Iustin Pop
        for entry in choices:
1706 47988778 Iustin Pop
          f.write(" %s - %s\n" % (entry[0], entry[2]))
1707 47988778 Iustin Pop
        f.write("\n")
1708 47988778 Iustin Pop
        continue
1709 a8083063 Iustin Pop
  finally:
1710 a8083063 Iustin Pop
    f.close()
1711 a8083063 Iustin Pop
  return answer
1712 a8083063 Iustin Pop
1713 a8083063 Iustin Pop
1714 e9d741b6 Iustin Pop
class JobSubmittedException(Exception):
1715 e9d741b6 Iustin Pop
  """Job was submitted, client should exit.
1716 e9d741b6 Iustin Pop

1717 e9d741b6 Iustin Pop
  This exception has one argument, the ID of the job that was
1718 e9d741b6 Iustin Pop
  submitted. The handler should print this ID.
1719 e9d741b6 Iustin Pop

1720 e9d741b6 Iustin Pop
  This is not an error, just a structured way to exit from clients.
1721 e9d741b6 Iustin Pop

1722 e9d741b6 Iustin Pop
  """
1723 e9d741b6 Iustin Pop
1724 e9d741b6 Iustin Pop
1725 0a1e74d9 Iustin Pop
def SendJob(ops, cl=None):
1726 0a1e74d9 Iustin Pop
  """Function to submit an opcode without waiting for the results.
1727 a8083063 Iustin Pop

1728 0a1e74d9 Iustin Pop
  @type ops: list
1729 0a1e74d9 Iustin Pop
  @param ops: list of opcodes
1730 0a1e74d9 Iustin Pop
  @type cl: luxi.Client
1731 0a1e74d9 Iustin Pop
  @param cl: the luxi client to use for communicating with the master;
1732 0a1e74d9 Iustin Pop
             if None, a new client will be created
1733 a8083063 Iustin Pop

1734 a8083063 Iustin Pop
  """
1735 e2212007 Iustin Pop
  if cl is None:
1736 b33e986b Iustin Pop
    cl = GetClient()
1737 685ee993 Iustin Pop
1738 0a1e74d9 Iustin Pop
  job_id = cl.SubmitJob(ops)
1739 0a1e74d9 Iustin Pop
1740 0a1e74d9 Iustin Pop
  return job_id
1741 0a1e74d9 Iustin Pop
1742 0a1e74d9 Iustin Pop
1743 4e338533 Michael Hanselmann
def GenericPollJob(job_id, cbs, report_cbs):
1744 4e338533 Michael Hanselmann
  """Generic job-polling function.
1745 0a1e74d9 Iustin Pop

1746 4e338533 Michael Hanselmann
  @type job_id: number
1747 4e338533 Michael Hanselmann
  @param job_id: Job ID
1748 4e338533 Michael Hanselmann
  @type cbs: Instance of L{JobPollCbBase}
1749 4e338533 Michael Hanselmann
  @param cbs: Data callbacks
1750 4e338533 Michael Hanselmann
  @type report_cbs: Instance of L{JobPollReportCbBase}
1751 4e338533 Michael Hanselmann
  @param report_cbs: Reporting callbacks
1752 0a1e74d9 Iustin Pop

1753 0a1e74d9 Iustin Pop
  """
1754 6c5a7090 Michael Hanselmann
  prev_job_info = None
1755 6c5a7090 Michael Hanselmann
  prev_logmsg_serial = None
1756 6c5a7090 Michael Hanselmann
1757 f4484122 Michael Hanselmann
  status = None
1758 f4484122 Michael Hanselmann
1759 685ee993 Iustin Pop
  while True:
1760 4e338533 Michael Hanselmann
    result = cbs.WaitForJobChangeOnce(job_id, ["status"], prev_job_info,
1761 4e338533 Michael Hanselmann
                                      prev_logmsg_serial)
1762 6c5a7090 Michael Hanselmann
    if not result:
1763 685ee993 Iustin Pop
      # job not found, go away!
1764 0bbe448c Michael Hanselmann
      raise errors.JobLost("Job with id %s lost" % job_id)
1765 4e338533 Michael Hanselmann
1766 4e338533 Michael Hanselmann
    if result == constants.JOB_NOTCHANGED:
1767 4e338533 Michael Hanselmann
      report_cbs.ReportNotChanged(job_id, status)
1768 f4484122 Michael Hanselmann
1769 f4484122 Michael Hanselmann
      # Wait again
1770 f4484122 Michael Hanselmann
      continue
1771 685ee993 Iustin Pop
1772 6c5a7090 Michael Hanselmann
    # Split result, a tuple of (field values, log entries)
1773 6c5a7090 Michael Hanselmann
    (job_info, log_entries) = result
1774 6c5a7090 Michael Hanselmann
    (status, ) = job_info
1775 6c5a7090 Michael Hanselmann
1776 6c5a7090 Michael Hanselmann
    if log_entries:
1777 6c5a7090 Michael Hanselmann
      for log_entry in log_entries:
1778 4e338533 Michael Hanselmann
        (serial, timestamp, log_type, message) = log_entry
1779 4e338533 Michael Hanselmann
        report_cbs.ReportLogMessage(job_id, serial, timestamp,
1780 4e338533 Michael Hanselmann
                                    log_type, message)
1781 6c5a7090 Michael Hanselmann
        prev_logmsg_serial = max(prev_logmsg_serial, serial)
1782 6c5a7090 Michael Hanselmann
1783 0bbe448c Michael Hanselmann
    # TODO: Handle canceled and archived jobs
1784 fbf0262f Michael Hanselmann
    elif status in (constants.JOB_STATUS_SUCCESS,
1785 fbf0262f Michael Hanselmann
                    constants.JOB_STATUS_ERROR,
1786 fbf0262f Michael Hanselmann
                    constants.JOB_STATUS_CANCELING,
1787 fbf0262f Michael Hanselmann
                    constants.JOB_STATUS_CANCELED):
1788 685ee993 Iustin Pop
      break
1789 6c5a7090 Michael Hanselmann
1790 6c5a7090 Michael Hanselmann
    prev_job_info = job_info
1791 685ee993 Iustin Pop
1792 4e338533 Michael Hanselmann
  jobs = cbs.QueryJobs([job_id], ["status", "opstatus", "opresult"])
1793 0bbe448c Michael Hanselmann
  if not jobs:
1794 0bbe448c Michael Hanselmann
    raise errors.JobLost("Job with id %s lost" % job_id)
1795 685ee993 Iustin Pop
1796 0e050889 Iustin Pop
  status, opstatus, result = jobs[0]
1797 4e338533 Michael Hanselmann
1798 0bbe448c Michael Hanselmann
  if status == constants.JOB_STATUS_SUCCESS:
1799 53c04d04 Iustin Pop
    return result
1800 4e338533 Michael Hanselmann
1801 4e338533 Michael Hanselmann
  if status in (constants.JOB_STATUS_CANCELING, constants.JOB_STATUS_CANCELED):
1802 fbf0262f Michael Hanselmann
    raise errors.OpExecError("Job was canceled")
1803 4e338533 Michael Hanselmann
1804 4e338533 Michael Hanselmann
  has_ok = False
1805 4e338533 Michael Hanselmann
  for idx, (status, msg) in enumerate(zip(opstatus, result)):
1806 4e338533 Michael Hanselmann
    if status == constants.OP_STATUS_SUCCESS:
1807 4e338533 Michael Hanselmann
      has_ok = True
1808 4e338533 Michael Hanselmann
    elif status == constants.OP_STATUS_ERROR:
1809 4e338533 Michael Hanselmann
      errors.MaybeRaise(msg)
1810 4e338533 Michael Hanselmann
1811 4e338533 Michael Hanselmann
      if has_ok:
1812 4e338533 Michael Hanselmann
        raise errors.OpExecError("partial failure (opcode %d): %s" %
1813 4e338533 Michael Hanselmann
                                 (idx, msg))
1814 4e338533 Michael Hanselmann
1815 4e338533 Michael Hanselmann
      raise errors.OpExecError(str(msg))
1816 4e338533 Michael Hanselmann
1817 4e338533 Michael Hanselmann
  # default failure mode
1818 4e338533 Michael Hanselmann
  raise errors.OpExecError(result)
1819 4e338533 Michael Hanselmann
1820 4e338533 Michael Hanselmann
1821 4e338533 Michael Hanselmann
class JobPollCbBase:
1822 4e338533 Michael Hanselmann
  """Base class for L{GenericPollJob} callbacks.
1823 4e338533 Michael Hanselmann

1824 4e338533 Michael Hanselmann
  """
1825 4e338533 Michael Hanselmann
  def __init__(self):
1826 4e338533 Michael Hanselmann
    """Initializes this class.
1827 4e338533 Michael Hanselmann

1828 4e338533 Michael Hanselmann
    """
1829 4e338533 Michael Hanselmann
1830 4e338533 Michael Hanselmann
  def WaitForJobChangeOnce(self, job_id, fields,
1831 4e338533 Michael Hanselmann
                           prev_job_info, prev_log_serial):
1832 4e338533 Michael Hanselmann
    """Waits for changes on a job.
1833 4e338533 Michael Hanselmann

1834 4e338533 Michael Hanselmann
    """
1835 4e338533 Michael Hanselmann
    raise NotImplementedError()
1836 4e338533 Michael Hanselmann
1837 4e338533 Michael Hanselmann
  def QueryJobs(self, job_ids, fields):
1838 4e338533 Michael Hanselmann
    """Returns the selected fields for the selected job IDs.
1839 4e338533 Michael Hanselmann

1840 4e338533 Michael Hanselmann
    @type job_ids: list of numbers
1841 4e338533 Michael Hanselmann
    @param job_ids: Job IDs
1842 4e338533 Michael Hanselmann
    @type fields: list of strings
1843 4e338533 Michael Hanselmann
    @param fields: Fields
1844 4e338533 Michael Hanselmann

1845 4e338533 Michael Hanselmann
    """
1846 4e338533 Michael Hanselmann
    raise NotImplementedError()
1847 4e338533 Michael Hanselmann
1848 4e338533 Michael Hanselmann
1849 4e338533 Michael Hanselmann
class JobPollReportCbBase:
1850 4e338533 Michael Hanselmann
  """Base class for L{GenericPollJob} reporting callbacks.
1851 4e338533 Michael Hanselmann

1852 4e338533 Michael Hanselmann
  """
1853 4e338533 Michael Hanselmann
  def __init__(self):
1854 4e338533 Michael Hanselmann
    """Initializes this class.
1855 4e338533 Michael Hanselmann

1856 4e338533 Michael Hanselmann
    """
1857 4e338533 Michael Hanselmann
1858 4e338533 Michael Hanselmann
  def ReportLogMessage(self, job_id, serial, timestamp, log_type, log_msg):
1859 4e338533 Michael Hanselmann
    """Handles a log message.
1860 4e338533 Michael Hanselmann

1861 4e338533 Michael Hanselmann
    """
1862 4e338533 Michael Hanselmann
    raise NotImplementedError()
1863 4e338533 Michael Hanselmann
1864 4e338533 Michael Hanselmann
  def ReportNotChanged(self, job_id, status):
1865 4e338533 Michael Hanselmann
    """Called for if a job hasn't changed in a while.
1866 4e338533 Michael Hanselmann

1867 4e338533 Michael Hanselmann
    @type job_id: number
1868 4e338533 Michael Hanselmann
    @param job_id: Job ID
1869 4e338533 Michael Hanselmann
    @type status: string or None
1870 4e338533 Michael Hanselmann
    @param status: Job status if available
1871 4e338533 Michael Hanselmann

1872 4e338533 Michael Hanselmann
    """
1873 4e338533 Michael Hanselmann
    raise NotImplementedError()
1874 4e338533 Michael Hanselmann
1875 4e338533 Michael Hanselmann
1876 4e338533 Michael Hanselmann
class _LuxiJobPollCb(JobPollCbBase):
1877 4e338533 Michael Hanselmann
  def __init__(self, cl):
1878 4e338533 Michael Hanselmann
    """Initializes this class.
1879 4e338533 Michael Hanselmann

1880 4e338533 Michael Hanselmann
    """
1881 4e338533 Michael Hanselmann
    JobPollCbBase.__init__(self)
1882 4e338533 Michael Hanselmann
    self.cl = cl
1883 4e338533 Michael Hanselmann
1884 4e338533 Michael Hanselmann
  def WaitForJobChangeOnce(self, job_id, fields,
1885 4e338533 Michael Hanselmann
                           prev_job_info, prev_log_serial):
1886 4e338533 Michael Hanselmann
    """Waits for changes on a job.
1887 4e338533 Michael Hanselmann

1888 4e338533 Michael Hanselmann
    """
1889 4e338533 Michael Hanselmann
    return self.cl.WaitForJobChangeOnce(job_id, fields,
1890 4e338533 Michael Hanselmann
                                        prev_job_info, prev_log_serial)
1891 4e338533 Michael Hanselmann
1892 4e338533 Michael Hanselmann
  def QueryJobs(self, job_ids, fields):
1893 4e338533 Michael Hanselmann
    """Returns the selected fields for the selected job IDs.
1894 4e338533 Michael Hanselmann

1895 4e338533 Michael Hanselmann
    """
1896 4e338533 Michael Hanselmann
    return self.cl.QueryJobs(job_ids, fields)
1897 4e338533 Michael Hanselmann
1898 4e338533 Michael Hanselmann
1899 4e338533 Michael Hanselmann
class FeedbackFnJobPollReportCb(JobPollReportCbBase):
1900 4e338533 Michael Hanselmann
  def __init__(self, feedback_fn):
1901 4e338533 Michael Hanselmann
    """Initializes this class.
1902 4e338533 Michael Hanselmann

1903 4e338533 Michael Hanselmann
    """
1904 4e338533 Michael Hanselmann
    JobPollReportCbBase.__init__(self)
1905 4e338533 Michael Hanselmann
1906 4e338533 Michael Hanselmann
    self.feedback_fn = feedback_fn
1907 4e338533 Michael Hanselmann
1908 4e338533 Michael Hanselmann
    assert callable(feedback_fn)
1909 4e338533 Michael Hanselmann
1910 4e338533 Michael Hanselmann
  def ReportLogMessage(self, job_id, serial, timestamp, log_type, log_msg):
1911 4e338533 Michael Hanselmann
    """Handles a log message.
1912 4e338533 Michael Hanselmann

1913 4e338533 Michael Hanselmann
    """
1914 4e338533 Michael Hanselmann
    self.feedback_fn((timestamp, log_type, log_msg))
1915 4e338533 Michael Hanselmann
1916 4e338533 Michael Hanselmann
  def ReportNotChanged(self, job_id, status):
1917 4e338533 Michael Hanselmann
    """Called if a job hasn't changed in a while.
1918 4e338533 Michael Hanselmann

1919 4e338533 Michael Hanselmann
    """
1920 4e338533 Michael Hanselmann
    # Ignore
1921 4e338533 Michael Hanselmann
1922 4e338533 Michael Hanselmann
1923 4e338533 Michael Hanselmann
class StdioJobPollReportCb(JobPollReportCbBase):
1924 4e338533 Michael Hanselmann
  def __init__(self):
1925 4e338533 Michael Hanselmann
    """Initializes this class.
1926 4e338533 Michael Hanselmann

1927 4e338533 Michael Hanselmann
    """
1928 4e338533 Michael Hanselmann
    JobPollReportCbBase.__init__(self)
1929 4e338533 Michael Hanselmann
1930 4e338533 Michael Hanselmann
    self.notified_queued = False
1931 4e338533 Michael Hanselmann
    self.notified_waitlock = False
1932 4e338533 Michael Hanselmann
1933 4e338533 Michael Hanselmann
  def ReportLogMessage(self, job_id, serial, timestamp, log_type, log_msg):
1934 4e338533 Michael Hanselmann
    """Handles a log message.
1935 4e338533 Michael Hanselmann

1936 4e338533 Michael Hanselmann
    """
1937 4e338533 Michael Hanselmann
    ToStdout("%s %s", time.ctime(utils.MergeTime(timestamp)),
1938 8a7f1c61 Michael Hanselmann
             FormatLogMessage(log_type, log_msg))
1939 4e338533 Michael Hanselmann
1940 4e338533 Michael Hanselmann
  def ReportNotChanged(self, job_id, status):
1941 4e338533 Michael Hanselmann
    """Called if a job hasn't changed in a while.
1942 4e338533 Michael Hanselmann

1943 4e338533 Michael Hanselmann
    """
1944 4e338533 Michael Hanselmann
    if status is None:
1945 4e338533 Michael Hanselmann
      return
1946 4e338533 Michael Hanselmann
1947 4e338533 Michael Hanselmann
    if status == constants.JOB_STATUS_QUEUED and not self.notified_queued:
1948 4e338533 Michael Hanselmann
      ToStderr("Job %s is waiting in queue", job_id)
1949 4e338533 Michael Hanselmann
      self.notified_queued = True
1950 4e338533 Michael Hanselmann
1951 47099cd1 Michael Hanselmann
    elif status == constants.JOB_STATUS_WAITING and not self.notified_waitlock:
1952 4e338533 Michael Hanselmann
      ToStderr("Job %s is trying to acquire all necessary locks", job_id)
1953 4e338533 Michael Hanselmann
      self.notified_waitlock = True
1954 4e338533 Michael Hanselmann
1955 4e338533 Michael Hanselmann
1956 8a7f1c61 Michael Hanselmann
def FormatLogMessage(log_type, log_msg):
1957 8a7f1c61 Michael Hanselmann
  """Formats a job message according to its type.
1958 8a7f1c61 Michael Hanselmann

1959 8a7f1c61 Michael Hanselmann
  """
1960 8a7f1c61 Michael Hanselmann
  if log_type != constants.ELOG_MESSAGE:
1961 8a7f1c61 Michael Hanselmann
    log_msg = str(log_msg)
1962 8a7f1c61 Michael Hanselmann
1963 8a7f1c61 Michael Hanselmann
  return utils.SafeEncode(log_msg)
1964 8a7f1c61 Michael Hanselmann
1965 8a7f1c61 Michael Hanselmann
1966 583163a6 Michael Hanselmann
def PollJob(job_id, cl=None, feedback_fn=None, reporter=None):
1967 4e338533 Michael Hanselmann
  """Function to poll for the result of a job.
1968 4e338533 Michael Hanselmann

1969 4e338533 Michael Hanselmann
  @type job_id: job identified
1970 4e338533 Michael Hanselmann
  @param job_id: the job to poll for results
1971 4e338533 Michael Hanselmann
  @type cl: luxi.Client
1972 4e338533 Michael Hanselmann
  @param cl: the luxi client to use for communicating with the master;
1973 4e338533 Michael Hanselmann
             if None, a new client will be created
1974 4e338533 Michael Hanselmann

1975 4e338533 Michael Hanselmann
  """
1976 4e338533 Michael Hanselmann
  if cl is None:
1977 4e338533 Michael Hanselmann
    cl = GetClient()
1978 4e338533 Michael Hanselmann
1979 583163a6 Michael Hanselmann
  if reporter is None:
1980 583163a6 Michael Hanselmann
    if feedback_fn:
1981 583163a6 Michael Hanselmann
      reporter = FeedbackFnJobPollReportCb(feedback_fn)
1982 583163a6 Michael Hanselmann
    else:
1983 583163a6 Michael Hanselmann
      reporter = StdioJobPollReportCb()
1984 583163a6 Michael Hanselmann
  elif feedback_fn:
1985 583163a6 Michael Hanselmann
    raise errors.ProgrammerError("Can't specify reporter and feedback function")
1986 4e338533 Michael Hanselmann
1987 4e338533 Michael Hanselmann
  return GenericPollJob(job_id, _LuxiJobPollCb(cl), reporter)
1988 ceab32dd Iustin Pop
1989 ceab32dd Iustin Pop
1990 583163a6 Michael Hanselmann
def SubmitOpCode(op, cl=None, feedback_fn=None, opts=None, reporter=None):
1991 0a1e74d9 Iustin Pop
  """Legacy function to submit an opcode.
1992 0a1e74d9 Iustin Pop

1993 0a1e74d9 Iustin Pop
  This is just a simple wrapper over the construction of the processor
1994 0a1e74d9 Iustin Pop
  instance. It should be extended to better handle feedback and
1995 0a1e74d9 Iustin Pop
  interaction functions.
1996 0a1e74d9 Iustin Pop

1997 0a1e74d9 Iustin Pop
  """
1998 0a1e74d9 Iustin Pop
  if cl is None:
1999 0a1e74d9 Iustin Pop
    cl = GetClient()
2000 0a1e74d9 Iustin Pop
2001 293ba2d8 Iustin Pop
  SetGenericOpcodeOpts([op], opts)
2002 293ba2d8 Iustin Pop
2003 5d297d8a Michael Hanselmann
  job_id = SendJob([op], cl=cl)
2004 0a1e74d9 Iustin Pop
2005 583163a6 Michael Hanselmann
  op_results = PollJob(job_id, cl=cl, feedback_fn=feedback_fn,
2006 583163a6 Michael Hanselmann
                       reporter=reporter)
2007 53c04d04 Iustin Pop
2008 53c04d04 Iustin Pop
  return op_results[0]
2009 0a1e74d9 Iustin Pop
2010 0a1e74d9 Iustin Pop
2011 94428652 Iustin Pop
def SubmitOrSend(op, opts, cl=None, feedback_fn=None):
2012 94428652 Iustin Pop
  """Wrapper around SubmitOpCode or SendJob.
2013 94428652 Iustin Pop

2014 94428652 Iustin Pop
  This function will decide, based on the 'opts' parameter, whether to
2015 94428652 Iustin Pop
  submit and wait for the result of the opcode (and return it), or
2016 94428652 Iustin Pop
  whether to just send the job and print its identifier. It is used in
2017 94428652 Iustin Pop
  order to simplify the implementation of the '--submit' option.
2018 94428652 Iustin Pop

2019 293ba2d8 Iustin Pop
  It will also process the opcodes if we're sending the via SendJob
2020 293ba2d8 Iustin Pop
  (otherwise SubmitOpCode does it).
2021 64c65a2a Iustin Pop

2022 94428652 Iustin Pop
  """
2023 94428652 Iustin Pop
  if opts and opts.submit_only:
2024 293ba2d8 Iustin Pop
    job = [op]
2025 293ba2d8 Iustin Pop
    SetGenericOpcodeOpts(job, opts)
2026 293ba2d8 Iustin Pop
    job_id = SendJob(job, cl=cl)
2027 e9d741b6 Iustin Pop
    raise JobSubmittedException(job_id)
2028 94428652 Iustin Pop
  else:
2029 293ba2d8 Iustin Pop
    return SubmitOpCode(op, cl=cl, feedback_fn=feedback_fn, opts=opts)
2030 293ba2d8 Iustin Pop
2031 293ba2d8 Iustin Pop
2032 293ba2d8 Iustin Pop
def SetGenericOpcodeOpts(opcode_list, options):
2033 293ba2d8 Iustin Pop
  """Processor for generic options.
2034 293ba2d8 Iustin Pop

2035 293ba2d8 Iustin Pop
  This function updates the given opcodes based on generic command
2036 293ba2d8 Iustin Pop
  line options (like debug, dry-run, etc.).
2037 293ba2d8 Iustin Pop

2038 293ba2d8 Iustin Pop
  @param opcode_list: list of opcodes
2039 293ba2d8 Iustin Pop
  @param options: command line options or None
2040 293ba2d8 Iustin Pop
  @return: None (in-place modification)
2041 293ba2d8 Iustin Pop

2042 293ba2d8 Iustin Pop
  """
2043 293ba2d8 Iustin Pop
  if not options:
2044 293ba2d8 Iustin Pop
    return
2045 293ba2d8 Iustin Pop
  for op in opcode_list:
2046 aa06f8c6 Michael Hanselmann
    op.debug_level = options.debug
2047 a0a6ff34 Iustin Pop
    if hasattr(options, "dry_run"):
2048 a0a6ff34 Iustin Pop
      op.dry_run = options.dry_run
2049 aa06f8c6 Michael Hanselmann
    if getattr(options, "priority", None) is not None:
2050 aa06f8c6 Michael Hanselmann
      op.priority = _PRIONAME_TO_VALUE[options.priority]
2051 94428652 Iustin Pop
2052 94428652 Iustin Pop
2053 af30b2fd Michael Hanselmann
def GetClient():
2054 af30b2fd Michael Hanselmann
  # TODO: Cache object?
2055 b33e986b Iustin Pop
  try:
2056 b33e986b Iustin Pop
    client = luxi.Client()
2057 b33e986b Iustin Pop
  except luxi.NoMasterError:
2058 d9a51679 Michael Hanselmann
    ss = ssconf.SimpleStore()
2059 d9a51679 Michael Hanselmann
2060 d9a51679 Michael Hanselmann
    # Try to read ssconf file
2061 d9a51679 Michael Hanselmann
    try:
2062 d9a51679 Michael Hanselmann
      ss.GetMasterNode()
2063 d9a51679 Michael Hanselmann
    except errors.ConfigurationError:
2064 d9a51679 Michael Hanselmann
      raise errors.OpPrereqError("Cluster not initialized or this machine is"
2065 d9a51679 Michael Hanselmann
                                 " not part of a cluster")
2066 d9a51679 Michael Hanselmann
2067 d9a51679 Michael Hanselmann
    master, myself = ssconf.GetMasterAndMyself(ss=ss)
2068 b33e986b Iustin Pop
    if master != myself:
2069 b33e986b Iustin Pop
      raise errors.OpPrereqError("This is not the master node, please connect"
2070 b33e986b Iustin Pop
                                 " to node '%s' and rerun the command" %
2071 b33e986b Iustin Pop
                                 master)
2072 d9a51679 Michael Hanselmann
    raise
2073 b33e986b Iustin Pop
  return client
2074 af30b2fd Michael Hanselmann
2075 af30b2fd Michael Hanselmann
2076 73702ee7 Iustin Pop
def FormatError(err):
2077 73702ee7 Iustin Pop
  """Return a formatted error message for a given error.
2078 73702ee7 Iustin Pop

2079 73702ee7 Iustin Pop
  This function takes an exception instance and returns a tuple
2080 73702ee7 Iustin Pop
  consisting of two values: first, the recommended exit code, and
2081 73702ee7 Iustin Pop
  second, a string describing the error message (not
2082 73702ee7 Iustin Pop
  newline-terminated).
2083 73702ee7 Iustin Pop

2084 73702ee7 Iustin Pop
  """
2085 73702ee7 Iustin Pop
  retcode = 1
2086 73702ee7 Iustin Pop
  obuf = StringIO()
2087 e2e521d0 Iustin Pop
  msg = str(err)
2088 73702ee7 Iustin Pop
  if isinstance(err, errors.ConfigurationError):
2089 e2e521d0 Iustin Pop
    txt = "Corrupt configuration file: %s" % msg
2090 46fbdd04 Iustin Pop
    logging.error(txt)
2091 e2e521d0 Iustin Pop
    obuf.write(txt + "\n")
2092 73702ee7 Iustin Pop
    obuf.write("Aborting.")
2093 73702ee7 Iustin Pop
    retcode = 2
2094 73702ee7 Iustin Pop
  elif isinstance(err, errors.HooksAbort):
2095 73702ee7 Iustin Pop
    obuf.write("Failure: hooks execution failed:\n")
2096 73702ee7 Iustin Pop
    for node, script, out in err.args[0]:
2097 73702ee7 Iustin Pop
      if out:
2098 73702ee7 Iustin Pop
        obuf.write("  node: %s, script: %s, output: %s\n" %
2099 73702ee7 Iustin Pop
                   (node, script, out))
2100 73702ee7 Iustin Pop
      else:
2101 73702ee7 Iustin Pop
        obuf.write("  node: %s, script: %s (no output)\n" %
2102 73702ee7 Iustin Pop
                   (node, script))
2103 73702ee7 Iustin Pop
  elif isinstance(err, errors.HooksFailure):
2104 e2e521d0 Iustin Pop
    obuf.write("Failure: hooks general failure: %s" % msg)
2105 73702ee7 Iustin Pop
  elif isinstance(err, errors.ResolverError):
2106 b705c7a6 Manuel Franceschini
    this_host = netutils.Hostname.GetSysName()
2107 73702ee7 Iustin Pop
    if err.args[0] == this_host:
2108 73702ee7 Iustin Pop
      msg = "Failure: can't resolve my own hostname ('%s')"
2109 73702ee7 Iustin Pop
    else:
2110 73702ee7 Iustin Pop
      msg = "Failure: can't resolve hostname '%s'"
2111 73702ee7 Iustin Pop
    obuf.write(msg % err.args[0])
2112 73702ee7 Iustin Pop
  elif isinstance(err, errors.OpPrereqError):
2113 5c983ee5 Iustin Pop
    if len(err.args) == 2:
2114 5c983ee5 Iustin Pop
      obuf.write("Failure: prerequisites not met for this"
2115 5c983ee5 Iustin Pop
               " operation:\nerror type: %s, error details:\n%s" %
2116 5c983ee5 Iustin Pop
                 (err.args[1], err.args[0]))
2117 5c983ee5 Iustin Pop
    else:
2118 5c983ee5 Iustin Pop
      obuf.write("Failure: prerequisites not met for this"
2119 5c983ee5 Iustin Pop
                 " operation:\n%s" % msg)
2120 73702ee7 Iustin Pop
  elif isinstance(err, errors.OpExecError):
2121 e2e521d0 Iustin Pop
    obuf.write("Failure: command execution error:\n%s" % msg)
2122 73702ee7 Iustin Pop
  elif isinstance(err, errors.TagError):
2123 e2e521d0 Iustin Pop
    obuf.write("Failure: invalid tag(s) given:\n%s" % msg)
2124 686d7433 Iustin Pop
  elif isinstance(err, errors.JobQueueDrainError):
2125 686d7433 Iustin Pop
    obuf.write("Failure: the job queue is marked for drain and doesn't"
2126 686d7433 Iustin Pop
               " accept new requests\n")
2127 f87b405e Michael Hanselmann
  elif isinstance(err, errors.JobQueueFull):
2128 f87b405e Michael Hanselmann
    obuf.write("Failure: the job queue is full and doesn't accept new"
2129 f87b405e Michael Hanselmann
               " job submissions until old jobs are archived\n")
2130 a5728081 Guido Trotter
  elif isinstance(err, errors.TypeEnforcementError):
2131 a5728081 Guido Trotter
    obuf.write("Parameter Error: %s" % msg)
2132 c1ce76bb Iustin Pop
  elif isinstance(err, errors.ParameterError):
2133 c1ce76bb Iustin Pop
    obuf.write("Failure: unknown/wrong parameter name '%s'" % msg)
2134 03a8dbdc Iustin Pop
  elif isinstance(err, luxi.NoMasterError):
2135 03a8dbdc Iustin Pop
    obuf.write("Cannot communicate with the master daemon.\nIs it running"
2136 082c5adb Michael Hanselmann
               " and listening for connections?")
2137 03a8dbdc Iustin Pop
  elif isinstance(err, luxi.TimeoutError):
2138 cd4c86a8 Michael Hanselmann
    obuf.write("Timeout while talking to the master daemon. Jobs might have"
2139 cd4c86a8 Michael Hanselmann
               " been submitted and will continue to run even if the call"
2140 cd4c86a8 Michael Hanselmann
               " timed out. Useful commands in this situation are \"gnt-job"
2141 cd4c86a8 Michael Hanselmann
               " list\", \"gnt-job cancel\" and \"gnt-job watch\". Error:\n")
2142 cd4c86a8 Michael Hanselmann
    obuf.write(msg)
2143 5a1c22fe Iustin Pop
  elif isinstance(err, luxi.PermissionError):
2144 5a1c22fe Iustin Pop
    obuf.write("It seems you don't have permissions to connect to the"
2145 5a1c22fe Iustin Pop
               " master daemon.\nPlease retry as a different user.")
2146 03a8dbdc Iustin Pop
  elif isinstance(err, luxi.ProtocolError):
2147 03a8dbdc Iustin Pop
    obuf.write("Unhandled protocol error while talking to the master daemon:\n"
2148 03a8dbdc Iustin Pop
               "%s" % msg)
2149 91c622a8 Iustin Pop
  elif isinstance(err, errors.JobLost):
2150 91c622a8 Iustin Pop
    obuf.write("Error checking job status: %s" % msg)
2151 cb1e6c3c Michael Hanselmann
  elif isinstance(err, errors.QueryFilterParseError):
2152 cb1e6c3c Michael Hanselmann
    obuf.write("Error while parsing query filter: %s\n" % err.args[0])
2153 cb1e6c3c Michael Hanselmann
    obuf.write("\n".join(err.GetDetails()))
2154 797506fc Michael Hanselmann
  elif isinstance(err, errors.GenericError):
2155 797506fc Michael Hanselmann
    obuf.write("Unhandled Ganeti error: %s" % msg)
2156 e9d741b6 Iustin Pop
  elif isinstance(err, JobSubmittedException):
2157 e9d741b6 Iustin Pop
    obuf.write("JobID: %s\n" % err.args[0])
2158 e9d741b6 Iustin Pop
    retcode = 0
2159 73702ee7 Iustin Pop
  else:
2160 e2e521d0 Iustin Pop
    obuf.write("Unhandled exception: %s" % msg)
2161 d0c8c01d Iustin Pop
  return retcode, obuf.getvalue().rstrip("\n")
2162 73702ee7 Iustin Pop
2163 73702ee7 Iustin Pop
2164 ef9fa5b9 René Nussbaumer
def GenericMain(commands, override=None, aliases=None,
2165 ef9fa5b9 René Nussbaumer
                env_override=frozenset()):
2166 a8083063 Iustin Pop
  """Generic main function for all the gnt-* commands.
2167 a8083063 Iustin Pop

2168 ef9fa5b9 René Nussbaumer
  @param commands: a dictionary with a special structure, see the design doc
2169 ef9fa5b9 René Nussbaumer
                   for command line handling.
2170 ef9fa5b9 René Nussbaumer
  @param override: if not None, we expect a dictionary with keys that will
2171 ef9fa5b9 René Nussbaumer
                   override command line options; this can be used to pass
2172 ef9fa5b9 René Nussbaumer
                   options from the scripts to generic functions
2173 ef9fa5b9 René Nussbaumer
  @param aliases: dictionary with command aliases {'alias': 'target, ...}
2174 ef9fa5b9 René Nussbaumer
  @param env_override: list of environment names which are allowed to submit
2175 ef9fa5b9 René Nussbaumer
                       default args for commands
2176 a8083063 Iustin Pop

2177 a8083063 Iustin Pop
  """
2178 a8083063 Iustin Pop
  # save the program name and the entire command line for later logging
2179 a8083063 Iustin Pop
  if sys.argv:
2180 c1f19851 Michael Hanselmann
    binary = os.path.basename(sys.argv[0])
2181 c1f19851 Michael Hanselmann
    if not binary:
2182 c1f19851 Michael Hanselmann
      binary = sys.argv[0]
2183 c1f19851 Michael Hanselmann
2184 a8083063 Iustin Pop
    if len(sys.argv) >= 2:
2185 c1f19851 Michael Hanselmann
      logname = utils.ShellQuoteArgs([binary, sys.argv[1]])
2186 a8083063 Iustin Pop
    else:
2187 c1f19851 Michael Hanselmann
      logname = binary
2188 c1f19851 Michael Hanselmann
2189 c1f19851 Michael Hanselmann
    cmdline = utils.ShellQuoteArgs([binary] + sys.argv[1:])
2190 a8083063 Iustin Pop
  else:
2191 a8083063 Iustin Pop
    binary = "<unknown program>"
2192 c1f19851 Michael Hanselmann
    cmdline = "<unknown>"
2193 a8083063 Iustin Pop
2194 de47cf8f Guido Trotter
  if aliases is None:
2195 de47cf8f Guido Trotter
    aliases = {}
2196 de47cf8f Guido Trotter
2197 3126878d Guido Trotter
  try:
2198 ef9fa5b9 René Nussbaumer
    func, options, args = _ParseArgs(sys.argv, commands, aliases, env_override)
2199 3126878d Guido Trotter
  except errors.ParameterError, err:
2200 3126878d Guido Trotter
    result, err_msg = FormatError(err)
2201 3126878d Guido Trotter
    ToStderr(err_msg)
2202 3126878d Guido Trotter
    return 1
2203 3126878d Guido Trotter
2204 a8083063 Iustin Pop
  if func is None: # parse error
2205 a8083063 Iustin Pop
    return 1
2206 a8083063 Iustin Pop
2207 334d1483 Iustin Pop
  if override is not None:
2208 334d1483 Iustin Pop
    for key, val in override.iteritems():
2209 334d1483 Iustin Pop
      setattr(options, key, val)
2210 334d1483 Iustin Pop
2211 c1f19851 Michael Hanselmann
  utils.SetupLogging(constants.LOG_COMMANDS, logname, debug=options.debug,
2212 cfcc79c6 Michael Hanselmann
                     stderr_logging=True)
2213 a8083063 Iustin Pop
2214 c1f19851 Michael Hanselmann
  logging.info("Command line: %s", cmdline)
2215 a8083063 Iustin Pop
2216 a8083063 Iustin Pop
  try:
2217 a4af651e Iustin Pop
    result = func(options, args)
2218 d8353c3a Iustin Pop
  except (errors.GenericError, luxi.ProtocolError,
2219 d8353c3a Iustin Pop
          JobSubmittedException), err:
2220 a4af651e Iustin Pop
    result, err_msg = FormatError(err)
2221 5bbd3f7f Michael Hanselmann
    logging.exception("Error during command processing")
2222 46fbdd04 Iustin Pop
    ToStderr(err_msg)
2223 8a53b55f Iustin Pop
  except KeyboardInterrupt:
2224 8a53b55f Iustin Pop
    result = constants.EXIT_FAILURE
2225 8a53b55f Iustin Pop
    ToStderr("Aborted. Note that if the operation created any jobs, they"
2226 8a53b55f Iustin Pop
             " might have been submitted and"
2227 8a53b55f Iustin Pop
             " will continue to run in the background.")
2228 225e2544 Iustin Pop
  except IOError, err:
2229 225e2544 Iustin Pop
    if err.errno == errno.EPIPE:
2230 225e2544 Iustin Pop
      # our terminal went away, we'll exit
2231 225e2544 Iustin Pop
      sys.exit(constants.EXIT_FAILURE)
2232 225e2544 Iustin Pop
    else:
2233 225e2544 Iustin Pop
      raise
2234 a8083063 Iustin Pop
2235 a8083063 Iustin Pop
  return result
2236 137161c9 Michael Hanselmann
2237 137161c9 Michael Hanselmann
2238 845c79d8 Michael Hanselmann
def ParseNicOption(optvalue):
2239 845c79d8 Michael Hanselmann
  """Parses the value of the --net option(s).
2240 845c79d8 Michael Hanselmann

2241 845c79d8 Michael Hanselmann
  """
2242 845c79d8 Michael Hanselmann
  try:
2243 845c79d8 Michael Hanselmann
    nic_max = max(int(nidx[0]) + 1 for nidx in optvalue)
2244 845c79d8 Michael Hanselmann
  except (TypeError, ValueError), err:
2245 845c79d8 Michael Hanselmann
    raise errors.OpPrereqError("Invalid NIC index passed: %s" % str(err))
2246 845c79d8 Michael Hanselmann
2247 845c79d8 Michael Hanselmann
  nics = [{}] * nic_max
2248 845c79d8 Michael Hanselmann
  for nidx, ndict in optvalue:
2249 845c79d8 Michael Hanselmann
    nidx = int(nidx)
2250 845c79d8 Michael Hanselmann
2251 845c79d8 Michael Hanselmann
    if not isinstance(ndict, dict):
2252 845c79d8 Michael Hanselmann
      raise errors.OpPrereqError("Invalid nic/%d value: expected dict,"
2253 845c79d8 Michael Hanselmann
                                 " got %s" % (nidx, ndict))
2254 845c79d8 Michael Hanselmann
2255 845c79d8 Michael Hanselmann
    utils.ForceDictType(ndict, constants.INIC_PARAMS_TYPES)
2256 845c79d8 Michael Hanselmann
2257 845c79d8 Michael Hanselmann
    nics[nidx] = ndict
2258 845c79d8 Michael Hanselmann
2259 845c79d8 Michael Hanselmann
  return nics
2260 845c79d8 Michael Hanselmann
2261 845c79d8 Michael Hanselmann
2262 d77490c5 Iustin Pop
def GenericInstanceCreate(mode, opts, args):
2263 d77490c5 Iustin Pop
  """Add an instance to the cluster via either creation or import.
2264 d77490c5 Iustin Pop

2265 d77490c5 Iustin Pop
  @param mode: constants.INSTANCE_CREATE or constants.INSTANCE_IMPORT
2266 d77490c5 Iustin Pop
  @param opts: the command line options selected by the user
2267 d77490c5 Iustin Pop
  @type args: list
2268 d77490c5 Iustin Pop
  @param args: should contain only one element, the new instance name
2269 d77490c5 Iustin Pop
  @rtype: int
2270 d77490c5 Iustin Pop
  @return: the desired exit code
2271 d77490c5 Iustin Pop

2272 d77490c5 Iustin Pop
  """
2273 d77490c5 Iustin Pop
  instance = args[0]
2274 d77490c5 Iustin Pop
2275 d77490c5 Iustin Pop
  (pnode, snode) = SplitNodeOption(opts.node)
2276 d77490c5 Iustin Pop
2277 d77490c5 Iustin Pop
  hypervisor = None
2278 d77490c5 Iustin Pop
  hvparams = {}
2279 d77490c5 Iustin Pop
  if opts.hypervisor:
2280 d77490c5 Iustin Pop
    hypervisor, hvparams = opts.hypervisor
2281 d77490c5 Iustin Pop
2282 d77490c5 Iustin Pop
  if opts.nics:
2283 845c79d8 Michael Hanselmann
    nics = ParseNicOption(opts.nics)
2284 d77490c5 Iustin Pop
  elif opts.no_nics:
2285 d77490c5 Iustin Pop
    # no nics
2286 d77490c5 Iustin Pop
    nics = []
2287 0af0f641 Iustin Pop
  elif mode == constants.INSTANCE_CREATE:
2288 d77490c5 Iustin Pop
    # default of one nic, all auto
2289 d77490c5 Iustin Pop
    nics = [{}]
2290 0af0f641 Iustin Pop
  else:
2291 0af0f641 Iustin Pop
    # mode == import
2292 0af0f641 Iustin Pop
    nics = []
2293 d77490c5 Iustin Pop
2294 d77490c5 Iustin Pop
  if opts.disk_template == constants.DT_DISKLESS:
2295 d77490c5 Iustin Pop
    if opts.disks or opts.sd_size is not None:
2296 d77490c5 Iustin Pop
      raise errors.OpPrereqError("Diskless instance but disk"
2297 d77490c5 Iustin Pop
                                 " information passed")
2298 d77490c5 Iustin Pop
    disks = []
2299 d77490c5 Iustin Pop
  else:
2300 9b12ed0f Iustin Pop
    if (not opts.disks and not opts.sd_size
2301 9b12ed0f Iustin Pop
        and mode == constants.INSTANCE_CREATE):
2302 d77490c5 Iustin Pop
      raise errors.OpPrereqError("No disk information specified")
2303 d77490c5 Iustin Pop
    if opts.disks and opts.sd_size is not None:
2304 d77490c5 Iustin Pop
      raise errors.OpPrereqError("Please use either the '--disk' or"
2305 d77490c5 Iustin Pop
                                 " '-s' option")
2306 d77490c5 Iustin Pop
    if opts.sd_size is not None:
2307 ccfa86ba Michael Hanselmann
      opts.disks = [(0, {constants.IDISK_SIZE: opts.sd_size})]
2308 9b12ed0f Iustin Pop
2309 9b12ed0f Iustin Pop
    if opts.disks:
2310 9b12ed0f Iustin Pop
      try:
2311 9b12ed0f Iustin Pop
        disk_max = max(int(didx[0]) + 1 for didx in opts.disks)
2312 9b12ed0f Iustin Pop
      except ValueError, err:
2313 9b12ed0f Iustin Pop
        raise errors.OpPrereqError("Invalid disk index passed: %s" % str(err))
2314 9b12ed0f Iustin Pop
      disks = [{}] * disk_max
2315 9b12ed0f Iustin Pop
    else:
2316 9b12ed0f Iustin Pop
      disks = []
2317 d77490c5 Iustin Pop
    for didx, ddict in opts.disks:
2318 d77490c5 Iustin Pop
      didx = int(didx)
2319 d77490c5 Iustin Pop
      if not isinstance(ddict, dict):
2320 d77490c5 Iustin Pop
        msg = "Invalid disk/%d value: expected dict, got %s" % (didx, ddict)
2321 d77490c5 Iustin Pop
        raise errors.OpPrereqError(msg)
2322 ccfa86ba Michael Hanselmann
      elif constants.IDISK_SIZE in ddict:
2323 ccfa86ba Michael Hanselmann
        if constants.IDISK_ADOPT in ddict:
2324 5029db65 Iustin Pop
          raise errors.OpPrereqError("Only one of 'size' and 'adopt' allowed"
2325 5029db65 Iustin Pop
                                     " (disk %d)" % didx)
2326 5029db65 Iustin Pop
        try:
2327 ccfa86ba Michael Hanselmann
          ddict[constants.IDISK_SIZE] = \
2328 ccfa86ba Michael Hanselmann
            utils.ParseUnit(ddict[constants.IDISK_SIZE])
2329 5029db65 Iustin Pop
        except ValueError, err:
2330 5029db65 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size for disk %d: %s" %
2331 5029db65 Iustin Pop
                                     (didx, err))
2332 ccfa86ba Michael Hanselmann
      elif constants.IDISK_ADOPT in ddict:
2333 5029db65 Iustin Pop
        if mode == constants.INSTANCE_IMPORT:
2334 5029db65 Iustin Pop
          raise errors.OpPrereqError("Disk adoption not allowed for instance"
2335 5029db65 Iustin Pop
                                     " import")
2336 ccfa86ba Michael Hanselmann
        ddict[constants.IDISK_SIZE] = 0
2337 5029db65 Iustin Pop
      else:
2338 5029db65 Iustin Pop
        raise errors.OpPrereqError("Missing size or adoption source for"
2339 5029db65 Iustin Pop
                                   " disk %d" % didx)
2340 d77490c5 Iustin Pop
      disks[didx] = ddict
2341 d77490c5 Iustin Pop
2342 a57981c5 Apollon Oikonomopoulos
  if opts.tags is not None:
2343 0f8810df Michael Hanselmann
    tags = opts.tags.split(",")
2344 a57981c5 Apollon Oikonomopoulos
  else:
2345 a57981c5 Apollon Oikonomopoulos
    tags = []
2346 a57981c5 Apollon Oikonomopoulos
2347 b2e233a5 Guido Trotter
  utils.ForceDictType(opts.beparams, constants.BES_PARAMETER_COMPAT)
2348 d77490c5 Iustin Pop
  utils.ForceDictType(hvparams, constants.HVS_PARAMETER_TYPES)
2349 d77490c5 Iustin Pop
2350 d77490c5 Iustin Pop
  if mode == constants.INSTANCE_CREATE:
2351 d77490c5 Iustin Pop
    start = opts.start
2352 d77490c5 Iustin Pop
    os_type = opts.os
2353 1ee8e01a Guido Trotter
    force_variant = opts.force_variant
2354 d77490c5 Iustin Pop
    src_node = None
2355 d77490c5 Iustin Pop
    src_path = None
2356 25a8792c Iustin Pop
    no_install = opts.no_install
2357 e588764d Iustin Pop
    identify_defaults = False
2358 d77490c5 Iustin Pop
  elif mode == constants.INSTANCE_IMPORT:
2359 d77490c5 Iustin Pop
    start = False
2360 d77490c5 Iustin Pop
    os_type = None
2361 1ee8e01a Guido Trotter
    force_variant = False
2362 d77490c5 Iustin Pop
    src_node = opts.src_node
2363 d77490c5 Iustin Pop
    src_path = opts.src_dir
2364 25a8792c Iustin Pop
    no_install = None
2365 e588764d Iustin Pop
    identify_defaults = opts.identify_defaults
2366 d77490c5 Iustin Pop
  else:
2367 d77490c5 Iustin Pop
    raise errors.ProgrammerError("Invalid creation mode %s" % mode)
2368 d77490c5 Iustin Pop
2369 e1530b10 Iustin Pop
  op = opcodes.OpInstanceCreate(instance_name=instance,
2370 d77490c5 Iustin Pop
                                disks=disks,
2371 d77490c5 Iustin Pop
                                disk_template=opts.disk_template,
2372 d77490c5 Iustin Pop
                                nics=nics,
2373 d77490c5 Iustin Pop
                                pnode=pnode, snode=snode,
2374 d77490c5 Iustin Pop
                                ip_check=opts.ip_check,
2375 460d22be Iustin Pop
                                name_check=opts.name_check,
2376 d77490c5 Iustin Pop
                                wait_for_sync=opts.wait_for_sync,
2377 d77490c5 Iustin Pop
                                file_storage_dir=opts.file_storage_dir,
2378 d77490c5 Iustin Pop
                                file_driver=opts.file_driver,
2379 d77490c5 Iustin Pop
                                iallocator=opts.iallocator,
2380 d77490c5 Iustin Pop
                                hypervisor=hypervisor,
2381 d77490c5 Iustin Pop
                                hvparams=hvparams,
2382 d77490c5 Iustin Pop
                                beparams=opts.beparams,
2383 062a7100 Iustin Pop
                                osparams=opts.osparams,
2384 d77490c5 Iustin Pop
                                mode=mode,
2385 d77490c5 Iustin Pop
                                start=start,
2386 d77490c5 Iustin Pop
                                os_type=os_type,
2387 1ee8e01a Guido Trotter
                                force_variant=force_variant,
2388 d77490c5 Iustin Pop
                                src_node=src_node,
2389 25a8792c Iustin Pop
                                src_path=src_path,
2390 a57981c5 Apollon Oikonomopoulos
                                tags=tags,
2391 e588764d Iustin Pop
                                no_install=no_install,
2392 10889e0c René Nussbaumer
                                identify_defaults=identify_defaults,
2393 10889e0c René Nussbaumer
                                ignore_ipolicy=opts.ignore_ipolicy)
2394 d77490c5 Iustin Pop
2395 d77490c5 Iustin Pop
  SubmitOrSend(op, opts)
2396 d77490c5 Iustin Pop
  return 0
2397 d77490c5 Iustin Pop
2398 d77490c5 Iustin Pop
2399 7e49b6ce Michael Hanselmann
class _RunWhileClusterStoppedHelper:
2400 7e49b6ce Michael Hanselmann
  """Helper class for L{RunWhileClusterStopped} to simplify state management
2401 7e49b6ce Michael Hanselmann

2402 7e49b6ce Michael Hanselmann
  """
2403 7e49b6ce Michael Hanselmann
  def __init__(self, feedback_fn, cluster_name, master_node, online_nodes):
2404 7e49b6ce Michael Hanselmann
    """Initializes this class.
2405 7e49b6ce Michael Hanselmann

2406 7e49b6ce Michael Hanselmann
    @type feedback_fn: callable
2407 7e49b6ce Michael Hanselmann
    @param feedback_fn: Feedback function
2408 7e49b6ce Michael Hanselmann
    @type cluster_name: string
2409 7e49b6ce Michael Hanselmann
    @param cluster_name: Cluster name
2410 7e49b6ce Michael Hanselmann
    @type master_node: string
2411 7e49b6ce Michael Hanselmann
    @param master_node Master node name
2412 7e49b6ce Michael Hanselmann
    @type online_nodes: list
2413 7e49b6ce Michael Hanselmann
    @param online_nodes: List of names of online nodes
2414 7e49b6ce Michael Hanselmann

2415 7e49b6ce Michael Hanselmann
    """
2416 7e49b6ce Michael Hanselmann
    self.feedback_fn = feedback_fn
2417 7e49b6ce Michael Hanselmann
    self.cluster_name = cluster_name
2418 7e49b6ce Michael Hanselmann
    self.master_node = master_node
2419 7e49b6ce Michael Hanselmann
    self.online_nodes = online_nodes
2420 7e49b6ce Michael Hanselmann
2421 7e49b6ce Michael Hanselmann
    self.ssh = ssh.SshRunner(self.cluster_name)
2422 7e49b6ce Michael Hanselmann
2423 7e49b6ce Michael Hanselmann
    self.nonmaster_nodes = [name for name in online_nodes
2424 7e49b6ce Michael Hanselmann
                            if name != master_node]
2425 7e49b6ce Michael Hanselmann
2426 7e49b6ce Michael Hanselmann
    assert self.master_node not in self.nonmaster_nodes
2427 7e49b6ce Michael Hanselmann
2428 7e49b6ce Michael Hanselmann
  def _RunCmd(self, node_name, cmd):
2429 7e49b6ce Michael Hanselmann
    """Runs a command on the local or a remote machine.
2430 7e49b6ce Michael Hanselmann

2431 7e49b6ce Michael Hanselmann
    @type node_name: string
2432 7e49b6ce Michael Hanselmann
    @param node_name: Machine name
2433 7e49b6ce Michael Hanselmann
    @type cmd: list
2434 7e49b6ce Michael Hanselmann
    @param cmd: Command
2435 7e49b6ce Michael Hanselmann

2436 7e49b6ce Michael Hanselmann
    """
2437 7e49b6ce Michael Hanselmann
    if node_name is None or node_name == self.master_node:
2438 7e49b6ce Michael Hanselmann
      # No need to use SSH
2439 7e49b6ce Michael Hanselmann
      result = utils.RunCmd(cmd)
2440 7e49b6ce Michael Hanselmann
    else:
2441 7e49b6ce Michael Hanselmann
      result = self.ssh.Run(node_name, "root", utils.ShellQuoteArgs(cmd))
2442 7e49b6ce Michael Hanselmann
2443 7e49b6ce Michael Hanselmann
    if result.failed:
2444 7e49b6ce Michael Hanselmann
      errmsg = ["Failed to run command %s" % result.cmd]
2445 7e49b6ce Michael Hanselmann
      if node_name:
2446 7e49b6ce Michael Hanselmann
        errmsg.append("on node %s" % node_name)
2447 7e49b6ce Michael Hanselmann
      errmsg.append(": exitcode %s and error %s" %
2448 7e49b6ce Michael Hanselmann
                    (result.exit_code, result.output))
2449 7e49b6ce Michael Hanselmann
      raise errors.OpExecError(" ".join(errmsg))
2450 7e49b6ce Michael Hanselmann
2451 7e49b6ce Michael Hanselmann
  def Call(self, fn, *args):
2452 7e49b6ce Michael Hanselmann
    """Call function while all daemons are stopped.
2453 7e49b6ce Michael Hanselmann

2454 7e49b6ce Michael Hanselmann
    @type fn: callable
2455 7e49b6ce Michael Hanselmann
    @param fn: Function to be called
2456 7e49b6ce Michael Hanselmann

2457 7e49b6ce Michael Hanselmann
    """
2458 7e49b6ce Michael Hanselmann
    # Pause watcher by acquiring an exclusive lock on watcher state file
2459 7e49b6ce Michael Hanselmann
    self.feedback_fn("Blocking watcher")
2460 16e0b9c9 Michael Hanselmann
    watcher_block = utils.FileLock.Open(constants.WATCHER_LOCK_FILE)
2461 7e49b6ce Michael Hanselmann
    try:
2462 7e49b6ce Michael Hanselmann
      # TODO: Currently, this just blocks. There's no timeout.
2463 7e49b6ce Michael Hanselmann
      # TODO: Should it be a shared lock?
2464 7e49b6ce Michael Hanselmann
      watcher_block.Exclusive(blocking=True)
2465 7e49b6ce Michael Hanselmann
2466 7e49b6ce Michael Hanselmann
      # Stop master daemons, so that no new jobs can come in and all running
2467 7e49b6ce Michael Hanselmann
      # ones are finished
2468 7e49b6ce Michael Hanselmann
      self.feedback_fn("Stopping master daemons")
2469 7e49b6ce Michael Hanselmann
      self._RunCmd(None, [constants.DAEMON_UTIL, "stop-master"])
2470 7e49b6ce Michael Hanselmann
      try:
2471 7e49b6ce Michael Hanselmann
        # Stop daemons on all nodes
2472 7e49b6ce Michael Hanselmann
        for node_name in self.online_nodes:
2473 7e49b6ce Michael Hanselmann
          self.feedback_fn("Stopping daemons on %s" % node_name)
2474 7e49b6ce Michael Hanselmann
          self._RunCmd(node_name, [constants.DAEMON_UTIL, "stop-all"])
2475 7e49b6ce Michael Hanselmann
2476 7e49b6ce Michael Hanselmann
        # All daemons are shut down now
2477 7e49b6ce Michael Hanselmann
        try:
2478 7e49b6ce Michael Hanselmann
          return fn(self, *args)
2479 d512e84b Michael Hanselmann
        except Exception, err:
2480 d512e84b Michael Hanselmann
          _, errmsg = FormatError(err)
2481 7e49b6ce Michael Hanselmann
          logging.exception("Caught exception")
2482 d512e84b Michael Hanselmann
          self.feedback_fn(errmsg)
2483 7e49b6ce Michael Hanselmann
          raise
2484 7e49b6ce Michael Hanselmann
      finally:
2485 7e49b6ce Michael Hanselmann
        # Start cluster again, master node last
2486 7e49b6ce Michael Hanselmann
        for node_name in self.nonmaster_nodes + [self.master_node]:
2487 7e49b6ce Michael Hanselmann
          self.feedback_fn("Starting daemons on %s" % node_name)
2488 7e49b6ce Michael Hanselmann
          self._RunCmd(node_name, [constants.DAEMON_UTIL, "start-all"])
2489 7e49b6ce Michael Hanselmann
    finally:
2490 7e49b6ce Michael Hanselmann
      # Resume watcher
2491 7e49b6ce Michael Hanselmann
      watcher_block.Close()
2492 7e49b6ce Michael Hanselmann
2493 7e49b6ce Michael Hanselmann
2494 7e49b6ce Michael Hanselmann
def RunWhileClusterStopped(feedback_fn, fn, *args):
2495 7e49b6ce Michael Hanselmann
  """Calls a function while all cluster daemons are stopped.
2496 7e49b6ce Michael Hanselmann

2497 7e49b6ce Michael Hanselmann
  @type feedback_fn: callable
2498 7e49b6ce Michael Hanselmann
  @param feedback_fn: Feedback function
2499 7e49b6ce Michael Hanselmann
  @type fn: callable
2500 7e49b6ce Michael Hanselmann
  @param fn: Function to be called when daemons are stopped
2501 7e49b6ce Michael Hanselmann

2502 7e49b6ce Michael Hanselmann
  """
2503 7e49b6ce Michael Hanselmann
  feedback_fn("Gathering cluster information")
2504 7e49b6ce Michael Hanselmann
2505 7e49b6ce Michael Hanselmann
  # This ensures we're running on the master daemon
2506 7e49b6ce Michael Hanselmann
  cl = GetClient()
2507 7e49b6ce Michael Hanselmann
2508 7e49b6ce Michael Hanselmann
  (cluster_name, master_node) = \
2509 7e49b6ce Michael Hanselmann
    cl.QueryConfigValues(["cluster_name", "master_node"])
2510 7e49b6ce Michael Hanselmann
2511 7e49b6ce Michael Hanselmann
  online_nodes = GetOnlineNodes([], cl=cl)
2512 7e49b6ce Michael Hanselmann
2513 7e49b6ce Michael Hanselmann
  # Don't keep a reference to the client. The master daemon will go away.
2514 7e49b6ce Michael Hanselmann
  del cl
2515 7e49b6ce Michael Hanselmann
2516 7e49b6ce Michael Hanselmann
  assert master_node in online_nodes
2517 7e49b6ce Michael Hanselmann
2518 7e49b6ce Michael Hanselmann
  return _RunWhileClusterStoppedHelper(feedback_fn, cluster_name, master_node,
2519 7e49b6ce Michael Hanselmann
                                       online_nodes).Call(fn, *args)
2520 7e49b6ce Michael Hanselmann
2521 7e49b6ce Michael Hanselmann
2522 16be8703 Iustin Pop
def GenerateTable(headers, fields, separator, data,
2523 9fbfbb7b Iustin Pop
                  numfields=None, unitfields=None,
2524 9fbfbb7b Iustin Pop
                  units=None):
2525 137161c9 Michael Hanselmann
  """Prints a table with headers and different fields.
2526 137161c9 Michael Hanselmann

2527 9fbfbb7b Iustin Pop
  @type headers: dict
2528 9fbfbb7b Iustin Pop
  @param headers: dictionary mapping field names to headers for
2529 9fbfbb7b Iustin Pop
      the table
2530 9fbfbb7b Iustin Pop
  @type fields: list
2531 9fbfbb7b Iustin Pop
  @param fields: the field names corresponding to each row in
2532 9fbfbb7b Iustin Pop
      the data field
2533 9fbfbb7b Iustin Pop
  @param separator: the separator to be used; if this is None,
2534 9fbfbb7b Iustin Pop
      the default 'smart' algorithm is used which computes optimal
2535 9fbfbb7b Iustin Pop
      field width, otherwise just the separator is used between
2536 9fbfbb7b Iustin Pop
      each field
2537 9fbfbb7b Iustin Pop
  @type data: list
2538 9fbfbb7b Iustin Pop
  @param data: a list of lists, each sublist being one row to be output
2539 9fbfbb7b Iustin Pop
  @type numfields: list
2540 9fbfbb7b Iustin Pop
  @param numfields: a list with the fields that hold numeric
2541 9fbfbb7b Iustin Pop
      values and thus should be right-aligned
2542 9fbfbb7b Iustin Pop
  @type unitfields: list
2543 9fbfbb7b Iustin Pop
  @param unitfields: a list with the fields that hold numeric
2544 9fbfbb7b Iustin Pop
      values that should be formatted with the units field
2545 9fbfbb7b Iustin Pop
  @type units: string or None
2546 9fbfbb7b Iustin Pop
  @param units: the units we should use for formatting, or None for
2547 9fbfbb7b Iustin Pop
      automatic choice (human-readable for non-separator usage, otherwise
2548 9fbfbb7b Iustin Pop
      megabytes); this is a one-letter string
2549 137161c9 Michael Hanselmann

2550 137161c9 Michael Hanselmann
  """
2551 9fbfbb7b Iustin Pop
  if units is None:
2552 9fbfbb7b Iustin Pop
    if separator:
2553 9fbfbb7b Iustin Pop
      units = "m"
2554 9fbfbb7b Iustin Pop
    else:
2555 9fbfbb7b Iustin Pop
      units = "h"
2556 9fbfbb7b Iustin Pop
2557 137161c9 Michael Hanselmann
  if numfields is None:
2558 137161c9 Michael Hanselmann
    numfields = []
2559 137161c9 Michael Hanselmann
  if unitfields is None:
2560 137161c9 Michael Hanselmann
    unitfields = []
2561 137161c9 Michael Hanselmann
2562 b459a848 Andrea Spadaccini
  numfields = utils.FieldSet(*numfields)   # pylint: disable=W0142
2563 b459a848 Andrea Spadaccini
  unitfields = utils.FieldSet(*unitfields) # pylint: disable=W0142
2564 00430f8e Iustin Pop
2565 137161c9 Michael Hanselmann
  format_fields = []
2566 137161c9 Michael Hanselmann
  for field in fields:
2567 01ca31ae Iustin Pop
    if headers and field not in headers:
2568 ea5a5b74 Guido Trotter
      # TODO: handle better unknown fields (either revert to old
2569 71c1af58 Iustin Pop
      # style of raising exception, or deal more intelligently with
2570 71c1af58 Iustin Pop
      # variable fields)
2571 71c1af58 Iustin Pop
      headers[field] = field
2572 137161c9 Michael Hanselmann
    if separator is not None:
2573 137161c9 Michael Hanselmann
      format_fields.append("%s")
2574 00430f8e Iustin Pop
    elif numfields.Matches(field):
2575 137161c9 Michael Hanselmann
      format_fields.append("%*s")
2576 137161c9 Michael Hanselmann
    else:
2577 137161c9 Michael Hanselmann
      format_fields.append("%-*s")
2578 137161c9 Michael Hanselmann
2579 137161c9 Michael Hanselmann
  if separator is None:
2580 137161c9 Michael Hanselmann
    mlens = [0 for name in fields]
2581 d0c8c01d Iustin Pop
    format_str = " ".join(format_fields)
2582 137161c9 Michael Hanselmann
  else:
2583 c04bc777 Iustin Pop
    format_str = separator.replace("%", "%%").join(format_fields)
2584 137161c9 Michael Hanselmann
2585 137161c9 Michael Hanselmann
  for row in data:
2586 dcbd6288 Guido Trotter
    if row is None:
2587 dcbd6288 Guido Trotter
      continue
2588 137161c9 Michael Hanselmann
    for idx, val in enumerate(row):
2589 00430f8e Iustin Pop
      if unitfields.Matches(fields[idx]):
2590 137161c9 Michael Hanselmann
        try:
2591 137161c9 Michael Hanselmann
          val = int(val)
2592 691744c4 Iustin Pop
        except (TypeError, ValueError):
2593 137161c9 Michael Hanselmann
          pass
2594 137161c9 Michael Hanselmann
        else:
2595 9fbfbb7b Iustin Pop
          val = row[idx] = utils.FormatUnit(val, units)
2596 01ca31ae Iustin Pop
      val = row[idx] = str(val)
2597 137161c9 Michael Hanselmann
      if separator is None:
2598 137161c9 Michael Hanselmann
        mlens[idx] = max(mlens[idx], len(val))
2599 137161c9 Michael Hanselmann
2600 16be8703 Iustin Pop
  result = []
2601 137161c9 Michael Hanselmann
  if headers:
2602 137161c9 Michael Hanselmann
    args = []
2603 137161c9 Michael Hanselmann
    for idx, name in enumerate(fields):
2604 137161c9 Michael Hanselmann
      hdr = headers[name]
2605 137161c9 Michael Hanselmann
      if separator is None:
2606 137161c9 Michael Hanselmann
        mlens[idx] = max(mlens[idx], len(hdr))
2607 137161c9 Michael Hanselmann
        args.append(mlens[idx])
2608 137161c9 Michael Hanselmann
      args.append(hdr)
2609 c04bc777 Iustin Pop
    result.append(format_str % tuple(args))
2610 137161c9 Michael Hanselmann
2611 ec39d63c Michael Hanselmann
  if separator is None:
2612 ec39d63c Michael Hanselmann
    assert len(mlens) == len(fields)
2613 ec39d63c Michael Hanselmann
2614 ec39d63c Michael Hanselmann
    if fields and not numfields.Matches(fields[-1]):
2615 ec39d63c Michael Hanselmann
      mlens[-1] = 0
2616 ec39d63c Michael Hanselmann
2617 137161c9 Michael Hanselmann
  for line in data:
2618 137161c9 Michael Hanselmann
    args = []
2619 dcbd6288 Guido Trotter
    if line is None:
2620 d0c8c01d Iustin Pop
      line = ["-" for _ in fields]
2621 f1501b3f Michael Hanselmann
    for idx in range(len(fields)):
2622 137161c9 Michael Hanselmann
      if separator is None:
2623 137161c9 Michael Hanselmann
        args.append(mlens[idx])
2624 137161c9 Michael Hanselmann
      args.append(line[idx])
2625 c04bc777 Iustin Pop
    result.append(format_str % tuple(args))
2626 16be8703 Iustin Pop
2627 16be8703 Iustin Pop
  return result
2628 3386e7a9 Iustin Pop
2629 3386e7a9 Iustin Pop
2630 ee3aedff Michael Hanselmann
def _FormatBool(value):
2631 ee3aedff Michael Hanselmann
  """Formats a boolean value as a string.
2632 ee3aedff Michael Hanselmann

2633 ee3aedff Michael Hanselmann
  """
2634 ee3aedff Michael Hanselmann
  if value:
2635 ee3aedff Michael Hanselmann
    return "Y"
2636 ee3aedff Michael Hanselmann
  return "N"
2637 ee3aedff Michael Hanselmann
2638 ee3aedff Michael Hanselmann
2639 ee3aedff Michael Hanselmann
#: Default formatting for query results; (callback, align right)
2640 ee3aedff Michael Hanselmann
_DEFAULT_FORMAT_QUERY = {
2641 ee3aedff Michael Hanselmann
  constants.QFT_TEXT: (str, False),
2642 ee3aedff Michael Hanselmann
  constants.QFT_BOOL: (_FormatBool, False),
2643 ee3aedff Michael Hanselmann
  constants.QFT_NUMBER: (str, True),
2644 ee3aedff Michael Hanselmann
  constants.QFT_TIMESTAMP: (utils.FormatTime, False),
2645 ee3aedff Michael Hanselmann
  constants.QFT_OTHER: (str, False),
2646 ee3aedff Michael Hanselmann
  constants.QFT_UNKNOWN: (str, False),
2647 ee3aedff Michael Hanselmann
  }
2648 ee3aedff Michael Hanselmann
2649 ee3aedff Michael Hanselmann
2650 ee3aedff Michael Hanselmann
def _GetColumnFormatter(fdef, override, unit):
2651 ee3aedff Michael Hanselmann
  """Returns formatting function for a field.
2652 ee3aedff Michael Hanselmann

2653 ee3aedff Michael Hanselmann
  @type fdef: L{objects.QueryFieldDefinition}
2654 ee3aedff Michael Hanselmann
  @type override: dict
2655 ee3aedff Michael Hanselmann
  @param override: Dictionary for overriding field formatting functions,
2656 ee3aedff Michael Hanselmann
    indexed by field name, contents like L{_DEFAULT_FORMAT_QUERY}
2657 ee3aedff Michael Hanselmann
  @type unit: string
2658 ee3aedff Michael Hanselmann
  @param unit: Unit used for formatting fields of type L{constants.QFT_UNIT}
2659 ee3aedff Michael Hanselmann
  @rtype: tuple; (callable, bool)
2660 ee3aedff Michael Hanselmann
  @return: Returns the function to format a value (takes one parameter) and a
2661 ee3aedff Michael Hanselmann
    boolean for aligning the value on the right-hand side
2662 ee3aedff Michael Hanselmann

2663 ee3aedff Michael Hanselmann
  """
2664 ee3aedff Michael Hanselmann
  fmt = override.get(fdef.name, None)
2665 ee3aedff Michael Hanselmann
  if fmt is not None:
2666 ee3aedff Michael Hanselmann
    return fmt
2667 ee3aedff Michael Hanselmann
2668 ee3aedff Michael Hanselmann
  assert constants.QFT_UNIT not in _DEFAULT_FORMAT_QUERY
2669 ee3aedff Michael Hanselmann
2670 ee3aedff Michael Hanselmann
  if fdef.kind == constants.QFT_UNIT:
2671 ee3aedff Michael Hanselmann
    # Can't keep this information in the static dictionary
2672 ee3aedff Michael Hanselmann
    return (lambda value: utils.FormatUnit(value, unit), True)
2673 ee3aedff Michael Hanselmann
2674 ee3aedff Michael Hanselmann
  fmt = _DEFAULT_FORMAT_QUERY.get(fdef.kind, None)
2675 ee3aedff Michael Hanselmann
  if fmt is not None:
2676 ee3aedff Michael Hanselmann
    return fmt
2677 ee3aedff Michael Hanselmann
2678 ee3aedff Michael Hanselmann
  raise NotImplementedError("Can't format column type '%s'" % fdef.kind)
2679 ee3aedff Michael Hanselmann
2680 ee3aedff Michael Hanselmann
2681 ee3aedff Michael Hanselmann
class _QueryColumnFormatter:
2682 ee3aedff Michael Hanselmann
  """Callable class for formatting fields of a query.
2683 ee3aedff Michael Hanselmann

2684 ee3aedff Michael Hanselmann
  """
2685 f0b1bafe Iustin Pop
  def __init__(self, fn, status_fn, verbose):
2686 ee3aedff Michael Hanselmann
    """Initializes this class.
2687 ee3aedff Michael Hanselmann

2688 ee3aedff Michael Hanselmann
    @type fn: callable
2689 ee3aedff Michael Hanselmann
    @param fn: Formatting function
2690 ee3aedff Michael Hanselmann
    @type status_fn: callable
2691 ee3aedff Michael Hanselmann
    @param status_fn: Function to report fields' status
2692 f0b1bafe Iustin Pop
    @type verbose: boolean
2693 f0b1bafe Iustin Pop
    @param verbose: whether to use verbose field descriptions or not
2694 ee3aedff Michael Hanselmann

2695 ee3aedff Michael Hanselmann
    """
2696 ee3aedff Michael Hanselmann
    self._fn = fn
2697 ee3aedff Michael Hanselmann
    self._status_fn = status_fn
2698 cbfa4f0f Michael Hanselmann
    self._verbose = verbose
2699 ee3aedff Michael Hanselmann
2700 ee3aedff Michael Hanselmann
  def __call__(self, data):
2701 ee3aedff Michael Hanselmann
    """Returns a field's string representation.
2702 ee3aedff Michael Hanselmann

2703 ee3aedff Michael Hanselmann
    """
2704 ee3aedff Michael Hanselmann
    (status, value) = data
2705 ee3aedff Michael Hanselmann
2706 ee3aedff Michael Hanselmann
    # Report status
2707 ee3aedff Michael Hanselmann
    self._status_fn(status)
2708 ee3aedff Michael Hanselmann
2709 cfb084ae René Nussbaumer
    if status == constants.RS_NORMAL:
2710 ee3aedff Michael Hanselmann
      return self._fn(value)
2711 ee3aedff Michael Hanselmann
2712 ee3aedff Michael Hanselmann
    assert value is None, \
2713 ee3aedff Michael Hanselmann
           "Found value %r for abnormal status %s" % (value, status)
2714 ee3aedff Michael Hanselmann
2715 f2c6673d Michael Hanselmann
    return FormatResultError(status, self._verbose)
2716 ee3aedff Michael Hanselmann
2717 ee3aedff Michael Hanselmann
2718 f2c6673d Michael Hanselmann
def FormatResultError(status, verbose):
2719 ae95e419 René Nussbaumer
  """Formats result status other than L{constants.RS_NORMAL}.
2720 ee3aedff Michael Hanselmann

2721 ae95e419 René Nussbaumer
  @param status: The result status
2722 f2c6673d Michael Hanselmann
  @type verbose: boolean
2723 f2c6673d Michael Hanselmann
  @param verbose: Whether to return the verbose text
2724 ae95e419 René Nussbaumer
  @return: Text of result status
2725 a6070ef7 Michael Hanselmann

2726 ae95e419 René Nussbaumer
  """
2727 ae95e419 René Nussbaumer
  assert status != constants.RS_NORMAL, \
2728 cbfa4f0f Michael Hanselmann
         "FormatResultError called with status equal to constants.RS_NORMAL"
2729 ae95e419 René Nussbaumer
  try:
2730 cbfa4f0f Michael Hanselmann
    (verbose_text, normal_text) = constants.RSS_DESCRIPTION[status]
2731 ae95e419 René Nussbaumer
  except KeyError:
2732 ee3aedff Michael Hanselmann
    raise NotImplementedError("Unknown status %s" % status)
2733 cbfa4f0f Michael Hanselmann
  else:
2734 cbfa4f0f Michael Hanselmann
    if verbose:
2735 cbfa4f0f Michael Hanselmann
      return verbose_text
2736 cbfa4f0f Michael Hanselmann
    return normal_text
2737 ee3aedff Michael Hanselmann
2738 ee3aedff Michael Hanselmann
2739 ee3aedff Michael Hanselmann
def FormatQueryResult(result, unit=None, format_override=None, separator=None,
2740 f0b1bafe Iustin Pop
                      header=False, verbose=False):
2741 ee3aedff Michael Hanselmann
  """Formats data in L{objects.QueryResponse}.
2742 ee3aedff Michael Hanselmann

2743 ee3aedff Michael Hanselmann
  @type result: L{objects.QueryResponse}
2744 ee3aedff Michael Hanselmann
  @param result: result of query operation
2745 ee3aedff Michael Hanselmann
  @type unit: string
2746 ee3aedff Michael Hanselmann
  @param unit: Unit used for formatting fields of type L{constants.QFT_UNIT},
2747 18009c1e Iustin Pop
    see L{utils.text.FormatUnit}
2748 ee3aedff Michael Hanselmann
  @type format_override: dict
2749 ee3aedff Michael Hanselmann
  @param format_override: Dictionary for overriding field formatting functions,
2750 ee3aedff Michael Hanselmann
    indexed by field name, contents like L{_DEFAULT_FORMAT_QUERY}
2751 ee3aedff Michael Hanselmann
  @type separator: string or None
2752 ee3aedff Michael Hanselmann
  @param separator: String used to separate fields
2753 ee3aedff Michael Hanselmann
  @type header: bool
2754 ee3aedff Michael Hanselmann
  @param header: Whether to output header row
2755 f0b1bafe Iustin Pop
  @type verbose: boolean
2756 f0b1bafe Iustin Pop
  @param verbose: whether to use verbose field descriptions or not
2757 ee3aedff Michael Hanselmann

2758 ee3aedff Michael Hanselmann
  """
2759 ee3aedff Michael Hanselmann
  if unit is None:
2760 ee3aedff Michael Hanselmann
    if separator:
2761 ee3aedff Michael Hanselmann
      unit = "m"
2762 ee3aedff Michael Hanselmann
    else:
2763 ee3aedff Michael Hanselmann
      unit = "h"
2764 ee3aedff Michael Hanselmann
2765 ee3aedff Michael Hanselmann
  if format_override is None:
2766 ee3aedff Michael Hanselmann
    format_override = {}
2767 ee3aedff Michael Hanselmann
2768 cfb084ae René Nussbaumer
  stats = dict.fromkeys(constants.RS_ALL, 0)
2769 ee3aedff Michael Hanselmann
2770 ee3aedff Michael Hanselmann
  def _RecordStatus(status):
2771 ee3aedff Michael Hanselmann
    if status in stats:
2772 ee3aedff Michael Hanselmann
      stats[status] += 1
2773 ee3aedff Michael Hanselmann
2774 ee3aedff Michael Hanselmann
  columns = []
2775 ee3aedff Michael Hanselmann
  for fdef in result.fields:
2776 ee3aedff Michael Hanselmann
    assert fdef.title and fdef.name
2777 ee3aedff Michael Hanselmann
    (fn, align_right) = _GetColumnFormatter(fdef, format_override, unit)
2778 ee3aedff Michael Hanselmann
    columns.append(TableColumn(fdef.title,
2779 f0b1bafe Iustin Pop
                               _QueryColumnFormatter(fn, _RecordStatus,
2780 f0b1bafe Iustin Pop
                                                     verbose),
2781 ee3aedff Michael Hanselmann
                               align_right))
2782 ee3aedff Michael Hanselmann
2783 ee3aedff Michael Hanselmann
  table = FormatTable(result.data, columns, header, separator)
2784 ee3aedff Michael Hanselmann
2785 ee3aedff Michael Hanselmann
  # Collect statistics
2786 cfb084ae René Nussbaumer
  assert len(stats) == len(constants.RS_ALL)
2787 ee3aedff Michael Hanselmann
  assert compat.all(count >= 0 for count in stats.values())
2788 ee3aedff Michael Hanselmann
2789 ee3aedff Michael Hanselmann
  # Determine overall status. If there was no data, unknown fields must be
2790 ee3aedff Michael Hanselmann
  # detected via the field definitions.
2791 cfb084ae René Nussbaumer
  if (stats[constants.RS_UNKNOWN] or
2792 ee3aedff Michael Hanselmann
      (not result.data and _GetUnknownFields(result.fields))):
2793 ee3aedff Michael Hanselmann
    status = QR_UNKNOWN
2794 ee3aedff Michael Hanselmann
  elif compat.any(count > 0 for key, count in stats.items()
2795 cfb084ae René Nussbaumer
                  if key != constants.RS_NORMAL):
2796 ee3aedff Michael Hanselmann
    status = QR_INCOMPLETE
2797 ee3aedff Michael Hanselmann
  else:
2798 ee3aedff Michael Hanselmann
    status = QR_NORMAL
2799 ee3aedff Michael Hanselmann
2800 ee3aedff Michael Hanselmann
  return (status, table)
2801 ee3aedff Michael Hanselmann
2802 ee3aedff Michael Hanselmann
2803 ee3aedff Michael Hanselmann
def _GetUnknownFields(fdefs):
2804 ee3aedff Michael Hanselmann
  """Returns list of unknown fields included in C{fdefs}.
2805 ee3aedff Michael Hanselmann

2806 ee3aedff Michael Hanselmann
  @type fdefs: list of L{objects.QueryFieldDefinition}
2807 ee3aedff Michael Hanselmann

2808 ee3aedff Michael Hanselmann
  """
2809 ee3aedff Michael Hanselmann
  return [fdef for fdef in fdefs
2810 ee3aedff Michael Hanselmann
          if fdef.kind == constants.QFT_UNKNOWN]
2811 ee3aedff Michael Hanselmann
2812 ee3aedff Michael Hanselmann
2813 ee3aedff Michael Hanselmann
def _WarnUnknownFields(fdefs):
2814 ee3aedff Michael Hanselmann
  """Prints a warning to stderr if a query included unknown fields.
2815 ee3aedff Michael Hanselmann

2816 ee3aedff Michael Hanselmann
  @type fdefs: list of L{objects.QueryFieldDefinition}
2817 ee3aedff Michael Hanselmann

2818 ee3aedff Michael Hanselmann
  """
2819 ee3aedff Michael Hanselmann
  unknown = _GetUnknownFields(fdefs)
2820 ee3aedff Michael Hanselmann
  if unknown:
2821 ee3aedff Michael Hanselmann
    ToStderr("Warning: Queried for unknown fields %s",
2822 ee3aedff Michael Hanselmann
             utils.CommaJoin(fdef.name for fdef in unknown))
2823 ee3aedff Michael Hanselmann
    return True
2824 ee3aedff Michael Hanselmann
2825 ee3aedff Michael Hanselmann
  return False
2826 ee3aedff Michael Hanselmann
2827 ee3aedff Michael Hanselmann
2828 ee3aedff Michael Hanselmann
def GenericList(resource, fields, names, unit, separator, header, cl=None,
2829 03ec545a Michael Hanselmann
                format_override=None, verbose=False, force_filter=False,
2830 f037e9d7 Michael Hanselmann
                namefield=None, qfilter=None):
2831 ee3aedff Michael Hanselmann
  """Generic implementation for listing all items of a resource.
2832 ee3aedff Michael Hanselmann

2833 abd66bf8 Michael Hanselmann
  @param resource: One of L{constants.QR_VIA_LUXI}
2834 ee3aedff Michael Hanselmann
  @type fields: list of strings
2835 ee3aedff Michael Hanselmann
  @param fields: List of fields to query for
2836 ee3aedff Michael Hanselmann
  @type names: list of strings
2837 ee3aedff Michael Hanselmann
  @param names: Names of items to query for
2838 ee3aedff Michael Hanselmann
  @type unit: string or None
2839 ee3aedff Michael Hanselmann
  @param unit: Unit used for formatting fields of type L{constants.QFT_UNIT} or
2840 ee3aedff Michael Hanselmann
    None for automatic choice (human-readable for non-separator usage,
2841 ee3aedff Michael Hanselmann
    otherwise megabytes); this is a one-letter string
2842 ee3aedff Michael Hanselmann
  @type separator: string or None
2843 ee3aedff Michael Hanselmann
  @param separator: String used to separate fields
2844 ee3aedff Michael Hanselmann
  @type header: bool
2845 ee3aedff Michael Hanselmann
  @param header: Whether to show header row
2846 2928de47 Michael Hanselmann
  @type force_filter: bool
2847 2928de47 Michael Hanselmann
  @param force_filter: Whether to always treat names as filter
2848 ee3aedff Michael Hanselmann
  @type format_override: dict
2849 ee3aedff Michael Hanselmann
  @param format_override: Dictionary for overriding field formatting functions,
2850 ee3aedff Michael Hanselmann
    indexed by field name, contents like L{_DEFAULT_FORMAT_QUERY}
2851 f0b1bafe Iustin Pop
  @type verbose: boolean
2852 f0b1bafe Iustin Pop
  @param verbose: whether to use verbose field descriptions or not
2853 03ec545a Michael Hanselmann
  @type namefield: string
2854 03ec545a Michael Hanselmann
  @param namefield: Name of field to use for simple filters (see
2855 03ec545a Michael Hanselmann
    L{qlang.MakeFilter} for details)
2856 f037e9d7 Michael Hanselmann
  @type qfilter: list or None
2857 f037e9d7 Michael Hanselmann
  @param qfilter: Query filter (in addition to names)
2858 ee3aedff Michael Hanselmann

2859 ee3aedff Michael Hanselmann
  """
2860 ee3aedff Michael Hanselmann
  if not names:
2861 ee3aedff Michael Hanselmann
    names = None
2862 ee3aedff Michael Hanselmann
2863 f037e9d7 Michael Hanselmann
  namefilter = qlang.MakeFilter(names, force_filter, namefield=namefield)
2864 f037e9d7 Michael Hanselmann
2865 f037e9d7 Michael Hanselmann
  if qfilter is None:
2866 f037e9d7 Michael Hanselmann
    qfilter = namefilter
2867 f037e9d7 Michael Hanselmann
  elif namefilter is not None:
2868 f037e9d7 Michael Hanselmann
    qfilter = [qlang.OP_AND, namefilter, qfilter]
2869 2928de47 Michael Hanselmann
2870 727274dd Iustin Pop
  if cl is None:
2871 727274dd Iustin Pop
    cl = GetClient()
2872 727274dd Iustin Pop
2873 2e5c33db Iustin Pop
  response = cl.Query(resource, fields, qfilter)
2874 ee3aedff Michael Hanselmann
2875 ee3aedff Michael Hanselmann
  found_unknown = _WarnUnknownFields(response.fields)
2876 ee3aedff Michael Hanselmann
2877 ee3aedff Michael Hanselmann
  (status, data) = FormatQueryResult(response, unit=unit, separator=separator,
2878 ee3aedff Michael Hanselmann
                                     header=header,
2879 f0b1bafe Iustin Pop
                                     format_override=format_override,
2880 f0b1bafe Iustin Pop
                                     verbose=verbose)
2881 ee3aedff Michael Hanselmann
2882 ee3aedff Michael Hanselmann
  for line in data:
2883 ee3aedff Michael Hanselmann
    ToStdout(line)
2884 ee3aedff Michael Hanselmann
2885 ee3aedff Michael Hanselmann
  assert ((found_unknown and status == QR_UNKNOWN) or
2886 ee3aedff Michael Hanselmann
          (not found_unknown and status != QR_UNKNOWN))
2887 ee3aedff Michael Hanselmann
2888 ee3aedff Michael Hanselmann
  if status == QR_UNKNOWN:
2889 ee3aedff Michael Hanselmann
    return constants.EXIT_UNKNOWN_FIELD
2890 ee3aedff Michael Hanselmann
2891 ee3aedff Michael Hanselmann
  # TODO: Should the list command fail if not all data could be collected?
2892 ee3aedff Michael Hanselmann
  return constants.EXIT_SUCCESS
2893 ee3aedff Michael Hanselmann
2894 ee3aedff Michael Hanselmann
2895 ee3aedff Michael Hanselmann
def GenericListFields(resource, fields, separator, header, cl=None):
2896 ee3aedff Michael Hanselmann
  """Generic implementation for listing fields for a resource.
2897 ee3aedff Michael Hanselmann

2898 abd66bf8 Michael Hanselmann
  @param resource: One of L{constants.QR_VIA_LUXI}
2899 ee3aedff Michael Hanselmann
  @type fields: list of strings
2900 ee3aedff Michael Hanselmann
  @param fields: List of fields to query for
2901 ee3aedff Michael Hanselmann
  @type separator: string or None
2902 ee3aedff Michael Hanselmann
  @param separator: String used to separate fields
2903 ee3aedff Michael Hanselmann
  @type header: bool
2904 ee3aedff Michael Hanselmann
  @param header: Whether to show header row
2905 ee3aedff Michael Hanselmann

2906 ee3aedff Michael Hanselmann
  """
2907 ee3aedff Michael Hanselmann
  if cl is None:
2908 ee3aedff Michael Hanselmann
    cl = GetClient()
2909 ee3aedff Michael Hanselmann
2910 ee3aedff Michael Hanselmann
  if not fields:
2911 ee3aedff Michael Hanselmann
    fields = None
2912 ee3aedff Michael Hanselmann
2913 ee3aedff Michael Hanselmann
  response = cl.QueryFields(resource, fields)
2914 ee3aedff Michael Hanselmann
2915 ee3aedff Michael Hanselmann
  found_unknown = _WarnUnknownFields(response.fields)
2916 ee3aedff Michael Hanselmann
2917 ee3aedff Michael Hanselmann
  columns = [
2918 ee3aedff Michael Hanselmann
    TableColumn("Name", str, False),
2919 ee3aedff Michael Hanselmann
    TableColumn("Title", str, False),
2920 ea1440c1 Michael Hanselmann
    TableColumn("Description", str, False),
2921 ee3aedff Michael Hanselmann
    ]
2922 ee3aedff Michael Hanselmann
2923 ea1440c1 Michael Hanselmann
  rows = [[fdef.name, fdef.title, fdef.doc] for fdef in response.fields]
2924 ee3aedff Michael Hanselmann
2925 ee3aedff Michael Hanselmann
  for line in FormatTable(rows, columns, header, separator):
2926 ee3aedff Michael Hanselmann
    ToStdout(line)
2927 ee3aedff Michael Hanselmann
2928 ee3aedff Michael Hanselmann
  if found_unknown:
2929 ee3aedff Michael Hanselmann
    return constants.EXIT_UNKNOWN_FIELD
2930 ee3aedff Michael Hanselmann
2931 ee3aedff Michael Hanselmann
  return constants.EXIT_SUCCESS
2932 ee3aedff Michael Hanselmann
2933 ee3aedff Michael Hanselmann
2934 ee3aedff Michael Hanselmann
class TableColumn:
2935 ee3aedff Michael Hanselmann
  """Describes a column for L{FormatTable}.
2936 ee3aedff Michael Hanselmann

2937 ee3aedff Michael Hanselmann
  """
2938 ee3aedff Michael Hanselmann
  def __init__(self, title, fn, align_right):
2939 ee3aedff Michael Hanselmann
    """Initializes this class.
2940 ee3aedff Michael Hanselmann

2941 ee3aedff Michael Hanselmann
    @type title: string
2942 ee3aedff Michael Hanselmann
    @param title: Column title
2943 ee3aedff Michael Hanselmann
    @type fn: callable
2944 ee3aedff Michael Hanselmann
    @param fn: Formatting function
2945 ee3aedff Michael Hanselmann
    @type align_right: bool
2946 ee3aedff Michael Hanselmann
    @param align_right: Whether to align values on the right-hand side
2947 ee3aedff Michael Hanselmann

2948 ee3aedff Michael Hanselmann
    """
2949 ee3aedff Michael Hanselmann
    self.title = title
2950 ee3aedff Michael Hanselmann
    self.format = fn
2951 ee3aedff Michael Hanselmann
    self.align_right = align_right
2952 ee3aedff Michael Hanselmann
2953 ee3aedff Michael Hanselmann
2954 ee3aedff Michael Hanselmann
def _GetColFormatString(width, align_right):
2955 ee3aedff Michael Hanselmann
  """Returns the format string for a field.
2956 ee3aedff Michael Hanselmann

2957 ee3aedff Michael Hanselmann
  """
2958 ee3aedff Michael Hanselmann
  if align_right:
2959 ee3aedff Michael Hanselmann
    sign = ""
2960 ee3aedff Michael Hanselmann
  else:
2961 ee3aedff Michael Hanselmann
    sign = "-"
2962 ee3aedff Michael Hanselmann
2963 ee3aedff Michael Hanselmann
  return "%%%s%ss" % (sign, width)
2964 ee3aedff Michael Hanselmann
2965 ee3aedff Michael Hanselmann
2966 ee3aedff Michael Hanselmann
def FormatTable(rows, columns, header, separator):
2967 ee3aedff Michael Hanselmann
  """Formats data as a table.
2968 ee3aedff Michael Hanselmann

2969 ee3aedff Michael Hanselmann
  @type rows: list of lists
2970 ee3aedff Michael Hanselmann
  @param rows: Row data, one list per row
2971 ee3aedff Michael Hanselmann
  @type columns: list of L{TableColumn}
2972 ee3aedff Michael Hanselmann
  @param columns: Column descriptions
2973 ee3aedff Michael Hanselmann
  @type header: bool
2974 ee3aedff Michael Hanselmann
  @param header: Whether to show header row
2975 ee3aedff Michael Hanselmann
  @type separator: string or None
2976 ee3aedff Michael Hanselmann
  @param separator: String used to separate columns
2977 ee3aedff Michael Hanselmann

2978 ee3aedff Michael Hanselmann
  """
2979 ee3aedff Michael Hanselmann
  if header:
2980 ee3aedff Michael Hanselmann
    data = [[col.title for col in columns]]
2981 ee3aedff Michael Hanselmann
    colwidth = [len(col.title) for col in columns]
2982 ee3aedff Michael Hanselmann
  else:
2983 ee3aedff Michael Hanselmann
    data = []
2984 ee3aedff Michael Hanselmann
    colwidth = [0 for _ in columns]
2985 ee3aedff Michael Hanselmann
2986 ee3aedff Michael Hanselmann
  # Format row data
2987 ee3aedff Michael Hanselmann
  for row in rows:
2988 ee3aedff Michael Hanselmann
    assert len(row) == len(columns)
2989 ee3aedff Michael Hanselmann
2990 ee3aedff Michael Hanselmann
    formatted = [col.format(value) for value, col in zip(row, columns)]
2991 ee3aedff Michael Hanselmann
2992 ee3aedff Michael Hanselmann
    if separator is None:
2993 ee3aedff Michael Hanselmann
      # Update column widths
2994 ee3aedff Michael Hanselmann
      for idx, (oldwidth, value) in enumerate(zip(colwidth, formatted)):
2995 ee3aedff Michael Hanselmann
        # Modifying a list's items while iterating is fine
2996 ee3aedff Michael Hanselmann
        colwidth[idx] = max(oldwidth, len(value))
2997 ee3aedff Michael Hanselmann
2998 ee3aedff Michael Hanselmann
    data.append(formatted)
2999 ee3aedff Michael Hanselmann
3000 ee3aedff Michael Hanselmann
  if separator is not None:
3001 ee3aedff Michael Hanselmann
    # Return early if a separator is used
3002 ee3aedff Michael Hanselmann
    return [separator.join(row) for row in data]
3003 ee3aedff Michael Hanselmann
3004 ee3aedff Michael Hanselmann
  if columns and not columns[-1].align_right:
3005 ee3aedff Michael Hanselmann
    # Avoid unnecessary spaces at end of line
3006 ee3aedff Michael Hanselmann
    colwidth[-1] = 0
3007 ee3aedff Michael Hanselmann
3008 ee3aedff Michael Hanselmann
  # Build format string
3009 ee3aedff Michael Hanselmann
  fmt = " ".join([_GetColFormatString(width, col.align_right)
3010 ee3aedff Michael Hanselmann
                  for col, width in zip(columns, colwidth)])
3011 ee3aedff Michael Hanselmann
3012 ee3aedff Michael Hanselmann
  return [fmt % tuple(row) for row in data]
3013 ee3aedff Michael Hanselmann
3014 ee3aedff Michael Hanselmann
3015 3386e7a9 Iustin Pop
def FormatTimestamp(ts):
3016 3386e7a9 Iustin Pop
  """Formats a given timestamp.
3017 3386e7a9 Iustin Pop

3018 3386e7a9 Iustin Pop
  @type ts: timestamp
3019 3386e7a9 Iustin Pop
  @param ts: a timeval-type timestamp, a tuple of seconds and microseconds
3020 3386e7a9 Iustin Pop

3021 3386e7a9 Iustin Pop
  @rtype: string
3022 5fcc718f Iustin Pop
  @return: a string with the formatted timestamp
3023 3386e7a9 Iustin Pop

3024 3386e7a9 Iustin Pop
  """
3025 e687ec01 Michael Hanselmann
  if not isinstance(ts, (tuple, list)) or len(ts) != 2:
3026 d0c8c01d Iustin Pop
    return "?"
3027 26a72a48 Michael Hanselmann
3028 26a72a48 Michael Hanselmann
  (sec, usecs) = ts
3029 26a72a48 Michael Hanselmann
  return utils.FormatTime(sec, usecs=usecs)
3030 2241e2b9 Iustin Pop
3031 2241e2b9 Iustin Pop
3032 2241e2b9 Iustin Pop
def ParseTimespec(value):
3033 2241e2b9 Iustin Pop
  """Parse a time specification.
3034 2241e2b9 Iustin Pop

3035 2241e2b9 Iustin Pop
  The following suffixed will be recognized:
3036 2241e2b9 Iustin Pop

3037 2241e2b9 Iustin Pop
    - s: seconds
3038 2241e2b9 Iustin Pop
    - m: minutes
3039 2241e2b9 Iustin Pop
    - h: hours
3040 2241e2b9 Iustin Pop
    - d: day
3041 2241e2b9 Iustin Pop
    - w: weeks
3042 2241e2b9 Iustin Pop

3043 2241e2b9 Iustin Pop
  Without any suffix, the value will be taken to be in seconds.
3044 2241e2b9 Iustin Pop

3045 2241e2b9 Iustin Pop
  """
3046 2241e2b9 Iustin Pop
  value = str(value)
3047 2241e2b9 Iustin Pop
  if not value:
3048 2241e2b9 Iustin Pop
    raise errors.OpPrereqError("Empty time specification passed")
3049 2241e2b9 Iustin Pop
  suffix_map = {
3050 d0c8c01d Iustin Pop
    "s": 1,
3051 d0c8c01d Iustin Pop
    "m": 60,
3052 d0c8c01d Iustin Pop
    "h": 3600,
3053 d0c8c01d Iustin Pop
    "d": 86400,
3054 d0c8c01d Iustin Pop
    "w": 604800,
3055 2241e2b9 Iustin Pop
    }
3056 2241e2b9 Iustin Pop
  if value[-1] not in suffix_map:
3057 2241e2b9 Iustin Pop
    try:
3058 2241e2b9 Iustin Pop
      value = int(value)
3059 691744c4 Iustin Pop
    except (TypeError, ValueError):
3060 2241e2b9 Iustin Pop
      raise errors.OpPrereqError("Invalid time specification '%s'" % value)
3061 2241e2b9 Iustin Pop
  else:
3062 2241e2b9 Iustin Pop
    multiplier = suffix_map[value[-1]]
3063 2241e2b9 Iustin Pop
    value = value[:-1]
3064 2241e2b9 Iustin Pop
    if not value: # no data left after stripping the suffix
3065 2241e2b9 Iustin Pop
      raise errors.OpPrereqError("Invalid time specification (only"
3066 2241e2b9 Iustin Pop
                                 " suffix passed)")
3067 2241e2b9 Iustin Pop
    try:
3068 2241e2b9 Iustin Pop
      value = int(value) * multiplier
3069 691744c4 Iustin Pop
    except (TypeError, ValueError):
3070 2241e2b9 Iustin Pop
      raise errors.OpPrereqError("Invalid time specification '%s'" % value)
3071 2241e2b9 Iustin Pop
  return value
3072 46fbdd04 Iustin Pop
3073 46fbdd04 Iustin Pop
3074 e9e26bb3 Iustin Pop
def GetOnlineNodes(nodes, cl=None, nowarn=False, secondary_ips=False,
3075 05484a24 Michael Hanselmann
                   filter_master=False, nodegroup=None):
3076 4040a784 Iustin Pop
  """Returns the names of online nodes.
3077 4040a784 Iustin Pop

3078 4040a784 Iustin Pop
  This function will also log a warning on stderr with the names of
3079 4040a784 Iustin Pop
  the online nodes.
3080 4040a784 Iustin Pop

3081 4040a784 Iustin Pop
  @param nodes: if not empty, use only this subset of nodes (minus the
3082 4040a784 Iustin Pop
      offline ones)
3083 4040a784 Iustin Pop
  @param cl: if not None, luxi client to use
3084 4040a784 Iustin Pop
  @type nowarn: boolean
3085 4040a784 Iustin Pop
  @param nowarn: by default, this function will output a note with the
3086 4040a784 Iustin Pop
      offline nodes that are skipped; if this parameter is True the
3087 4040a784 Iustin Pop
      note is not displayed
3088 e9e26bb3 Iustin Pop
  @type secondary_ips: boolean
3089 e9e26bb3 Iustin Pop
  @param secondary_ips: if True, return the secondary IPs instead of the
3090 e9e26bb3 Iustin Pop
      names, useful for doing network traffic over the replication interface
3091 e9e26bb3 Iustin Pop
      (if any)
3092 e9e26bb3 Iustin Pop
  @type filter_master: boolean
3093 e9e26bb3 Iustin Pop
  @param filter_master: if True, do not return the master node in the list
3094 e9e26bb3 Iustin Pop
      (useful in coordination with secondary_ips where we cannot check our
3095 e9e26bb3 Iustin Pop
      node name against the list)
3096 05484a24 Michael Hanselmann
  @type nodegroup: string
3097 05484a24 Michael Hanselmann
  @param nodegroup: If set, only return nodes in this node group
3098 4040a784 Iustin Pop

3099 4040a784 Iustin Pop
  """
3100 4040a784 Iustin Pop
  if cl is None:
3101 4040a784 Iustin Pop
    cl = GetClient()
3102 4040a784 Iustin Pop
3103 2e5c33db Iustin Pop
  qfilter = []
3104 05484a24 Michael Hanselmann
3105 05484a24 Michael Hanselmann
  if nodes:
3106 2e5c33db Iustin Pop
    qfilter.append(qlang.MakeSimpleFilter("name", nodes))
3107 05484a24 Michael Hanselmann
3108 05484a24 Michael Hanselmann
  if nodegroup is not None:
3109 2e5c33db Iustin Pop
    qfilter.append([qlang.OP_OR, [qlang.OP_EQUAL, "group", nodegroup],
3110 05484a24 Michael Hanselmann
                                 [qlang.OP_EQUAL, "group.uuid", nodegroup]])
3111 e9e26bb3 Iustin Pop
3112 e9e26bb3 Iustin Pop
  if filter_master:
3113 2e5c33db Iustin Pop
    qfilter.append([qlang.OP_NOT, [qlang.OP_TRUE, "master"]])
3114 05484a24 Michael Hanselmann
3115 2e5c33db Iustin Pop
  if qfilter:
3116 2e5c33db Iustin Pop
    if len(qfilter) > 1:
3117 2e5c33db Iustin Pop
      final_filter = [qlang.OP_AND] + qfilter
3118 05484a24 Michael Hanselmann
    else:
3119 2e5c33db Iustin Pop
      assert len(qfilter) == 1
3120 2e5c33db Iustin Pop
      final_filter = qfilter[0]
3121 e9e26bb3 Iustin Pop
  else:
3122 05484a24 Michael Hanselmann
    final_filter = None
3123 05484a24 Michael Hanselmann
3124 05484a24 Michael Hanselmann
  result = cl.Query(constants.QR_NODE, ["name", "offline", "sip"], final_filter)
3125 05484a24 Michael Hanselmann
3126 05484a24 Michael Hanselmann
  def _IsOffline(row):
3127 05484a24 Michael Hanselmann
    (_, (_, offline), _) = row
3128 05484a24 Michael Hanselmann
    return offline
3129 05484a24 Michael Hanselmann
3130 05484a24 Michael Hanselmann
  def _GetName(row):
3131 05484a24 Michael Hanselmann
    ((_, name), _, _) = row
3132 05484a24 Michael Hanselmann
    return name
3133 05484a24 Michael Hanselmann
3134 05484a24 Michael Hanselmann
  def _GetSip(row):
3135 05484a24 Michael Hanselmann
    (_, _, (_, sip)) = row
3136 05484a24 Michael Hanselmann
    return sip
3137 05484a24 Michael Hanselmann
3138 05484a24 Michael Hanselmann
  (offline, online) = compat.partition(result.data, _IsOffline)
3139 e9e26bb3 Iustin Pop
3140 4040a784 Iustin Pop
  if offline and not nowarn:
3141 05484a24 Michael Hanselmann
    ToStderr("Note: skipping offline node(s): %s" %
3142 05484a24 Michael Hanselmann
             utils.CommaJoin(map(_GetName, offline)))
3143 05484a24 Michael Hanselmann
3144 05484a24 Michael Hanselmann
  if secondary_ips:
3145 05484a24 Michael Hanselmann
    fn = _GetSip
3146 05484a24 Michael Hanselmann
  else:
3147 05484a24 Michael Hanselmann
    fn = _GetName
3148 05484a24 Michael Hanselmann
3149 05484a24 Michael Hanselmann
  return map(fn, online)
3150 4040a784 Iustin Pop
3151 4040a784 Iustin Pop
3152 46fbdd04 Iustin Pop
def _ToStream(stream, txt, *args):
3153 46fbdd04 Iustin Pop
  """Write a message to a stream, bypassing the logging system
3154 46fbdd04 Iustin Pop

3155 46fbdd04 Iustin Pop
  @type stream: file object
3156 46fbdd04 Iustin Pop
  @param stream: the file to which we should write
3157 46fbdd04 Iustin Pop
  @type txt: str
3158 46fbdd04 Iustin Pop
  @param txt: the message
3159 46fbdd04 Iustin Pop

3160 46fbdd04 Iustin Pop
  """
3161 225e2544 Iustin Pop
  try:
3162 225e2544 Iustin Pop
    if args:
3163 225e2544 Iustin Pop
      args = tuple(args)
3164 225e2544 Iustin Pop
      stream.write(txt % args)
3165 225e2544 Iustin Pop
    else:
3166 225e2544 Iustin Pop
      stream.write(txt)
3167 d0c8c01d Iustin Pop
    stream.write("\n")
3168 225e2544 Iustin Pop
    stream.flush()
3169 225e2544 Iustin Pop
  except IOError, err:
3170 225e2544 Iustin Pop
    if err.errno == errno.EPIPE:
3171 225e2544 Iustin Pop
      # our terminal went away, we'll exit
3172 225e2544 Iustin Pop
      sys.exit(constants.EXIT_FAILURE)
3173 225e2544 Iustin Pop
    else:
3174 225e2544 Iustin Pop
      raise
3175 46fbdd04 Iustin Pop
3176 46fbdd04 Iustin Pop
3177 46fbdd04 Iustin Pop
def ToStdout(txt, *args):
3178 46fbdd04 Iustin Pop
  """Write a message to stdout only, bypassing the logging system
3179 46fbdd04 Iustin Pop

3180 46fbdd04 Iustin Pop
  This is just a wrapper over _ToStream.
3181 46fbdd04 Iustin Pop

3182 46fbdd04 Iustin Pop
  @type txt: str
3183 46fbdd04 Iustin Pop
  @param txt: the message
3184 46fbdd04 Iustin Pop

3185 46fbdd04 Iustin Pop
  """
3186 46fbdd04 Iustin Pop
  _ToStream(sys.stdout, txt, *args)
3187 46fbdd04 Iustin Pop
3188 46fbdd04 Iustin Pop
3189 46fbdd04 Iustin Pop
def ToStderr(txt, *args):
3190 46fbdd04 Iustin Pop
  """Write a message to stderr only, bypassing the logging system
3191 46fbdd04 Iustin Pop

3192 46fbdd04 Iustin Pop
  This is just a wrapper over _ToStream.
3193 46fbdd04 Iustin Pop

3194 46fbdd04 Iustin Pop
  @type txt: str
3195 46fbdd04 Iustin Pop
  @param txt: the message
3196 46fbdd04 Iustin Pop

3197 46fbdd04 Iustin Pop
  """
3198 46fbdd04 Iustin Pop
  _ToStream(sys.stderr, txt, *args)
3199 479636a3 Iustin Pop
3200 479636a3 Iustin Pop
3201 479636a3 Iustin Pop
class JobExecutor(object):
3202 479636a3 Iustin Pop
  """Class which manages the submission and execution of multiple jobs.
3203 479636a3 Iustin Pop

3204 479636a3 Iustin Pop
  Note that instances of this class should not be reused between
3205 479636a3 Iustin Pop
  GetResults() calls.
3206 479636a3 Iustin Pop

3207 479636a3 Iustin Pop
  """
3208 919ca415 Iustin Pop
  def __init__(self, cl=None, verbose=True, opts=None, feedback_fn=None):
3209 479636a3 Iustin Pop
    self.queue = []
3210 479636a3 Iustin Pop
    if cl is None:
3211 479636a3 Iustin Pop
      cl = GetClient()
3212 479636a3 Iustin Pop
    self.cl = cl
3213 479636a3 Iustin Pop
    self.verbose = verbose
3214 23b4b983 Iustin Pop
    self.jobs = []
3215 cff5fa7f Iustin Pop
    self.opts = opts
3216 919ca415 Iustin Pop
    self.feedback_fn = feedback_fn
3217 60452edf Michael Hanselmann
    self._counter = itertools.count()
3218 479636a3 Iustin Pop
3219 8d99a8bf Michael Hanselmann
  @staticmethod
3220 8d99a8bf Michael Hanselmann
  def _IfName(name, fmt):
3221 8d99a8bf Michael Hanselmann
    """Helper function for formatting name.
3222 8d99a8bf Michael Hanselmann

3223 8d99a8bf Michael Hanselmann
    """
3224 8d99a8bf Michael Hanselmann
    if name:
3225 8d99a8bf Michael Hanselmann
      return fmt % name
3226 8d99a8bf Michael Hanselmann
3227 8d99a8bf Michael Hanselmann
    return ""
3228 8d99a8bf Michael Hanselmann
3229 479636a3 Iustin Pop
  def QueueJob(self, name, *ops):
3230 23b4b983 Iustin Pop
    """Record a job for later submit.
3231 479636a3 Iustin Pop

3232 479636a3 Iustin Pop
    @type name: string
3233 479636a3 Iustin Pop
    @param name: a description of the job, will be used in WaitJobSet
3234 8d99a8bf Michael Hanselmann

3235 479636a3 Iustin Pop
    """
3236 cff5fa7f Iustin Pop
    SetGenericOpcodeOpts(ops, self.opts)
3237 60452edf Michael Hanselmann
    self.queue.append((self._counter.next(), name, ops))
3238 23b4b983 Iustin Pop
3239 8d99a8bf Michael Hanselmann
  def AddJobId(self, name, status, job_id):
3240 8d99a8bf Michael Hanselmann
    """Adds a job ID to the internal queue.
3241 8d99a8bf Michael Hanselmann

3242 8d99a8bf Michael Hanselmann
    """
3243 8d99a8bf Michael Hanselmann
    self.jobs.append((self._counter.next(), status, job_id, name))
3244 8d99a8bf Michael Hanselmann
3245 66ecc479 Guido Trotter
  def SubmitPending(self, each=False):
3246 23b4b983 Iustin Pop
    """Submit all pending jobs.
3247 23b4b983 Iustin Pop

3248 23b4b983 Iustin Pop
    """
3249 66ecc479 Guido Trotter
    if each:
3250 66ecc479 Guido Trotter
      results = []
3251 60452edf Michael Hanselmann
      for (_, _, ops) in self.queue:
3252 66ecc479 Guido Trotter
        # SubmitJob will remove the success status, but raise an exception if
3253 66ecc479 Guido Trotter
        # the submission fails, so we'll notice that anyway.
3254 519fafa1 Andrea Spadaccini
        results.append([True, self.cl.SubmitJob(ops)[0]])
3255 66ecc479 Guido Trotter
    else:
3256 60452edf Michael Hanselmann
      results = self.cl.SubmitManyJobs([ops for (_, _, ops) in self.queue])
3257 60452edf Michael Hanselmann
    for ((status, data), (idx, name, _)) in zip(results, self.queue):
3258 5299e61f Iustin Pop
      self.jobs.append((idx, status, data, name))
3259 5299e61f Iustin Pop
3260 5299e61f Iustin Pop
  def _ChooseJob(self):
3261 5299e61f Iustin Pop
    """Choose a non-waiting/queued job to poll next.
3262 5299e61f Iustin Pop

3263 5299e61f Iustin Pop
    """
3264 5299e61f Iustin Pop
    assert self.jobs, "_ChooseJob called with empty job list"
3265 5299e61f Iustin Pop
3266 11705e3d Iustin Pop
    result = self.cl.QueryJobs([i[2] for i in self.jobs[:_CHOOSE_BATCH]],
3267 11705e3d Iustin Pop
                               ["status"])
3268 5299e61f Iustin Pop
    assert result
3269 5299e61f Iustin Pop
3270 5299e61f Iustin Pop
    for job_data, status in zip(self.jobs, result):
3271 91c622a8 Iustin Pop
      if (isinstance(status, list) and status and
3272 91c622a8 Iustin Pop
          status[0] in (constants.JOB_STATUS_QUEUED,
3273 47099cd1 Michael Hanselmann
                        constants.JOB_STATUS_WAITING,
3274 91c622a8 Iustin Pop
                        constants.JOB_STATUS_CANCELING)):
3275 91c622a8 Iustin Pop
        # job is still present and waiting
3276 5299e61f Iustin Pop
        continue
3277 91c622a8 Iustin Pop
      # good candidate found (either running job or lost job)
3278 5299e61f Iustin Pop
      self.jobs.remove(job_data)
3279 5299e61f Iustin Pop
      return job_data
3280 5299e61f Iustin Pop
3281 5299e61f Iustin Pop
    # no job found
3282 5299e61f Iustin Pop
    return self.jobs.pop(0)
3283 479636a3 Iustin Pop
3284 479636a3 Iustin Pop
  def GetResults(self):
3285 479636a3 Iustin Pop
    """Wait for and return the results of all jobs.
3286 479636a3 Iustin Pop

3287 479636a3 Iustin Pop
    @rtype: list
3288 479636a3 Iustin Pop
    @return: list of tuples (success, job results), in the same order
3289 479636a3 Iustin Pop
        as the submitted jobs; if a job has failed, instead of the result
3290 479636a3 Iustin Pop
        there will be the error message
3291 479636a3 Iustin Pop

3292 479636a3 Iustin Pop
    """
3293 23b4b983 Iustin Pop
    if not self.jobs:
3294 23b4b983 Iustin Pop
      self.SubmitPending()
3295 479636a3 Iustin Pop
    results = []
3296 479636a3 Iustin Pop
    if self.verbose:
3297 5299e61f Iustin Pop
      ok_jobs = [row[2] for row in self.jobs if row[1]]
3298 23b4b983 Iustin Pop
      if ok_jobs:
3299 4474f112 Iustin Pop
        ToStdout("Submitted jobs %s", utils.CommaJoin(ok_jobs))
3300 5299e61f Iustin Pop
3301 5299e61f Iustin Pop
    # first, remove any non-submitted jobs
3302 cea881e5 Michael Hanselmann
    self.jobs, failures = compat.partition(self.jobs, lambda x: x[1])
3303 5299e61f Iustin Pop
    for idx, _, jid, name in failures:
3304 4474f112 Iustin Pop
      ToStderr("Failed to submit job%s: %s", self._IfName(name, " for %s"), jid)
3305 c63355f2 Iustin Pop
      results.append((idx, False, jid))
3306 5299e61f Iustin Pop
3307 5299e61f Iustin Pop
    while self.jobs:
3308 5299e61f Iustin Pop
      (idx, _, jid, name) = self._ChooseJob()
3309 4474f112 Iustin Pop
      ToStdout("Waiting for job %s%s ...", jid, self._IfName(name, " for %s"))
3310 479636a3 Iustin Pop
      try:
3311 919ca415 Iustin Pop
        job_result = PollJob(jid, cl=self.cl, feedback_fn=self.feedback_fn)
3312 479636a3 Iustin Pop
        success = True
3313 91c622a8 Iustin Pop
      except errors.JobLost, err:
3314 91c622a8 Iustin Pop
        _, job_result = FormatError(err)
3315 4474f112 Iustin Pop
        ToStderr("Job %s%s has been archived, cannot check its result",
3316 4474f112 Iustin Pop
                 jid, self._IfName(name, " for %s"))
3317 91c622a8 Iustin Pop
        success = False
3318 479636a3 Iustin Pop
      except (errors.GenericError, luxi.ProtocolError), err:
3319 479636a3 Iustin Pop
        _, job_result = FormatError(err)
3320 479636a3 Iustin Pop
        success = False
3321 479636a3 Iustin Pop
        # the error message will always be shown, verbose or not
3322 4474f112 Iustin Pop
        ToStderr("Job %s%s has failed: %s",
3323 4474f112 Iustin Pop
                 jid, self._IfName(name, " for %s"), job_result)
3324 479636a3 Iustin Pop
3325 5299e61f Iustin Pop
      results.append((idx, success, job_result))
3326 5299e61f Iustin Pop
3327 5299e61f Iustin Pop
    # sort based on the index, then drop it
3328 5299e61f Iustin Pop
    results.sort()
3329 5299e61f Iustin Pop
    results = [i[1:] for i in results]
3330 5299e61f Iustin Pop
3331 479636a3 Iustin Pop
    return results
3332 479636a3 Iustin Pop
3333 479636a3 Iustin Pop
  def WaitOrShow(self, wait):
3334 479636a3 Iustin Pop
    """Wait for job results or only print the job IDs.
3335 479636a3 Iustin Pop

3336 479636a3 Iustin Pop
    @type wait: boolean
3337 479636a3 Iustin Pop
    @param wait: whether to wait or not
3338 479636a3 Iustin Pop

3339 479636a3 Iustin Pop
    """
3340 479636a3 Iustin Pop
    if wait:
3341 479636a3 Iustin Pop
      return self.GetResults()
3342 479636a3 Iustin Pop
    else:
3343 23b4b983 Iustin Pop
      if not self.jobs:
3344 23b4b983 Iustin Pop
        self.SubmitPending()
3345 71834b2a Guido Trotter
      for _, status, result, name in self.jobs:
3346 23b4b983 Iustin Pop
        if status:
3347 4474f112 Iustin Pop
          ToStdout("%s: %s", result, name)
3348 23b4b983 Iustin Pop
        else:
3349 4474f112 Iustin Pop
          ToStderr("Failure for %s: %s", name, result)
3350 53a8a54d Iustin Pop
      return [row[1:3] for row in self.jobs]
3351 acd19189 René Nussbaumer
3352 acd19189 René Nussbaumer
3353 acd19189 René Nussbaumer
def FormatParameterDict(buf, param_dict, actual, level=1):
3354 acd19189 René Nussbaumer
  """Formats a parameter dictionary.
3355 acd19189 René Nussbaumer

3356 acd19189 René Nussbaumer
  @type buf: L{StringIO}
3357 acd19189 René Nussbaumer
  @param buf: the buffer into which to write
3358 acd19189 René Nussbaumer
  @type param_dict: dict
3359 acd19189 René Nussbaumer
  @param param_dict: the own parameters
3360 acd19189 René Nussbaumer
  @type actual: dict
3361 acd19189 René Nussbaumer
  @param actual: the current parameter set (including defaults)
3362 acd19189 René Nussbaumer
  @param level: Level of indent
3363 acd19189 René Nussbaumer

3364 acd19189 René Nussbaumer
  """
3365 acd19189 René Nussbaumer
  indent = "  " * level
3366 64da5a53 René Nussbaumer
3367 acd19189 René Nussbaumer
  for key in sorted(actual):
3368 64da5a53 René Nussbaumer
    data = actual[key]
3369 64da5a53 René Nussbaumer
    buf.write("%s- %s:" % (indent, key))
3370 64da5a53 René Nussbaumer
3371 64da5a53 René Nussbaumer
    if isinstance(data, dict) and data:
3372 64da5a53 René Nussbaumer
      buf.write("\n")
3373 64da5a53 René Nussbaumer
      FormatParameterDict(buf, param_dict.get(key, {}), data,
3374 64da5a53 René Nussbaumer
                          level=level + 1)
3375 64da5a53 René Nussbaumer
    else:
3376 64da5a53 René Nussbaumer
      val = param_dict.get(key, "default (%s)" % data)
3377 64da5a53 René Nussbaumer
      buf.write(" %s\n" % val)
3378 25bd815c René Nussbaumer
3379 25bd815c René Nussbaumer
3380 25bd815c René Nussbaumer
def ConfirmOperation(names, list_type, text, extra=""):
3381 25bd815c René Nussbaumer
  """Ask the user to confirm an operation on a list of list_type.
3382 25bd815c René Nussbaumer

3383 25bd815c René Nussbaumer
  This function is used to request confirmation for doing an operation
3384 25bd815c René Nussbaumer
  on a given list of list_type.
3385 25bd815c René Nussbaumer

3386 25bd815c René Nussbaumer
  @type names: list
3387 25bd815c René Nussbaumer
  @param names: the list of names that we display when
3388 25bd815c René Nussbaumer
      we ask for confirmation
3389 25bd815c René Nussbaumer
  @type list_type: str
3390 25bd815c René Nussbaumer
  @param list_type: Human readable name for elements in the list (e.g. nodes)
3391 25bd815c René Nussbaumer
  @type text: str
3392 25bd815c René Nussbaumer
  @param text: the operation that the user should confirm
3393 25bd815c René Nussbaumer
  @rtype: boolean
3394 25bd815c René Nussbaumer
  @return: True or False depending on user's confirmation.
3395 25bd815c René Nussbaumer

3396 25bd815c René Nussbaumer
  """
3397 25bd815c René Nussbaumer
  count = len(names)
3398 25bd815c René Nussbaumer
  msg = ("The %s will operate on %d %s.\n%s"
3399 25bd815c René Nussbaumer
         "Do you want to continue?" % (text, count, list_type, extra))
3400 25bd815c René Nussbaumer
  affected = (("\nAffected %s:\n" % list_type) +
3401 25bd815c René Nussbaumer
              "\n".join(["  %s" % name for name in names]))
3402 25bd815c René Nussbaumer
3403 25bd815c René Nussbaumer
  choices = [("y", True, "Yes, execute the %s" % text),
3404 25bd815c René Nussbaumer
             ("n", False, "No, abort the %s" % text)]
3405 25bd815c René Nussbaumer
3406 25bd815c René Nussbaumer
  if count > 20:
3407 25bd815c René Nussbaumer
    choices.insert(1, ("v", "v", "View the list of affected %s" % list_type))
3408 25bd815c René Nussbaumer
    question = msg
3409 25bd815c René Nussbaumer
  else:
3410 25bd815c René Nussbaumer
    question = msg + affected
3411 25bd815c René Nussbaumer
3412 25bd815c René Nussbaumer
  choice = AskUser(question, choices)
3413 25bd815c René Nussbaumer
  if choice == "v":
3414 25bd815c René Nussbaumer
    choices.pop(1)
3415 25bd815c René Nussbaumer
    choice = AskUser(msg + affected, choices)
3416 25bd815c René Nussbaumer
  return choice
3417 703fa9ab Iustin Pop
3418 703fa9ab Iustin Pop
3419 703fa9ab Iustin Pop
def CreateIPolicyFromOpts(ispecs_mem_size=None,
3420 703fa9ab Iustin Pop
                          ispecs_cpu_count=None,
3421 703fa9ab Iustin Pop
                          ispecs_disk_count=None,
3422 703fa9ab Iustin Pop
                          ispecs_disk_size=None,
3423 703fa9ab Iustin Pop
                          ispecs_nic_count=None,
3424 703fa9ab Iustin Pop
                          ipolicy_disk_templates=None,
3425 703fa9ab Iustin Pop
                          ipolicy_vcpu_ratio=None,
3426 703fa9ab Iustin Pop
                          group_ipolicy=False,
3427 703fa9ab Iustin Pop
                          allowed_values=None,
3428 703fa9ab Iustin Pop
                          fill_all=False):
3429 703fa9ab Iustin Pop
  """Creation of instance policy based on command line options.
3430 703fa9ab Iustin Pop

3431 703fa9ab Iustin Pop
  @param fill_all: whether for cluster policies we should ensure that
3432 703fa9ab Iustin Pop
    all values are filled
3433 703fa9ab Iustin Pop

3434 703fa9ab Iustin Pop

3435 703fa9ab Iustin Pop
  """
3436 d67e0a94 Iustin Pop
  try:
3437 d67e0a94 Iustin Pop
    if ispecs_mem_size:
3438 d67e0a94 Iustin Pop
      for k in ispecs_mem_size:
3439 d67e0a94 Iustin Pop
        ispecs_mem_size[k] = utils.ParseUnit(ispecs_mem_size[k])
3440 d67e0a94 Iustin Pop
    if ispecs_disk_size:
3441 d67e0a94 Iustin Pop
      for k in ispecs_disk_size:
3442 d67e0a94 Iustin Pop
        ispecs_disk_size[k] = utils.ParseUnit(ispecs_disk_size[k])
3443 d67e0a94 Iustin Pop
  except (TypeError, ValueError, errors.UnitParseError), err:
3444 d67e0a94 Iustin Pop
    raise errors.OpPrereqError("Invalid disk (%s) or memory (%s) size"
3445 d67e0a94 Iustin Pop
                               " in policy: %s" %
3446 d67e0a94 Iustin Pop
                               (ispecs_disk_size, ispecs_mem_size, err),
3447 d67e0a94 Iustin Pop
                               errors.ECODE_INVAL)
3448 d67e0a94 Iustin Pop
3449 703fa9ab Iustin Pop
  # prepare ipolicy dict
3450 703fa9ab Iustin Pop
  ipolicy_transposed = {
3451 703fa9ab Iustin Pop
    constants.ISPEC_MEM_SIZE: ispecs_mem_size,
3452 703fa9ab Iustin Pop
    constants.ISPEC_CPU_COUNT: ispecs_cpu_count,
3453 703fa9ab Iustin Pop
    constants.ISPEC_DISK_COUNT: ispecs_disk_count,
3454 703fa9ab Iustin Pop
    constants.ISPEC_DISK_SIZE: ispecs_disk_size,
3455 703fa9ab Iustin Pop
    constants.ISPEC_NIC_COUNT: ispecs_nic_count,
3456 703fa9ab Iustin Pop
    }
3457 703fa9ab Iustin Pop
3458 703fa9ab Iustin Pop
  # first, check that the values given are correct
3459 703fa9ab Iustin Pop
  if group_ipolicy:
3460 703fa9ab Iustin Pop
    forced_type = TISPECS_GROUP_TYPES
3461 703fa9ab Iustin Pop
  else:
3462 703fa9ab Iustin Pop
    forced_type = TISPECS_CLUSTER_TYPES
3463 703fa9ab Iustin Pop
3464 703fa9ab Iustin Pop
  for specs in ipolicy_transposed.values():
3465 703fa9ab Iustin Pop
    utils.ForceDictType(specs, forced_type, allowed_values=allowed_values)
3466 703fa9ab Iustin Pop
3467 703fa9ab Iustin Pop
  # then transpose
3468 703fa9ab Iustin Pop
  ipolicy_out = objects.MakeEmptyIPolicy()
3469 703fa9ab Iustin Pop
  for name, specs in ipolicy_transposed.iteritems():
3470 703fa9ab Iustin Pop
    assert name in constants.ISPECS_PARAMETERS
3471 703fa9ab Iustin Pop
    for key, val in specs.items(): # {min: .. ,max: .., std: ..}
3472 703fa9ab Iustin Pop
      ipolicy_out[key][name] = val
3473 703fa9ab Iustin Pop
3474 703fa9ab Iustin Pop
  # no filldict for non-dicts
3475 703fa9ab Iustin Pop
  if not group_ipolicy and fill_all:
3476 703fa9ab Iustin Pop
    if ipolicy_disk_templates is None:
3477 703fa9ab Iustin Pop
      ipolicy_disk_templates = constants.DISK_TEMPLATES
3478 703fa9ab Iustin Pop
    if ipolicy_vcpu_ratio is None:
3479 703fa9ab Iustin Pop
      ipolicy_vcpu_ratio = \
3480 703fa9ab Iustin Pop
        constants.IPOLICY_DEFAULTS[constants.IPOLICY_VCPU_RATIO]
3481 703fa9ab Iustin Pop
  if ipolicy_disk_templates is not None:
3482 703fa9ab Iustin Pop
    ipolicy_out[constants.IPOLICY_DTS] = list(ipolicy_disk_templates)
3483 703fa9ab Iustin Pop
  if ipolicy_vcpu_ratio is not None:
3484 703fa9ab Iustin Pop
    ipolicy_out[constants.IPOLICY_VCPU_RATIO] = ipolicy_vcpu_ratio
3485 703fa9ab Iustin Pop
3486 703fa9ab Iustin Pop
  assert not (frozenset(ipolicy_out.keys()) - constants.IPOLICY_ALL_KEYS)
3487 703fa9ab Iustin Pop
3488 703fa9ab Iustin Pop
  return ipolicy_out