mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
15ca483893
Signed-off-by: pasta <pasta@dashboost.org>
55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
|
|
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
|