-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.py
executable file
·160 lines (134 loc) · 5.19 KB
/
utils.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
from os import listdir
from os.path import isfile, join, split
import Queue
import threading
import json
import codecs
import requests
# list files in a folder and put them in to a queue for multi-threading processing
def multi_thread_process_files(dir_path, file_extension, num_threads, process_func,
proc_desc='processed', args=None, multi=None,
file_filter_func=None, callback_func=None,
thread_wise_objs=None):
onlyfiles = [f for f in listdir(dir_path) if isfile(join(dir_path, f))]
num_pdfs = 0
files = None if multi is None else []
lst = []
for f in onlyfiles:
if f.endswith('.' + file_extension) if file_filter_func is None \
else file_filter_func(f):
if multi is None:
lst.append(join(dir_path, f))
else:
files.append(join(dir_path, f))
if len(files) >= multi:
lst.append(files)
files = []
num_pdfs += 1
if files is not None and len(files) > 0:
lst.append(files)
multi_thread_tasking(lst, num_threads, process_func, proc_desc, args, multi, file_filter_func,
callback_func,
thread_wise_objs=thread_wise_objs)
def multi_thread_tasking(lst, num_threads, process_func,
proc_desc='processed', args=None, multi=None,
file_filter_func=None, callback_func=None, thread_wise_objs=None):
num_pdfs = len(lst)
pdf_queque = Queue.Queue(num_pdfs)
# print('putting list into queue...')
for item in lst:
pdf_queque.put_nowait(item)
thread_num = min(num_pdfs, num_threads)
arr = [process_func] if args is None else [process_func] + args
arr.insert(0, pdf_queque)
# print('queue filled, threading...')
for i in range(thread_num):
tarr = arr[:]
thread_obj = None
if thread_wise_objs is not None and isinstance(thread_wise_objs, list):
thread_obj = thread_wise_objs[i]
tarr.insert(0, thread_obj)
t = threading.Thread(target=multi_thread_do, args=tuple(tarr))
t.daemon = True
t.start()
# print('waiting jobs to finish')
pdf_queque.join()
# print('{0} files {1}'.format(num_pdfs, proc_desc))
if callback_func is not None:
callback_func(*tuple(args))
def multi_thread_do(thread_obj, q, func, *args):
while True:
p = q.get()
try:
if thread_obj is not None:
func(thread_obj, p, *args)
else:
func(p, *args)
except Exception, e:
print u'error doing {0} on {1} \n{2}'.format(func, p, str(e))
q.task_done()
def save_json_array(lst, file_path):
with codecs.open(file_path, 'w', encoding='utf-8') as wf:
json.dump(lst, wf, encoding='utf-8')
def save_string(str, file_path):
with codecs.open(file_path, 'w', encoding='utf-8') as wf:
wf.write(str)
def load_json_data(file_path):
data = None
with codecs.open(file_path, encoding='utf-8') as rf:
data = json.load(rf, encoding='utf-8')
return data
def http_post_result(url, payload, headers=None, auth=None):
req = requests.post(
url, headers=headers,
data=payload, auth=auth)
return unicode(req.content, errors='ignore') # req.content.decode("utf-8")
def multi_thread_large_file_tasking(large_file, num_threads, process_func,
proc_desc='processed', args=None, multi=None,
file_filter_func=None, callback_func=None,
thread_init_func=None, thread_end_func=None,
file_encoding='utf-8'):
num_queue_size = 1000
pdf_queque = Queue.Queue(num_queue_size)
print('queue filled, threading...')
thread_objs = []
for i in range(num_threads):
arr = [process_func] if args is None else [process_func] + args
to = None
if thread_init_func is not None:
to = thread_init_func()
thread_objs.append(to)
arr.insert(0, to)
arr.insert(1, pdf_queque)
t = threading.Thread(target=multi_thread_do, args=tuple(arr))
t.daemon = True
t.start()
print('putting list into queue...')
num_lines = 0
with codecs.open(large_file, encoding=file_encoding) as lf:
for line in lf:
num_lines += 1
pdf_queque.put(line)
print('waiting jobs to finish')
pdf_queque.join()
if thread_end_func is not None:
for to in thread_objs:
if to is not None:
thread_end_func(to)
print('{0} lines {1}'.format(num_lines, proc_desc))
if callback_func is not None:
callback_func(*tuple(args))
def read_text_file(file_path, encoding='utf-8'):
lines = []
with codecs.open(file_path, encoding=encoding) as rf:
lines += rf.readlines()
return [l.strip() for l in lines]
def read_text_file_as_string(file_path):
s = None
with codecs.open(file_path) as rf:
s = rf.read()
return s
def main():
pass
if __name__ == "__main__":
main()