2016-05-17 13:01:04 +01:00
|
|
|
# test concurrent interning of strings
|
|
|
|
#
|
|
|
|
# MIT license; Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
|
|
|
|
|
2022-08-18 07:57:45 +01:00
|
|
|
import time
|
2016-05-17 13:01:04 +01:00
|
|
|
import _thread
|
|
|
|
|
2023-02-02 00:51:48 +00:00
|
|
|
|
2016-05-17 13:01:04 +01:00
|
|
|
# function to check the interned string
|
|
|
|
def check(s, val):
|
|
|
|
assert type(s) == str
|
|
|
|
assert int(s) == val
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2016-05-17 13:01:04 +01:00
|
|
|
# main thread function
|
|
|
|
def th(base, n):
|
|
|
|
for i in range(n):
|
|
|
|
# this will intern the string and check it
|
|
|
|
exec("check('%u', %u)" % (base + i, base + i))
|
|
|
|
|
|
|
|
with lock:
|
|
|
|
global n_finished
|
|
|
|
n_finished += 1
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2016-05-17 13:01:04 +01:00
|
|
|
lock = _thread.allocate_lock()
|
2024-01-04 22:53:05 +00:00
|
|
|
n_thread = 0
|
|
|
|
n_thread_max = 4
|
2016-05-17 13:01:04 +01:00
|
|
|
n_finished = 0
|
2016-05-31 17:36:06 +01:00
|
|
|
n_qstr_per_thread = 100 # make 1000 for a more stressful test (uses more heap)
|
2016-05-17 13:01:04 +01:00
|
|
|
|
|
|
|
# spawn threads
|
2024-01-04 22:53:05 +00:00
|
|
|
for _ in range(n_thread_max):
|
|
|
|
try:
|
|
|
|
_thread.start_new_thread(th, (n_thread * n_qstr_per_thread, n_qstr_per_thread))
|
|
|
|
n_thread += 1
|
|
|
|
except OSError:
|
|
|
|
# System cannot create a new thead, so stop trying to create them.
|
|
|
|
break
|
|
|
|
|
|
|
|
# also run the function on this main thread
|
|
|
|
th(n_thread * n_qstr_per_thread, n_qstr_per_thread)
|
|
|
|
n_thread += 1
|
2016-05-17 13:01:04 +01:00
|
|
|
|
2017-02-04 12:33:20 +00:00
|
|
|
# wait for threads to finish
|
2016-05-17 13:01:04 +01:00
|
|
|
while n_finished < n_thread:
|
2024-01-04 22:53:05 +00:00
|
|
|
time.sleep(0)
|
2016-05-17 13:01:04 +01:00
|
|
|
|
|
|
|
print("pass")
|