Statistics
| Branch: | Tag: | Revision:

root / lib / opcodes.py @ 3953242f

History | View | Annotate | Download (19.1 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
    "enabled_hypervisors",
303
    "hvparams",
304
    "os_hvp",
305
    "beparams",
306
    "nicparams",
307
    "candidate_pool_size",
308
    "maintain_node_health",
309
    ]
310

    
311

    
312
class OpRedistributeConfig(OpCode):
313
  """Force a full push of the cluster configuration.
314

315
  """
316
  OP_ID = "OP_CLUSTER_REDIST_CONF"
317
  __slots__ = []
318

    
319
# node opcodes
320

    
321
class OpRemoveNode(OpCode):
322
  """Remove a node.
323

324
  @type node_name: C{str}
325
  @ivar node_name: The name of the node to remove. If the node still has
326
                   instances on it, the operation will fail.
327

328
  """
329
  OP_ID = "OP_NODE_REMOVE"
330
  OP_DSC_FIELD = "node_name"
331
  __slots__ = ["node_name"]
332

    
333

    
334
class OpAddNode(OpCode):
335
  """Add a node to the cluster.
336

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

355
  """
356
  OP_ID = "OP_NODE_ADD"
357
  OP_DSC_FIELD = "node_name"
358
  __slots__ = ["node_name", "primary_ip", "secondary_ip", "readd"]
359

    
360

    
361
class OpQueryNodes(OpCode):
362
  """Compute the list of nodes."""
363
  OP_ID = "OP_NODE_QUERY"
364
  __slots__ = ["output_fields", "names", "use_locking"]
365

    
366

    
367
class OpQueryNodeVolumes(OpCode):
368
  """Get list of volumes on node."""
369
  OP_ID = "OP_NODE_QUERYVOLS"
370
  __slots__ = ["nodes", "output_fields"]
371

    
372

    
373
class OpQueryNodeStorage(OpCode):
374
  """Get information on storage for node(s)."""
375
  OP_ID = "OP_NODE_QUERY_STORAGE"
376
  __slots__ = [
377
    "nodes",
378
    "storage_type",
379
    "name",
380
    "output_fields",
381
    ]
382

    
383

    
384
class OpModifyNodeStorage(OpCode):
385
  """Modifies the properies of a storage unit"""
386
  OP_ID = "OP_NODE_MODIFY_STORAGE"
387
  __slots__ = [
388
    "node_name",
389
    "storage_type",
390
    "name",
391
    "changes",
392
    ]
393

    
394

    
395
class OpRepairNodeStorage(OpCode):
396
  """Repairs the volume group on a node."""
397
  OP_ID = "OP_REPAIR_NODE_STORAGE"
398
  OP_DSC_FIELD = "node_name"
399
  __slots__ = [
400
    "node_name",
401
    "storage_type",
402
    "name",
403
    "ignore_consistency",
404
    ]
405

    
406

    
407
class OpSetNodeParams(OpCode):
408
  """Change the parameters of a node."""
409
  OP_ID = "OP_NODE_SET_PARAMS"
410
  OP_DSC_FIELD = "node_name"
411
  __slots__ = [
412
    "node_name",
413
    "force",
414
    "master_candidate",
415
    "offline",
416
    "drained",
417
    "auto_promote",
418
    ]
419

    
420

    
421
class OpPowercycleNode(OpCode):
422
  """Tries to powercycle a node."""
423
  OP_ID = "OP_NODE_POWERCYCLE"
424
  OP_DSC_FIELD = "node_name"
425
  __slots__ = [
426
    "node_name",
427
    "force",
428
    ]
429

    
430

    
431
class OpEvacuateNode(OpCode):
432
  """Relocate secondary instances from a node."""
433
  OP_ID = "OP_NODE_EVACUATE"
434
  OP_DSC_FIELD = "node_name"
435
  __slots__ = [
436
    "node_name", "remote_node", "iallocator", "early_release",
437
    ]
438

    
439

    
440
class OpMigrateNode(OpCode):
441
  """Migrate all instances from a node."""
442
  OP_ID = "OP_NODE_MIGRATE"
443
  OP_DSC_FIELD = "node_name"
444
  __slots__ = [
445
    "node_name",
446
    "live",
447
    ]
448

    
449

    
450
class OpNodeEvacuationStrategy(OpCode):
451
  """Compute the evacuation strategy for a list of nodes."""
452
  OP_ID = "OP_NODE_EVAC_STRATEGY"
453
  OP_DSC_FIELD = "nodes"
454
  __slots__ = ["nodes", "iallocator", "remote_node"]
455

    
456

    
457
# instance opcodes
458

    
459
class OpCreateInstance(OpCode):
460
  """Create an instance."""
461
  OP_ID = "OP_INSTANCE_CREATE"
462
  OP_DSC_FIELD = "instance_name"
463
  __slots__ = [
464
    "instance_name",
465
    "os_type", "force_variant", "no_install",
466
    "pnode", "disk_template", "snode", "mode",
467
    "disks", "nics",
468
    "src_node", "src_path", "start",
469
    "wait_for_sync", "ip_check", "name_check",
470
    "file_storage_dir", "file_driver",
471
    "iallocator",
472
    "hypervisor", "hvparams", "beparams",
473
    "dry_run",
474
    ]
475

    
476

    
477
class OpReinstallInstance(OpCode):
478
  """Reinstall an instance's OS."""
479
  OP_ID = "OP_INSTANCE_REINSTALL"
480
  OP_DSC_FIELD = "instance_name"
481
  __slots__ = ["instance_name", "os_type", "force_variant"]
482

    
483

    
484
class OpRemoveInstance(OpCode):
485
  """Remove an instance."""
486
  OP_ID = "OP_INSTANCE_REMOVE"
487
  OP_DSC_FIELD = "instance_name"
488
  __slots__ = [
489
    "instance_name",
490
    "ignore_failures",
491
    "shutdown_timeout",
492
    ]
493

    
494

    
495
class OpRenameInstance(OpCode):
496
  """Rename an instance."""
497
  OP_ID = "OP_INSTANCE_RENAME"
498
  __slots__ = [
499
    "instance_name", "ignore_ip", "new_name",
500
    ]
501

    
502

    
503
class OpStartupInstance(OpCode):
504
  """Startup an instance."""
505
  OP_ID = "OP_INSTANCE_STARTUP"
506
  OP_DSC_FIELD = "instance_name"
507
  __slots__ = [
508
    "instance_name", "force", "hvparams", "beparams",
509
    ]
510

    
511

    
512
class OpShutdownInstance(OpCode):
513
  """Shutdown an instance."""
514
  OP_ID = "OP_INSTANCE_SHUTDOWN"
515
  OP_DSC_FIELD = "instance_name"
516
  __slots__ = ["instance_name", "timeout"]
517

    
518

    
519
class OpRebootInstance(OpCode):
520
  """Reboot an instance."""
521
  OP_ID = "OP_INSTANCE_REBOOT"
522
  OP_DSC_FIELD = "instance_name"
523
  __slots__ = [
524
    "instance_name", "reboot_type", "ignore_secondaries", "shutdown_timeout",
525
    ]
526

    
527

    
528
class OpReplaceDisks(OpCode):
529
  """Replace the disks of an instance."""
530
  OP_ID = "OP_INSTANCE_REPLACE_DISKS"
531
  OP_DSC_FIELD = "instance_name"
532
  __slots__ = [
533
    "instance_name", "remote_node", "mode", "disks", "iallocator",
534
    "early_release",
535
    ]
536

    
537

    
538
class OpFailoverInstance(OpCode):
539
  """Failover an instance."""
540
  OP_ID = "OP_INSTANCE_FAILOVER"
541
  OP_DSC_FIELD = "instance_name"
542
  __slots__ = [
543
    "instance_name", "ignore_consistency", "shutdown_timeout",
544
    ]
545

    
546

    
547
class OpMigrateInstance(OpCode):
548
  """Migrate an instance.
549

550
  This migrates (without shutting down an instance) to its secondary
551
  node.
552

553
  @ivar instance_name: the name of the instance
554

555
  """
556
  OP_ID = "OP_INSTANCE_MIGRATE"
557
  OP_DSC_FIELD = "instance_name"
558
  __slots__ = ["instance_name", "live", "cleanup"]
559

    
560

    
561
class OpMoveInstance(OpCode):
562
  """Move an instance.
563

564
  This move (with shutting down an instance and data copying) to an
565
  arbitrary node.
566

567
  @ivar instance_name: the name of the instance
568
  @ivar target_node: the destination node
569

570
  """
571
  OP_ID = "OP_INSTANCE_MOVE"
572
  OP_DSC_FIELD = "instance_name"
573
  __slots__ = [
574
    "instance_name", "target_node", "shutdown_timeout",
575
    ]
576

    
577

    
578
class OpConnectConsole(OpCode):
579
  """Connect to an instance's console."""
580
  OP_ID = "OP_INSTANCE_CONSOLE"
581
  OP_DSC_FIELD = "instance_name"
582
  __slots__ = ["instance_name"]
583

    
584

    
585
class OpActivateInstanceDisks(OpCode):
586
  """Activate an instance's disks."""
587
  OP_ID = "OP_INSTANCE_ACTIVATE_DISKS"
588
  OP_DSC_FIELD = "instance_name"
589
  __slots__ = ["instance_name", "ignore_size"]
590

    
591

    
592
class OpDeactivateInstanceDisks(OpCode):
593
  """Deactivate an instance's disks."""
594
  OP_ID = "OP_INSTANCE_DEACTIVATE_DISKS"
595
  OP_DSC_FIELD = "instance_name"
596
  __slots__ = ["instance_name"]
597

    
598

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

    
605

    
606
class OpQueryInstances(OpCode):
607
  """Compute the list of instances."""
608
  OP_ID = "OP_INSTANCE_QUERY"
609
  __slots__ = ["output_fields", "names", "use_locking"]
610

    
611

    
612
class OpQueryInstanceData(OpCode):
613
  """Compute the run-time status of instances."""
614
  OP_ID = "OP_INSTANCE_QUERY_DATA"
615
  __slots__ = ["instances", "static"]
616

    
617

    
618
class OpSetInstanceParams(OpCode):
619
  """Change the parameters of an instance."""
620
  OP_ID = "OP_INSTANCE_SET_PARAMS"
621
  OP_DSC_FIELD = "instance_name"
622
  __slots__ = [
623
    "instance_name",
624
    "hvparams", "beparams", "force",
625
    "nics", "disks", "disk_template",
626
    "remote_node", "os_name", "force_variant",
627
    ]
628

    
629

    
630
class OpGrowDisk(OpCode):
631
  """Grow a disk of an instance."""
632
  OP_ID = "OP_INSTANCE_GROW_DISK"
633
  OP_DSC_FIELD = "instance_name"
634
  __slots__ = [
635
    "instance_name", "disk", "amount", "wait_for_sync",
636
    ]
637

    
638

    
639
# OS opcodes
640
class OpDiagnoseOS(OpCode):
641
  """Compute the list of guest operating systems."""
642
  OP_ID = "OP_OS_DIAGNOSE"
643
  __slots__ = ["output_fields", "names"]
644

    
645

    
646
# Exports opcodes
647
class OpQueryExports(OpCode):
648
  """Compute the list of exported images."""
649
  OP_ID = "OP_BACKUP_QUERY"
650
  __slots__ = ["nodes", "use_locking"]
651

    
652

    
653
class OpExportInstance(OpCode):
654
  """Export an instance."""
655
  OP_ID = "OP_BACKUP_EXPORT"
656
  OP_DSC_FIELD = "instance_name"
657
  __slots__ = [
658
    "instance_name", "target_node", "shutdown", "shutdown_timeout",
659
    ]
660

    
661

    
662
class OpRemoveExport(OpCode):
663
  """Remove an instance's export."""
664
  OP_ID = "OP_BACKUP_REMOVE"
665
  OP_DSC_FIELD = "instance_name"
666
  __slots__ = ["instance_name"]
667

    
668

    
669
# Tags opcodes
670
class OpGetTags(OpCode):
671
  """Returns the tags of the given object."""
672
  OP_ID = "OP_TAGS_GET"
673
  OP_DSC_FIELD = "name"
674
  __slots__ = ["kind", "name"]
675

    
676

    
677
class OpSearchTags(OpCode):
678
  """Searches the tags in the cluster for a given pattern."""
679
  OP_ID = "OP_TAGS_SEARCH"
680
  OP_DSC_FIELD = "pattern"
681
  __slots__ = ["pattern"]
682

    
683

    
684
class OpAddTags(OpCode):
685
  """Add a list of tags on a given object."""
686
  OP_ID = "OP_TAGS_SET"
687
  __slots__ = ["kind", "name", "tags"]
688

    
689

    
690
class OpDelTags(OpCode):
691
  """Remove a list of tags from a given object."""
692
  OP_ID = "OP_TAGS_DEL"
693
  __slots__ = ["kind", "name", "tags"]
694

    
695

    
696
# Test opcodes
697
class OpTestDelay(OpCode):
698
  """Sleeps for a configured amount of time.
699

700
  This is used just for debugging and testing.
701

702
  Parameters:
703
    - duration: the time to sleep
704
    - on_master: if true, sleep on the master
705
    - on_nodes: list of nodes in which to sleep
706

707
  If the on_master parameter is true, it will execute a sleep on the
708
  master (before any node sleep).
709

710
  If the on_nodes list is not empty, it will sleep on those nodes
711
  (after the sleep on the master, if that is enabled).
712

713
  As an additional feature, the case of duration < 0 will be reported
714
  as an execution error, so this opcode can be used as a failure
715
  generator. The case of duration == 0 will not be treated specially.
716

717
  """
718
  OP_ID = "OP_TEST_DELAY"
719
  OP_DSC_FIELD = "duration"
720
  __slots__ = ["duration", "on_master", "on_nodes"]
721

    
722

    
723
class OpTestAllocator(OpCode):
724
  """Allocator framework testing.
725

726
  This opcode has two modes:
727
    - gather and return allocator input for a given mode (allocate new
728
      or replace secondary) and a given instance definition (direction
729
      'in')
730
    - run a selected allocator for a given operation (as above) and
731
      return the allocator output (direction 'out')
732

733
  """
734
  OP_ID = "OP_TEST_ALLOCATOR"
735
  OP_DSC_FIELD = "allocator"
736
  __slots__ = [
737
    "direction", "mode", "allocator", "name",
738
    "mem_size", "disks", "disk_template",
739
    "os", "tags", "nics", "vcpus", "hypervisor",
740
    "evac_nodes",
741
    ]
742

    
743

    
744
OP_MAPPING = dict([(v.OP_ID, v) for v in globals().values()
745
                   if (isinstance(v, type) and issubclass(v, OpCode) and
746
                       hasattr(v, "OP_ID"))])