-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
# time python3 calculateAverage.py | ||
import os | ||
import multiprocessing as mp | ||
|
||
|
||
def get_file_chunks( | ||
file_name: str, | ||
max_cpu: int = 8, | ||
) -> list: | ||
"""Split flie into chunks""" | ||
cpu_count = min(max_cpu, mp.cpu_count()) | ||
|
||
file_size = os.path.getsize(file_name) | ||
chunk_size = file_size // cpu_count | ||
|
||
start_end = list() | ||
with open(file_name, "r+b") as f: | ||
|
||
def is_new_line(position): | ||
if position == 0: | ||
return True | ||
else: | ||
f.seek(position - 1) | ||
return f.read(1) == b"\n" | ||
|
||
def next_line(position): | ||
f.seek(position) | ||
f.readline() | ||
return f.tell() | ||
|
||
chunk_start = 0 | ||
while chunk_start < file_size: | ||
chunk_end = min(file_size, chunk_start + chunk_size) | ||
|
||
while not is_new_line(chunk_end): | ||
chunk_end -= 1 | ||
|
||
if chunk_start == chunk_end: | ||
chunk_end = next_line(chunk_end) | ||
|
||
start_end.append( | ||
( | ||
file_name, | ||
chunk_start, | ||
chunk_end, | ||
) | ||
) | ||
|
||
chunk_start = chunk_end | ||
|
||
return ( | ||
cpu_count, | ||
start_end, | ||
) | ||
|
||
|
||
def _process_file_chunk( | ||
file_name: str, | ||
chunk_start: int, | ||
chunk_end: int, | ||
) -> dict: | ||
"""Process each file chunk in a different process""" | ||
result = dict() | ||
blocksize = 1024 * 1024 | ||
fh = open(file_name, "rb") | ||
byte_count = chunk_end - chunk_start | ||
fh.seek(chunk_start) | ||
tail = b"" | ||
|
||
location = None | ||
|
||
while byte_count: | ||
if blocksize > byte_count: | ||
blocksize = byte_count | ||
byte_count = byte_count - blocksize | ||
|
||
data = tail + fh.read(blocksize) | ||
|
||
index = 0 | ||
while data: | ||
if location is None: | ||
try: | ||
semicolon = data.index(b";", index) | ||
except ValueError: | ||
tail = data[index:] | ||
break | ||
|
||
location = data[index:semicolon] | ||
index = semicolon + 1 | ||
|
||
try: | ||
newline = data.index(b"\n", index) | ||
except ValueError: | ||
tail = data[index:] | ||
break | ||
|
||
value = float(data[index:newline]) | ||
index = newline + 1 | ||
|
||
if location not in result: | ||
result[location] = [ | ||
value, | ||
value, | ||
value, | ||
1, | ||
] # min, max, sum, count | ||
else: | ||
if value < result[location][0]: | ||
result[location][0] = value | ||
if value > result[location][1]: | ||
result[location][1] = value | ||
result[location][2] += value | ||
result[location][3] += 1 | ||
|
||
location = None | ||
|
||
return result | ||
|
||
|
||
def process_file( | ||
cpu_count: int, | ||
start_end: list, | ||
) -> dict: | ||
"""Process data file""" | ||
with mp.Pool(cpu_count) as p: | ||
# Run chunks in parallel | ||
chunk_results = p.starmap( | ||
_process_file_chunk, | ||
start_end, | ||
) | ||
|
||
# Combine all results from all chunks | ||
result = dict() | ||
for chunk_result in chunk_results: | ||
for location, measurements in chunk_result.items(): | ||
if location not in result: | ||
result[location] = measurements | ||
else: | ||
if measurements[0] < result[location][0]: | ||
result[location][0] = measurements[0] | ||
if measurements[1] > result[location][1]: | ||
result[location][1] = measurements[1] | ||
result[location][2] += measurements[2] | ||
result[location][3] += measurements[3] | ||
|
||
# Print final results | ||
results_calculated = dict() | ||
for location, measurements in sorted(result.items()): | ||
results_calculated[ | ||
location.decode("utf-8") | ||
] = f"{measurements[0]:.1f}/{(measurements[2] / measurements[3]) if measurements[3] !=0 else 0:.1f}/{measurements[1]:.1f}" | ||
return results_calculated | ||
|
||
|
||
if __name__ == "__main__": | ||
cpu_count, *start_end = get_file_chunks("measurements.txt") | ||
print(process_file(cpu_count, start_end[0])) |