-
Notifications
You must be signed in to change notification settings - Fork 584
/
Copy path_apply_pages.py
253 lines (225 loc) · 7.39 KB
/
_apply_pages.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import multiprocessing
import os
import time
import pymupdf
# Support for concurrent processing of document pages.
#
class _worker_State:
pass
_worker_state = _worker_State()
def _worker_init(
path,
initfn,
initfn_args,
initfn_kwargs,
pagefn,
pagefn_args,
pagefn_kwargs,
stats,
):
# pylint: disable=attribute-defined-outside-init
_worker_state.path = path
_worker_state.pagefn = pagefn
_worker_state.pagefn_args = pagefn_args
_worker_state.pagefn_kwargs = pagefn_kwargs
_worker_state.stats = stats
_worker_state.document = None
if initfn:
initfn(*initfn_args, **initfn_kwargs)
def _stats_write(t, label):
t = time.time() - t
if t >= 10:
pymupdf.log(f'{os.getpid()=}: {t:2f}s: {label}.')
def _worker_fn(page_number):
# Create Document from filename if we haven't already done so.
if not _worker_state.document:
if _worker_state.stats:
t = time.time()
_worker_state.document = pymupdf.Document(_worker_state.path) # pylint: disable=attribute-defined-outside-init
if _worker_state.stats:
_stats_write(t, 'pymupdf.Document()')
if _worker_state.stats:
t = time.time()
page = _worker_state.document[page_number]
if _worker_state.stats:
_stats_write(t, '_worker_state.document[page_number]')
if _worker_state.stats:
t = time.time()
ret = _worker_state.pagefn(
page,
*_worker_state.pagefn_args,
**_worker_state.pagefn_kwargs,
)
if _worker_state.stats:
_stats_write(t, '_worker_state.pagefn()')
return ret
def _multiprocessing(
path,
pages,
pagefn,
pagefn_args,
pagefn_kwargs,
initfn,
initfn_args,
initfn_kwargs,
concurrency,
stats,
):
#print(f'_worker_mp(): {concurrency=}', flush=1)
with multiprocessing.Pool(
concurrency,
_worker_init,
(
path,
initfn, initfn_args, initfn_kwargs,
pagefn, pagefn_args, pagefn_kwargs,
stats,
),
) as pool:
result = pool.map_async(_worker_fn, pages)
return result.get()
def _fork(
path,
pages,
pagefn,
pagefn_args,
pagefn_kwargs,
initfn,
initfn_args,
initfn_kwargs,
concurrency,
stats,
):
verbose = 0
if concurrency is None:
concurrency = multiprocessing.cpu_count()
# We write page numbers to `queue_down` and read `(page_num, text)` from
# `queue_up`. Workers each repeatedly read the next available page number
# from `queue_down`, extract the text and write it onto `queue_up`.
#
# This is better than pre-allocating a subset of pages to each worker
# because it ensures there will never be idle workers until we are near the
# end with fewer pages left than workers.
#
queue_down = multiprocessing.Queue()
queue_up = multiprocessing.Queue()
def childfn():
document = None
if verbose:
pymupdf.log(f'{os.getpid()=}: {initfn=} {initfn_args=}')
_worker_init(
path,
initfn,
initfn_args,
initfn_kwargs,
pagefn,
pagefn_args,
pagefn_kwargs,
stats,
)
while 1:
if verbose:
pymupdf.log(f'{os.getpid()=}: calling get().')
page_num = queue_down.get()
if verbose:
pymupdf.log(f'{os.getpid()=}: {page_num=}.')
if page_num is None:
break
try:
if not document:
if stats:
t = time.time()
document = pymupdf.Document(path)
if stats:
_stats_write(t, 'pymupdf.Document(path)')
if stats:
t = time.time()
page = document[page_num]
if stats:
_stats_write(t, 'document[page_num]')
if verbose:
pymupdf.log(f'{os.getpid()=}: {_worker_state=}')
if stats:
t = time.time()
ret = pagefn(
page,
*_worker_state.pagefn_args,
**_worker_state.pagefn_kwargs,
)
if stats:
_stats_write(t, f'{page_num=} pagefn()')
except Exception as e:
if verbose: pymupdf.log(f'{os.getpid()=}: exception {e=}')
ret = e
if verbose:
pymupdf.log(f'{os.getpid()=}: sending {page_num=} {ret=}')
queue_up.put( (page_num, ret) )
error = None
pids = list()
try:
# Start child processes.
if stats:
t = time.time()
for i in range(concurrency):
p = os.fork() # pylint: disable=no-member
if p == 0:
# Child process.
try:
try:
childfn()
except Exception as e:
pymupdf.log(f'{os.getpid()=}: childfn() => {e=}')
raise
finally:
if verbose:
pymupdf.log(f'{os.getpid()=}: calling os._exit(0)')
os._exit(0)
pids.append(p)
if stats:
_stats_write(t, 'create child processes')
# Send page numbers.
if stats:
t = time.time()
if verbose:
pymupdf.log(f'Sending page numbers.')
for page_num in range(len(pages)):
queue_down.put(page_num)
if stats:
_stats_write(t, 'Send page numbers')
# Collect results. We give up if any worker sends an exception instead
# of text, but this hasn't been tested.
ret = [None] * len(pages)
for i in range(len(pages)):
page_num, text = queue_up.get()
if verbose:
pymupdf.log(f'{page_num=} {len(text)=}')
assert ret[page_num] is None
if isinstance(text, Exception):
if not error:
error = text
break
ret[page_num] = text
# Close queue. This should cause exception in workers and terminate
# them, but on macos-arm64 this does not seem to happen, so we also
# send None, which makes workers terminate.
for i in range(concurrency):
queue_down.put(None)
if verbose: pymupdf.log(f'Closing queues.')
queue_down.close()
if error:
raise error
if verbose:
pymupdf.log(f'After concurrent, returning {len(ret)=}')
return ret
finally:
# Join all child processes.
if stats:
t = time.time()
for pid in pids:
if verbose:
pymupdf.log(f'waiting for {pid=}.')
e = os.waitpid(pid, 0)
if verbose:
pymupdf.log(f'{pid=} => {e=}')
if stats:
_stats_write(t, 'Join all child proceses')