Statistics
| Branch: | Tag: | Revision:

root / lib / opcodes.py @ a188f1ef

History | View | Annotate | Download (20.5 kB)

1
#
2
#
3

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

    
21

    
22
"""OpCodes module
23

24
This module implements the data structures which define the cluster
25
operations - the so-called opcodes.
26

27
Every operation which modifies the cluster state is expressed via
28
opcodes.
29

30
"""
31

    
32
# this are practically structures, so disable the message about too
33
# few public methods:
34
# pylint: disable-msg=R0903
35

    
36

    
37
class BaseOpCode(object):
38
  """A simple serializable object.
39

40
  This object serves as a parent class for OpCode without any custom
41
  field handling.
42

43
  """
44
  __slots__ = []
45

    
46
  def __init__(self, **kwargs):
47
    """Constructor for BaseOpCode.
48

49
    The constructor takes only keyword arguments and will set
50
    attributes on this object based on the passed arguments. As such,
51
    it means that you should not pass arguments which are not in the
52
    __slots__ attribute for this class.
53

54
    """
55
    slots = self._all_slots()
56
    for key in kwargs:
57
      if key not in slots:
58
        raise TypeError("Object %s doesn't support the parameter '%s'" %
59
                        (self.__class__.__name__, key))
60
      setattr(self, key, kwargs[key])
61

    
62
  def __getstate__(self):
63
    """Generic serializer.
64

65
    This method just returns the contents of the instance as a
66
    dictionary.
67

68
    @rtype:  C{dict}
69
    @return: the instance attributes and their values
70

71
    """
72
    state = {}
73
    for name in self._all_slots():
74
      if hasattr(self, name):
75
        state[name] = getattr(self, name)
76
    return state
77

    
78
  def __setstate__(self, state):
79
    """Generic unserializer.
80

81
    This method just restores from the serialized state the attributes
82
    of the current instance.
83

84
    @param state: the serialized opcode data
85
    @type state:  C{dict}
86

87
    """
88
    if not isinstance(state, dict):
89
      raise ValueError("Invalid data to __setstate__: expected dict, got %s" %
90
                       type(state))
91

    
92
    for name in self._all_slots():
93
      if name not in state and hasattr(self, name):
94
        delattr(self, name)
95

    
96
    for name in state:
97
      setattr(self, name, state[name])
98

    
99
  @classmethod
100
  def _all_slots(cls):
101
    """Compute the list of all declared slots for a class.
102

103
    """
104
    slots = []
105
    for parent in cls.__mro__:
106
      slots.extend(getattr(parent, "__slots__", []))
107
    return slots
108

    
109

    
110
class OpCode(BaseOpCode):
111
  """Abstract OpCode.
112

113
  This is the root of the actual OpCode hierarchy. All clases derived
114
  from this class should override OP_ID.
115

116
  @cvar OP_ID: The ID of this opcode. This should be unique amongst all
117
               children of this class.
118
  @ivar dry_run: Whether the LU should be run in dry-run mode, i.e. just
119
                 the check steps
120

121
  """
122
  OP_ID = "OP_ABSTRACT"
123
  __slots__ = ["dry_run", "debug_level"]
124

    
125
  def __getstate__(self):
126
    """Specialized getstate for opcodes.
127

128
    This method adds to the state dictionary the OP_ID of the class,
129
    so that on unload we can identify the correct class for
130
    instantiating the opcode.
131

132
    @rtype:   C{dict}
133
    @return:  the state as a dictionary
134

135
    """
136
    data = BaseOpCode.__getstate__(self)
137
    data["OP_ID"] = self.OP_ID
138
    return data
139

    
140
  @classmethod
141
  def LoadOpCode(cls, data):
142
    """Generic load opcode method.
143

144
    The method identifies the correct opcode class from the dict-form
145
    by looking for a OP_ID key, if this is not found, or its value is
146
    not available in this module as a child of this class, we fail.
147

148
    @type data:  C{dict}
149
    @param data: the serialized opcode
150

151
    """
152
    if not isinstance(data, dict):
153
      raise ValueError("Invalid data to LoadOpCode (%s)" % type(data))
154
    if "OP_ID" not in data:
155
      raise ValueError("Invalid data to LoadOpcode, missing OP_ID")
156
    op_id = data["OP_ID"]
157
    op_class = None
158
    if op_id in OP_MAPPING:
159
      op_class = OP_MAPPING[op_id]
160
    else:
161
      raise ValueError("Invalid data to LoadOpCode: OP_ID %s unsupported" %
162
                       op_id)
163
    op = op_class()
164
    new_data = data.copy()
165
    del new_data["OP_ID"]
166
    op.__setstate__(new_data)
167
    return op
168

    
169
  def Summary(self):
170
    """Generates a summary description of this opcode.
171

172
    """
173
    # all OP_ID start with OP_, we remove that
174
    txt = self.OP_ID[3:]
175
    field_name = getattr(self, "OP_DSC_FIELD", None)
176
    if field_name:
177
      field_value = getattr(self, field_name, None)
178
      txt = "%s(%s)" % (txt, field_value)
179
    return txt
180

    
181

    
182
# cluster opcodes
183

    
184
class OpPostInitCluster(OpCode):
185
  """Post cluster initialization.
186

187
  This opcode does not touch the cluster at all. Its purpose is to run hooks
188
  after the cluster has been initialized.
189

190
  """
191
  OP_ID = "OP_CLUSTER_POST_INIT"
192
  __slots__ = []
193

    
194

    
195
class OpDestroyCluster(OpCode):
196
  """Destroy the cluster.
197

198
  This opcode has no other parameters. All the state is irreversibly
199
  lost after the execution of this opcode.
200

201
  """
202
  OP_ID = "OP_CLUSTER_DESTROY"
203
  __slots__ = []
204

    
205

    
206
class OpQueryClusterInfo(OpCode):
207
  """Query cluster information."""
208
  OP_ID = "OP_CLUSTER_QUERY"
209
  __slots__ = []
210

    
211

    
212
class OpVerifyCluster(OpCode):
213
  """Verify the cluster state.
214

215
  @type skip_checks: C{list}
216
  @ivar skip_checks: steps to be skipped from the verify process; this
217
                     needs to be a subset of
218
                     L{constants.VERIFY_OPTIONAL_CHECKS}; currently
219
                     only L{constants.VERIFY_NPLUSONE_MEM} can be passed
220

221
  """
222
  OP_ID = "OP_CLUSTER_VERIFY"
223
  __slots__ = ["skip_checks", "verbose", "error_codes",
224
               "debug_simulate_errors"]
225

    
226

    
227
class OpVerifyDisks(OpCode):
228
  """Verify the cluster disks.
229

230
  Parameters: none
231

232
  Result: a tuple of four elements:
233
    - list of node names with bad data returned (unreachable, etc.)
234
    - dict of node names with broken volume groups (values: error msg)
235
    - list of instances with degraded disks (that should be activated)
236
    - dict of instances with missing logical volumes (values: (node, vol)
237
      pairs with details about the missing volumes)
238

239
  In normal operation, all lists should be empty. A non-empty instance
240
  list (3rd element of the result) is still ok (errors were fixed) but
241
  non-empty node list means some node is down, and probably there are
242
  unfixable drbd errors.
243

244
  Note that only instances that are drbd-based are taken into
245
  consideration. This might need to be revisited in the future.
246

247
  """
248
  OP_ID = "OP_CLUSTER_VERIFY_DISKS"
249
  __slots__ = []
250

    
251

    
252
class OpRepairDiskSizes(OpCode):
253
  """Verify the disk sizes of the instances and fixes configuration
254
  mimatches.
255

256
  Parameters: optional instances list, in case we want to restrict the
257
  checks to only a subset of the instances.
258

259
  Result: a list of tuples, (instance, disk, new-size) for changed
260
  configurations.
261

262
  In normal operation, the list should be empty.
263

264
  @type instances: list
265
  @ivar instances: the list of instances to check, or empty for all instances
266

267
  """
268
  OP_ID = "OP_CLUSTER_REPAIR_DISK_SIZES"
269
  __slots__ = ["instances"]
270

    
271

    
272
class OpQueryConfigValues(OpCode):
273
  """Query cluster configuration values."""
274
  OP_ID = "OP_CLUSTER_CONFIG_QUERY"
275
  __slots__ = ["output_fields"]
276

    
277

    
278
class OpRenameCluster(OpCode):
279
  """Rename the cluster.
280

281
  @type name: C{str}
282
  @ivar name: The new name of the cluster. The name and/or the master IP
283
              address will be changed to match the new name and its IP
284
              address.
285

286
  """
287
  OP_ID = "OP_CLUSTER_RENAME"
288
  OP_DSC_FIELD = "name"
289
  __slots__ = ["name"]
290

    
291

    
292
class OpSetClusterParams(OpCode):
293
  """Change the parameters of the cluster.
294

295
  @type vg_name: C{str} or C{None}
296
  @ivar vg_name: The new volume group name or None to disable LVM usage.
297

298
  """
299
  OP_ID = "OP_CLUSTER_SET_PARAMS"
300
  __slots__ = [
301
    "vg_name",
302
    "drbd_helper",
303
    "enabled_hypervisors",
304
    "hvparams",
305
    "os_hvp",
306
    "beparams",
307
    "osparams",
308
    "nicparams",
309
    "candidate_pool_size",
310
    "maintain_node_health",
311
    "uid_pool",
312
    "add_uids",
313
    "remove_uids",
314
    ]
315

    
316

    
317
class OpRedistributeConfig(OpCode):
318
  """Force a full push of the cluster configuration.
319

320
  """
321
  OP_ID = "OP_CLUSTER_REDIST_CONF"
322
  __slots__ = []
323

    
324
# node opcodes
325

    
326
class OpRemoveNode(OpCode):
327
  """Remove a node.
328

329
  @type node_name: C{str}
330
  @ivar node_name: The name of the node to remove. If the node still has
331
                   instances on it, the operation will fail.
332

333
  """
334
  OP_ID = "OP_NODE_REMOVE"
335
  OP_DSC_FIELD = "node_name"
336
  __slots__ = ["node_name"]
337

    
338

    
339
class OpAddNode(OpCode):
340
  """Add a node to the cluster.
341

342
  @type node_name: C{str}
343
  @ivar node_name: The name of the node to add. This can be a short name,
344
                   but it will be expanded to the FQDN.
345
  @type primary_ip: IP address
346
  @ivar primary_ip: The primary IP of the node. This will be ignored when the
347
                    opcode is submitted, but will be filled during the node
348
                    add (so it will be visible in the job query).
349
  @type secondary_ip: IP address
350
  @ivar secondary_ip: The secondary IP of the node. This needs to be passed
351
                      if the cluster has been initialized in 'dual-network'
352
                      mode, otherwise it must not be given.
353
  @type readd: C{bool}
354
  @ivar readd: Whether to re-add an existing node to the cluster. If
355
               this is not passed, then the operation will abort if the node
356
               name is already in the cluster; use this parameter to 'repair'
357
               a node that had its configuration broken, or was reinstalled
358
               without removal from the cluster.
359

360
  """
361
  OP_ID = "OP_NODE_ADD"
362
  OP_DSC_FIELD = "node_name"
363
  __slots__ = ["node_name", "primary_ip", "secondary_ip", "readd"]
364

    
365

    
366
class OpQueryNodes(OpCode):
367
  """Compute the list of nodes."""
368
  OP_ID = "OP_NODE_QUERY"
369
  __slots__ = ["output_fields", "names", "use_locking"]
370

    
371

    
372
class OpQueryNodeVolumes(OpCode):
373
  """Get list of volumes on node."""
374
  OP_ID = "OP_NODE_QUERYVOLS"
375
  __slots__ = ["nodes", "output_fields"]
376

    
377

    
378
class OpQueryNodeStorage(OpCode):
379
  """Get information on storage for node(s)."""
380
  OP_ID = "OP_NODE_QUERY_STORAGE"
381
  __slots__ = [
382
    "nodes",
383
    "storage_type",
384
    "name",
385
    "output_fields",
386
    ]
387

    
388

    
389
class OpModifyNodeStorage(OpCode):
390
  """Modifies the properies of a storage unit"""
391
  OP_ID = "OP_NODE_MODIFY_STORAGE"
392
  __slots__ = [
393
    "node_name",
394
    "storage_type",
395
    "name",
396
    "changes",
397
    ]
398

    
399

    
400
class OpRepairNodeStorage(OpCode):
401
  """Repairs the volume group on a node."""
402
  OP_ID = "OP_REPAIR_NODE_STORAGE"
403
  OP_DSC_FIELD = "node_name"
404
  __slots__ = [
405
    "node_name",
406
    "storage_type",
407
    "name",
408
    "ignore_consistency",
409
    ]
410

    
411

    
412
class OpSetNodeParams(OpCode):
413
  """Change the parameters of a node."""
414
  OP_ID = "OP_NODE_SET_PARAMS"
415
  OP_DSC_FIELD = "node_name"
416
  __slots__ = [
417
    "node_name",
418
    "force",
419
    "master_candidate",
420
    "offline",
421
    "drained",
422
    "auto_promote",
423
    ]
424

    
425

    
426
class OpPowercycleNode(OpCode):
427
  """Tries to powercycle a node."""
428
  OP_ID = "OP_NODE_POWERCYCLE"
429
  OP_DSC_FIELD = "node_name"
430
  __slots__ = [
431
    "node_name",
432
    "force",
433
    ]
434

    
435

    
436
class OpMigrateNode(OpCode):
437
  """Migrate all instances from a node."""
438
  OP_ID = "OP_NODE_MIGRATE"
439
  OP_DSC_FIELD = "node_name"
440
  __slots__ = [
441
    "node_name",
442
    "live",
443
    ]
444

    
445

    
446
class OpNodeEvacuationStrategy(OpCode):
447
  """Compute the evacuation strategy for a list of nodes."""
448
  OP_ID = "OP_NODE_EVAC_STRATEGY"
449
  OP_DSC_FIELD = "nodes"
450
  __slots__ = ["nodes", "iallocator", "remote_node"]
451

    
452

    
453
# instance opcodes
454

    
455
class OpCreateInstance(OpCode):
456
  """Create an instance.
457

458
  @ivar instance_name: Instance name
459
  @ivar mode: Instance creation mode (one of L{constants.INSTANCE_CREATE_MODES})
460
  @ivar source_handshake: Signed handshake from source (remote import only)
461
  @ivar source_x509_ca: Source X509 CA in PEM format (remote import only)
462
  @ivar source_instance_name: Previous name of instance (remote import only)
463

464
  """
465
  OP_ID = "OP_INSTANCE_CREATE"
466
  OP_DSC_FIELD = "instance_name"
467
  __slots__ = [
468
    "instance_name",
469
    "os_type", "force_variant", "no_install",
470
    "pnode", "disk_template", "snode", "mode",
471
    "disks", "nics",
472
    "src_node", "src_path", "start", "identify_defaults",
473
    "wait_for_sync", "ip_check", "name_check",
474
    "file_storage_dir", "file_driver",
475
    "iallocator",
476
    "hypervisor", "hvparams", "beparams", "osparams",
477
    "source_handshake",
478
    "source_x509_ca",
479
    "source_instance_name",
480
    "dry_run",
481
    ]
482

    
483

    
484
class OpReinstallInstance(OpCode):
485
  """Reinstall an instance's OS."""
486
  OP_ID = "OP_INSTANCE_REINSTALL"
487
  OP_DSC_FIELD = "instance_name"
488
  __slots__ = ["instance_name", "os_type", "force_variant"]
489

    
490

    
491
class OpRemoveInstance(OpCode):
492
  """Remove an instance."""
493
  OP_ID = "OP_INSTANCE_REMOVE"
494
  OP_DSC_FIELD = "instance_name"
495
  __slots__ = [
496
    "instance_name",
497
    "ignore_failures",
498
    "shutdown_timeout",
499
    ]
500

    
501

    
502
class OpRenameInstance(OpCode):
503
  """Rename an instance."""
504
  OP_ID = "OP_INSTANCE_RENAME"
505
  __slots__ = [
506
    "instance_name", "ignore_ip", "new_name", "check_name",
507
    ]
508

    
509

    
510
class OpStartupInstance(OpCode):
511
  """Startup an instance."""
512
  OP_ID = "OP_INSTANCE_STARTUP"
513
  OP_DSC_FIELD = "instance_name"
514
  __slots__ = [
515
    "instance_name", "force", "hvparams", "beparams",
516
    ]
517

    
518

    
519
class OpShutdownInstance(OpCode):
520
  """Shutdown an instance."""
521
  OP_ID = "OP_INSTANCE_SHUTDOWN"
522
  OP_DSC_FIELD = "instance_name"
523
  __slots__ = ["instance_name", "timeout"]
524

    
525

    
526
class OpRebootInstance(OpCode):
527
  """Reboot an instance."""
528
  OP_ID = "OP_INSTANCE_REBOOT"
529
  OP_DSC_FIELD = "instance_name"
530
  __slots__ = [
531
    "instance_name", "reboot_type", "ignore_secondaries", "shutdown_timeout",
532
    ]
533

    
534

    
535
class OpReplaceDisks(OpCode):
536
  """Replace the disks of an instance."""
537
  OP_ID = "OP_INSTANCE_REPLACE_DISKS"
538
  OP_DSC_FIELD = "instance_name"
539
  __slots__ = [
540
    "instance_name", "remote_node", "mode", "disks", "iallocator",
541
    "early_release",
542
    ]
543

    
544

    
545
class OpFailoverInstance(OpCode):
546
  """Failover an instance."""
547
  OP_ID = "OP_INSTANCE_FAILOVER"
548
  OP_DSC_FIELD = "instance_name"
549
  __slots__ = [
550
    "instance_name", "ignore_consistency", "shutdown_timeout",
551
    ]
552

    
553

    
554
class OpMigrateInstance(OpCode):
555
  """Migrate an instance.
556

557
  This migrates (without shutting down an instance) to its secondary
558
  node.
559

560
  @ivar instance_name: the name of the instance
561

562
  """
563
  OP_ID = "OP_INSTANCE_MIGRATE"
564
  OP_DSC_FIELD = "instance_name"
565
  __slots__ = ["instance_name", "live", "cleanup"]
566

    
567

    
568
class OpMoveInstance(OpCode):
569
  """Move an instance.
570

571
  This move (with shutting down an instance and data copying) to an
572
  arbitrary node.
573

574
  @ivar instance_name: the name of the instance
575
  @ivar target_node: the destination node
576

577
  """
578
  OP_ID = "OP_INSTANCE_MOVE"
579
  OP_DSC_FIELD = "instance_name"
580
  __slots__ = [
581
    "instance_name", "target_node", "shutdown_timeout",
582
    ]
583

    
584

    
585
class OpConnectConsole(OpCode):
586
  """Connect to an instance's console."""
587
  OP_ID = "OP_INSTANCE_CONSOLE"
588
  OP_DSC_FIELD = "instance_name"
589
  __slots__ = ["instance_name"]
590

    
591

    
592
class OpActivateInstanceDisks(OpCode):
593
  """Activate an instance's disks."""
594
  OP_ID = "OP_INSTANCE_ACTIVATE_DISKS"
595
  OP_DSC_FIELD = "instance_name"
596
  __slots__ = ["instance_name", "ignore_size"]
597

    
598

    
599
class OpDeactivateInstanceDisks(OpCode):
600
  """Deactivate an instance's disks."""
601
  OP_ID = "OP_INSTANCE_DEACTIVATE_DISKS"
602
  OP_DSC_FIELD = "instance_name"
603
  __slots__ = ["instance_name"]
604

    
605

    
606
class OpRecreateInstanceDisks(OpCode):
607
  """Deactivate an instance's disks."""
608
  OP_ID = "OP_INSTANCE_RECREATE_DISKS"
609
  OP_DSC_FIELD = "instance_name"
610
  __slots__ = ["instance_name", "disks"]
611

    
612

    
613
class OpQueryInstances(OpCode):
614
  """Compute the list of instances."""
615
  OP_ID = "OP_INSTANCE_QUERY"
616
  __slots__ = ["output_fields", "names", "use_locking"]
617

    
618

    
619
class OpQueryInstanceData(OpCode):
620
  """Compute the run-time status of instances."""
621
  OP_ID = "OP_INSTANCE_QUERY_DATA"
622
  __slots__ = ["instances", "static"]
623

    
624

    
625
class OpSetInstanceParams(OpCode):
626
  """Change the parameters of an instance."""
627
  OP_ID = "OP_INSTANCE_SET_PARAMS"
628
  OP_DSC_FIELD = "instance_name"
629
  __slots__ = [
630
    "instance_name",
631
    "hvparams", "beparams", "osparams", "force",
632
    "nics", "disks", "disk_template",
633
    "remote_node", "os_name", "force_variant",
634
    ]
635

    
636

    
637
class OpGrowDisk(OpCode):
638
  """Grow a disk of an instance."""
639
  OP_ID = "OP_INSTANCE_GROW_DISK"
640
  OP_DSC_FIELD = "instance_name"
641
  __slots__ = [
642
    "instance_name", "disk", "amount", "wait_for_sync",
643
    ]
644

    
645

    
646
# OS opcodes
647
class OpDiagnoseOS(OpCode):
648
  """Compute the list of guest operating systems."""
649
  OP_ID = "OP_OS_DIAGNOSE"
650
  __slots__ = ["output_fields", "names"]
651

    
652

    
653
# Exports opcodes
654
class OpQueryExports(OpCode):
655
  """Compute the list of exported images."""
656
  OP_ID = "OP_BACKUP_QUERY"
657
  __slots__ = ["nodes", "use_locking"]
658

    
659

    
660
class OpPrepareExport(OpCode):
661
  """Prepares an instance export.
662

663
  @ivar instance_name: Instance name
664
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
665

666
  """
667
  OP_ID = "OP_BACKUP_PREPARE"
668
  OP_DSC_FIELD = "instance_name"
669
  __slots__ = [
670
    "instance_name", "mode",
671
    ]
672

    
673

    
674
class OpExportInstance(OpCode):
675
  """Export an instance.
676

677
  For local exports, the export destination is the node name. For remote
678
  exports, the export destination is a list of tuples, each consisting of
679
  hostname/IP address, port, HMAC and HMAC salt. The HMAC is calculated using
680
  the cluster domain secret over the value "${index}:${hostname}:${port}". The
681
  destination X509 CA must be a signed certificate.
682

683
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
684
  @ivar target_node: Export destination
685
  @ivar x509_key_name: X509 key to use (remote export only)
686
  @ivar destination_x509_ca: Destination X509 CA in PEM format (remote export
687
                             only)
688

689
  """
690
  OP_ID = "OP_BACKUP_EXPORT"
691
  OP_DSC_FIELD = "instance_name"
692
  __slots__ = [
693
    # TODO: Rename target_node as it changes meaning for different export modes
694
    # (e.g. "destination")
695
    "instance_name", "target_node", "shutdown", "shutdown_timeout",
696
    "remove_instance",
697
    "ignore_remove_failures",
698
    "mode",
699
    "x509_key_name",
700
    "destination_x509_ca",
701
    ]
702

    
703

    
704
class OpRemoveExport(OpCode):
705
  """Remove an instance's export."""
706
  OP_ID = "OP_BACKUP_REMOVE"
707
  OP_DSC_FIELD = "instance_name"
708
  __slots__ = ["instance_name"]
709

    
710

    
711
# Tags opcodes
712
class OpGetTags(OpCode):
713
  """Returns the tags of the given object."""
714
  OP_ID = "OP_TAGS_GET"
715
  OP_DSC_FIELD = "name"
716
  __slots__ = ["kind", "name"]
717

    
718

    
719
class OpSearchTags(OpCode):
720
  """Searches the tags in the cluster for a given pattern."""
721
  OP_ID = "OP_TAGS_SEARCH"
722
  OP_DSC_FIELD = "pattern"
723
  __slots__ = ["pattern"]
724

    
725

    
726
class OpAddTags(OpCode):
727
  """Add a list of tags on a given object."""
728
  OP_ID = "OP_TAGS_SET"
729
  __slots__ = ["kind", "name", "tags"]
730

    
731

    
732
class OpDelTags(OpCode):
733
  """Remove a list of tags from a given object."""
734
  OP_ID = "OP_TAGS_DEL"
735
  __slots__ = ["kind", "name", "tags"]
736

    
737

    
738
# Test opcodes
739
class OpTestDelay(OpCode):
740
  """Sleeps for a configured amount of time.
741

742
  This is used just for debugging and testing.
743

744
  Parameters:
745
    - duration: the time to sleep
746
    - on_master: if true, sleep on the master
747
    - on_nodes: list of nodes in which to sleep
748

749
  If the on_master parameter is true, it will execute a sleep on the
750
  master (before any node sleep).
751

752
  If the on_nodes list is not empty, it will sleep on those nodes
753
  (after the sleep on the master, if that is enabled).
754

755
  As an additional feature, the case of duration < 0 will be reported
756
  as an execution error, so this opcode can be used as a failure
757
  generator. The case of duration == 0 will not be treated specially.
758

759
  """
760
  OP_ID = "OP_TEST_DELAY"
761
  OP_DSC_FIELD = "duration"
762
  __slots__ = ["duration", "on_master", "on_nodes", "repeat"]
763

    
764

    
765
class OpTestAllocator(OpCode):
766
  """Allocator framework testing.
767

768
  This opcode has two modes:
769
    - gather and return allocator input for a given mode (allocate new
770
      or replace secondary) and a given instance definition (direction
771
      'in')
772
    - run a selected allocator for a given operation (as above) and
773
      return the allocator output (direction 'out')
774

775
  """
776
  OP_ID = "OP_TEST_ALLOCATOR"
777
  OP_DSC_FIELD = "allocator"
778
  __slots__ = [
779
    "direction", "mode", "allocator", "name",
780
    "mem_size", "disks", "disk_template",
781
    "os", "tags", "nics", "vcpus", "hypervisor",
782
    "evac_nodes",
783
    ]
784

    
785

    
786
OP_MAPPING = dict([(v.OP_ID, v) for v in globals().values()
787
                   if (isinstance(v, type) and issubclass(v, OpCode) and
788
                       hasattr(v, "OP_ID"))])