kopia lustrzana https://github.com/dgtlmoon/changedetection.io
Use a single thread for writing the sync json
rodzic
a6c864ecfd
commit
43c7ccb3fe
|
@ -208,8 +208,6 @@ def api_update():
|
||||||
'tag': tag,
|
'tag': tag,
|
||||||
'headers':extra_headers})
|
'headers':extra_headers})
|
||||||
|
|
||||||
#@todo switch to prop/attr/observer
|
|
||||||
datastore.sync_to_json()
|
|
||||||
|
|
||||||
messages.append({'class': 'ok', 'message': 'Updated watch.'})
|
messages.append({'class': 'ok', 'message': 'Updated watch.'})
|
||||||
|
|
||||||
|
@ -262,27 +260,40 @@ def ticker_thread_check_time_launch_checks():
|
||||||
launch_checks()
|
launch_checks()
|
||||||
time.sleep(60)
|
time.sleep(60)
|
||||||
|
|
||||||
|
# Thread runner, this helps with thread/write issues when there are many operations that want to update the JSON
|
||||||
|
# by just running periodically in one thread.
|
||||||
|
def save_datastore():
|
||||||
|
while True:
|
||||||
|
if datastore.needs_write:
|
||||||
|
datastore.sync_to_json()
|
||||||
|
time.sleep(5)
|
||||||
|
|
||||||
def main(argv):
|
def main(argv):
|
||||||
ssl_mode = False
|
ssl_mode = False
|
||||||
port = 5000
|
port = 5000
|
||||||
|
|
||||||
# @todo handle ctrl break
|
|
||||||
ticker_thread = threading.Thread(target=ticker_thread_check_time_launch_checks).start()
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
opts, args = getopt.getopt(argv, "sp:")
|
opts, args = getopt.getopt(argv, "sp:", "purge")
|
||||||
except getopt.GetoptError:
|
except getopt.GetoptError:
|
||||||
print('backend.py -s SSL enable -p [port]')
|
print('backend.py -s SSL enable -p [port]')
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
for opt, arg in opts:
|
for opt, arg in opts:
|
||||||
|
if opt == '--purge':
|
||||||
|
# Remove history, the actual files you need to delete manually.
|
||||||
|
for uuid, watch in datastore.data['watching'].items():
|
||||||
|
watch.update({'history': {}, 'last_checked': 0, 'last_changed': 0, 'previous_md5': None})
|
||||||
|
|
||||||
if opt == '-s':
|
if opt == '-s':
|
||||||
ssl_mode = True
|
ssl_mode = True
|
||||||
|
|
||||||
if opt == '-p':
|
if opt == '-p':
|
||||||
port = arg
|
port = arg
|
||||||
|
|
||||||
|
# @todo handle ctrl break
|
||||||
|
ticker_thread = threading.Thread(target=ticker_thread_check_time_launch_checks).start()
|
||||||
|
save_data_thread = threading.Thread(target=save_datastore).start()
|
||||||
|
|
||||||
# @todo finalise SSL config, but this should get you in the right direction if you need it.
|
# @todo finalise SSL config, but this should get you in the right direction if you need it.
|
||||||
if ssl_mode:
|
if ssl_mode:
|
||||||
eventlet.wsgi.server(eventlet.wrap_ssl(eventlet.listen(('', port)),
|
eventlet.wsgi.server(eventlet.wrap_ssl(eventlet.listen(('', port)),
|
||||||
|
|
|
@ -54,7 +54,7 @@ class perform_site_check(Thread):
|
||||||
request_headers.update(extra_headers)
|
request_headers.update(extra_headers)
|
||||||
|
|
||||||
print("Checking", self.url)
|
print("Checking", self.url)
|
||||||
print(request_headers)
|
#print(request_headers)
|
||||||
|
|
||||||
self.ensure_output_path()
|
self.ensure_output_path()
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,9 @@ import validators
|
||||||
class ChangeDetectionStore:
|
class ChangeDetectionStore:
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.data = {
|
self.needs_write = False
|
||||||
|
|
||||||
|
self.__data = {
|
||||||
'watching': {},
|
'watching': {},
|
||||||
'settings': {
|
'settings': {
|
||||||
'headers': {
|
'headers': {
|
||||||
|
@ -33,6 +35,7 @@ class ChangeDetectionStore:
|
||||||
'last_checked': 0,
|
'last_checked': 0,
|
||||||
'last_changed': 0,
|
'last_changed': 0,
|
||||||
'title': None,
|
'title': None,
|
||||||
|
'previous_md5': None,
|
||||||
'uuid': str(uuid_builder.uuid4()),
|
'uuid': str(uuid_builder.uuid4()),
|
||||||
'headers' : {}, # Extra headers to send
|
'headers' : {}, # Extra headers to send
|
||||||
'history' : {} # Dict of timestamp and output stripped filename
|
'history' : {} # Dict of timestamp and output stripped filename
|
||||||
|
@ -43,7 +46,7 @@ class ChangeDetectionStore:
|
||||||
with open('/datastore/url-watches.json') as json_file:
|
with open('/datastore/url-watches.json') as json_file:
|
||||||
from_disk = json.load(json_file)
|
from_disk = json.load(json_file)
|
||||||
|
|
||||||
self.data.update(from_disk)
|
self.__data.update(from_disk)
|
||||||
|
|
||||||
# Reinitialise each `watching` with our generic_definition in the case that we add a new var in the future.
|
# Reinitialise each `watching` with our generic_definition in the case that we add a new var in the future.
|
||||||
# @todo pretty sure theres a python we todo this with an abstracted(?) object!
|
# @todo pretty sure theres a python we todo this with an abstracted(?) object!
|
||||||
|
@ -51,7 +54,7 @@ class ChangeDetectionStore:
|
||||||
for uuid, watch in self.data['watching'].items():
|
for uuid, watch in self.data['watching'].items():
|
||||||
_blank = self.generic_definition.copy()
|
_blank = self.generic_definition.copy()
|
||||||
_blank.update(watch)
|
_blank.update(watch)
|
||||||
self.data['watching'].update({uuid: _blank})
|
self.__data['watching'].update({uuid: _blank})
|
||||||
print("Watching:", uuid, _blank['url'])
|
print("Watching:", uuid, _blank['url'])
|
||||||
|
|
||||||
# First time ran, doesnt exist.
|
# First time ran, doesnt exist.
|
||||||
|
@ -61,10 +64,17 @@ class ChangeDetectionStore:
|
||||||
self.add_watch(url='https://changedetection.io', tag='general')
|
self.add_watch(url='https://changedetection.io', tag='general')
|
||||||
self.add_watch(url='http://www.quotationspage.com/random.php', tag='test')
|
self.add_watch(url='http://www.quotationspage.com/random.php', tag='test')
|
||||||
|
|
||||||
|
|
||||||
|
# self.entryVariable.get()
|
||||||
def update_watch(self, uuid, val, var):
|
def update_watch(self, uuid, val, var):
|
||||||
|
|
||||||
self.data['watching'][uuid].update({val: var})
|
self.__data['watching'][uuid].update({val: var})
|
||||||
self.sync_to_json()
|
self.needs_write = True
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def data(self):
|
||||||
|
return self.__data
|
||||||
|
|
||||||
def get_all_tags(self):
|
def get_all_tags(self):
|
||||||
tags=[]
|
tags=[]
|
||||||
|
@ -81,8 +91,8 @@ class ChangeDetectionStore:
|
||||||
|
|
||||||
def delete(self, uuid):
|
def delete(self, uuid):
|
||||||
# Probably their should be dict...
|
# Probably their should be dict...
|
||||||
del(self.data['watching'][uuid])
|
del(self.__data['watching'][uuid])
|
||||||
self.sync_to_json()
|
self.needs_write = True
|
||||||
|
|
||||||
|
|
||||||
def url_exists(self, url):
|
def url_exists(self, url):
|
||||||
|
@ -114,10 +124,11 @@ class ChangeDetectionStore:
|
||||||
|
|
||||||
self.data['watching'].update({_blank['uuid']: _blank})
|
self.data['watching'].update({_blank['uuid']: _blank})
|
||||||
|
|
||||||
self.sync_to_json()
|
|
||||||
|
|
||||||
def sync_to_json(self):
|
def sync_to_json(self):
|
||||||
|
print ("Saving index....")
|
||||||
with open('/datastore/url-watches.json', 'w') as json_file:
|
with open('/datastore/url-watches.json', 'w') as json_file:
|
||||||
json.dump(self.data, json_file, indent=4)
|
json.dump(self.data, json_file, indent=4)
|
||||||
|
self.needs_write = False
|
||||||
|
|
||||||
# body of the constructor
|
# body of the constructor
|
||||||
|
|
Ładowanie…
Reference in New Issue