-
Notifications
You must be signed in to change notification settings - Fork 0
/
timerfile.py
47 lines (40 loc) · 1.35 KB
/
timerfile.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
# -*- coding: utf-8 -*-
import os
import pickle
import sys
from pathlib import Path
class TimerFile(object):
"""タイマーリストのファイル処理"""
def __init__(self):
self.timerfile = Path(sys.argv[0]).resolve().parent / "timerlist"
self._load()
def _load(self):
try:
with open(self.timerfile, "rb") as f:
self.data = pickle.load(f)
self.mtime = os.path.getmtime(self.timerfile)
except (EOFError, KeyError):
# EOFError ファイルがない場合
# KeyError YAML のデータが残っていた場合
self.data = dict()
except (IOError) as e:
self.data = dict()
if e.errno != 2: # not exists
raise
def save(self, data):
with open(self.timerfile, "wb") as f:
pickle.dump(data, f)
self.mtime = os.path.getmtime(self.timerfile)
def get_list(self):
if self._ischanged():
self._load()
return self.data
def _ischanged(self):
try:
if self.mtime < os.path.getmtime(self.timerfile):
return True
else:
return False
except Exception:
# ファイルが削除されてしまっても、とりあえずエラーとならないように
return False