-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmemtest.py
executable file
·155 lines (126 loc) · 3.42 KB
/
memtest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#! /usr/bin/env python3
from typing import (
Optional,
List,
)
import sys
import gc
import re
re._MAXCACHE = 1
from memory_profiler import profile
from collections import defaultdict
sys.path.append("..")
import whoisdomain
domains = [
"google.com",
"microsoft.com",
"apple.com",
"dell.com",
"hp.com",
"ab.com",
"xy.com",
"tld.com",
"samsung.com",
"ibm.com",
"lg.com",
"python.com",
"git.com",
"netflix.com",
"cisco.com",
"kfc.com",
"nasa.com",
"esa.com",
"amazon.com",
"meta.com",
"godaddy.com",
"ovh.com",
"uber.com",
"siemens.com",
]
def getAllCurrentTld() -> List[str]:
return whoisdomain.validTlds()
def appendHint(
rr: List[str],
allRegex: Optional[str],
tld: str,
) -> None:
hint = whoisdomain.getTestHint(tld)
if hint:
rr.append(f"{hint}")
def makeTestAllCurrentTld(
allRegex: Optional[str] = None,
) -> List[str]:
rr: List[str] = []
for tld in getAllCurrentTld():
if allRegex is None:
appendHint(rr, allRegex, tld)
continue
if re.search(allRegex, tld):
appendHint(rr, allRegex, tld)
return rr
def check() -> None:
# gc.set_debug(gc.DEBUG_LEAK)
gc.set_debug(gc.DEBUG_UNCOLLECTABLE)
domains = makeTestAllCurrentTld(None)
n: int = 0
before = defaultdict(int)
for i in gc.get_objects():
before[type(i)] += 1
for item in domains:
n += 1
print(f"Checking domain: {item}")
b2 = defaultdict(int)
for i in gc.get_objects():
# print(i, type(i))
b2[type(i)] += 1
whoisdomain_call(item)
re._cache.clear()
print(gc.collect(0)) # The number of unreachable objects found is returned.
print(gc.collect(1)) # The number of unreachable objects found is returned.
print(gc.collect(2)) # The number of unreachable objects found is returned.
after = defaultdict(int)
z = []
for i in gc.get_objects():
if str(type(i)) == "<class 're.Pattern'>":
if str(i) in z:
print(f"DUPLICATE: {i}")
else:
z.append(str(i))
after[type(i)] += 1
n = 0
for i in sorted(z):
n += 1
print(n, i)
z = [(k, after[k] - before[k]) for k in after if (after[k] - before[k]) > 0]
for item in z:
print("since start", item) # (<class 're.Pattern'>, 46) is growing to 288
z = [(k, after[k] - b2[k]) for k in after if (after[k] - b2[k]) > 0]
for item in z:
print("since previous", item) # (<class 're.Pattern'>, 46) is growing to 288
n = 0
for item in gc.get_stats():
print(n, item)
n += 1
print(gc.get_referrers())
for item in gc.garbage:
print("garbage:", item)
@profile
def whoisdomain_call(domain: str) -> None:
try:
d = whoisdomain.query(domain)
del d
except whoisdomain.WhoisPrivateRegistry:
return
except whoisdomain.WhoisCommandFailed:
return
except whoisdomain.WhoisQuotaExceeded:
return
except whoisdomain.FailedParsingWhoisOutput:
return
except whoisdomain.UnknownTld:
return
except whoisdomain.UnknownDateFormat:
return
except whoisdomain.WhoisCommandTimeout:
return
check()