mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
59 lines
2.0 KiB
Python
59 lines
2.0 KiB
Python
|
#!/usr/bin/python
|
||
|
#
|
||
|
|
||
|
try:
|
||
|
import gdb
|
||
|
except ImportError as e:
|
||
|
raise ImportError("This script must be run in GDB: ", str(e))
|
||
|
import sys
|
||
|
import os
|
||
|
sys.path.append(os.getcwd())
|
||
|
import common_helpers
|
||
|
|
||
|
|
||
|
simple_types = ["CMasternode", "CMasternodeVerification",
|
||
|
"CMasternodeBroadcast", "CMasternodePing",
|
||
|
"CMasternodeMan", "CDarksendQueue", "CDarkSendEntry",
|
||
|
"CTransaction", "CMutableTransaction", "CPrivateSendBaseSession",
|
||
|
"CPrivateSendBaseManager", "CPrivateSendClientSession",
|
||
|
"CPrivateSendClientManager", "CPrivateSendServer", "CMasternodePayments",
|
||
|
"CMasternodePaymentVote", "CMasternodeBlockPayees",
|
||
|
"CMasternodePayee", "CInstantSend", "CTxLockRequest",
|
||
|
"CTxLockVote", "CTxLockCandidate", "COutPoint",
|
||
|
"COutPointLock", "CSporkManager", "CMasternodeSync",
|
||
|
"CGovernanceManager", "CRateCheckBuffer", "CGovernanceObject",
|
||
|
"CGovernanceVote", "CGovernanceObjectVoteFile"]
|
||
|
|
||
|
simple_templates = ["CacheMultiMap", "CacheMap"]
|
||
|
|
||
|
|
||
|
class SimpleClassObj:
|
||
|
|
||
|
def __init__ (self, gobj):
|
||
|
self.obj = gobj
|
||
|
|
||
|
@classmethod
|
||
|
def is_this_type(cls, obj_type):
|
||
|
str_type = str(obj_type)
|
||
|
if str_type in simple_types:
|
||
|
return True
|
||
|
for templ in simple_templates:
|
||
|
if str_type.find(templ + "<") == 0:
|
||
|
return True
|
||
|
return False
|
||
|
|
||
|
def get_used_size(self):
|
||
|
size = 0
|
||
|
fields = self.obj.type.fields()
|
||
|
for f in fields:
|
||
|
# check if it is static field
|
||
|
if not hasattr(f, "bitpos"):
|
||
|
continue
|
||
|
# process base class size
|
||
|
if f.is_base_class:
|
||
|
size += common_helpers.get_instance_size(self.obj.cast(f.type.strip_typedefs()))
|
||
|
continue
|
||
|
# process simple field
|
||
|
size += common_helpers.get_instance_size(self.obj[f.name])
|
||
|
return size
|