1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2010 Raritan Inc. All rights reserved.
import raritan.rpc
class Structure(object):
def __str__(self):
l = max([len(e) for e in self.elements])
pretty = "\n".join([
raritan.rpc.Utils.indent("* %-*s = %s" % (l, e, raritan.rpc.Utils.rprint(getattr(self, e))), 4) for e in self.elements
])
return "%s:\n%s" % (raritan.rpc.TypeInfo.typeBaseName(self.idlType), pretty)
def __eq__(self, other):
return (other != None and self.idlType == other.idlType and
all([getattr(self, e) == getattr(other, e) for e in self.elements]))
def __hash__(self):
return hash((self.idlType, tuple(self.elements)))
|