-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfiles.py
127 lines (100 loc) · 4.13 KB
/
files.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
# Copyright © 2018 Stanislav Hnatiuk. All rights reserved.
#!/usr/bin/env python3
import struct
import datetime
from abc import ABCMeta
from abc import abstractmethod
class BasicOperations(metaclass=ABCMeta):
'''Базовый абстрактный класс с базовыми операциями.'''
@abstractmethod
def __init__(self):
self._data = []
def __repr__(self):
return ', '.join(map(str, self._data))
def __str__(self):
return str(self._data)
def __getitem__(self, index):
return self._data[index]
def __setitem__(self, index, value):
self._data[index] = value
def __len__(self):
return len(self._data)
class NestedData(BasicOperations):
'''Класс для хранения вложенных данных.'''
def __init__(self, number):
self._data = [0 for x in range(number)]
class BaseFile(BasicOperations):
'''Базовый класс файла.'''
def __init__(self, file_name):
self.path = ''
self.file_name = file_name
try:
self.date = datetime.datetime.strptime(self.file_name, '%d%m%y.%H%M')
except ValueError:
self.date = 'unknown'
def write(self):
'''Записать файл.'''
with open('{}{}'.format(self.path, self.file_name), 'wt') as file:
for item in self._data:
file.write(item.__repr__())
file.write('\n')
def print(self):
'''Вывести данные в консоль.'''
for i in range(680):
print(i + 1, end='\t')
print(self._data[i])
class SFile(BaseFile):
'''Класс для работы с S-файлами (исходные данные).'''
def __init__(self, file_name):
super().__init__(file_name)
self.path = 'data/'
# 19 точек АКФ для 680 высот.
self._data = [NestedData(19) for _ in range(680)]
def encode(self):
'''Закодировать данные. Возвращает обьект bytes.'''
temp = bytearray([0 for x in range(12920)])
for i, item in enumerate(self._data[0]):
struct.pack_into('>i', temp, i * 4, item[0])
return bytes(temp)
@staticmethod
def decode(arr):
'''Раскодировать данные. Возвращает список значений.'''
temp = [0 for _ in range(0, len(arr), 4)]
for i in range(len(temp)):
temp[i] = struct.unpack_from('<i', arr, i * 4)[0]
return temp
def read(self):
'''Считать файл.'''
with open('{}{}'.format(self.path, self.file_name), 'rb') as file:
arr = self.decode(file.read())
for i in range(680):
for j in range(19):
self._data[i][j] = arr[i * 19 + j]
class FFile(BaseFile):
'''Класс для работы с F-файлами (данные фильтрации).'''
def __init__(self, file_name):
super().__init__(file_name)
self.path = 'filter/'
# 680 высотных значений.
self._data = [0 for _ in range(680)]
def read(self):
'''Считать данные.'''
with open('{}{}'.format(self.path, self.file_name), 'rt') as file:
arr = file.read().split()
for i in range(680):
self._data[i] = int(arr[i])
class AFile(BaseFile):
'''Класс для работы с A-файлами (данные анализа).'''
def __init__(self, file_name):
self.file_name = file_name
self.date = file_name
self.path = 'analysis/'
# 680 высотных значений для 1440 минут в сутках.
self._data = [NestedData(680) for _ in range(1440)]
def read(self):
'''Считать данные.'''
with open('{}{}'.format(self.path, self.file_name), 'rt') as file:
arr = file.read().split()
for i in range(1440):
for j in range(680):
self._data[i][j] = int(arr[i * 680 + j].rstrip(','))