aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-06-10 07:29:33 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-06-10 07:29:33 +0200
commit20b58aae49531a8f91504b9640dcc03c02857608 (patch)
tree438b70c41197a81473bd50a8c1fe8b00abafeae7 /source
parentMinor changes to the tempate of the /unread page. (diff)
downloadnewspipe-20b58aae49531a8f91504b9640dcc03c02857608.tar.gz
newspipe-20b58aae49531a8f91504b9640dcc03c02857608.tar.bz2
newspipe-20b58aae49531a8f91504b9640dcc03c02857608.zip
Now using 'with' statement with a context manager in order to catch i/o exceptions when opening the list of feeds.
Diffstat (limited to 'source')
-rwxr-xr-xsource/feedgetter.py47
1 files changed, 31 insertions, 16 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index 6adf013d..849aa8a6 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -30,8 +30,8 @@ import hashlib
import threading
import feedparser
from bs4 import BeautifulSoup
-
from datetime import datetime
+from contextlib import contextmanager
import conf
import utils
@@ -39,6 +39,18 @@ import mongodb
list_of_threads = []
+@contextmanager
+def opened_w_error(filename, mode="r"):
+ try:
+ f = open(filename, mode)
+ except IOError as err:
+ yield None, err
+ else:
+ try:
+ yield f, None
+ finally:
+ f.close()
+
class FeedGetter(object):
"""
This class is in charge of retrieving feeds listed in ./var/feed.lst.
@@ -60,21 +72,24 @@ class FeedGetter(object):
if feed_url != None:
self.process(feed_url, feed_original)
else:
- with open(conf.FEED_LIST) as f:
- for a_feed in f:
- # test if the URL is well formed
- for url_regexp in utils.url_finders:
- if url_regexp.match(a_feed):
- the_good_url = url_regexp.match(a_feed).group(0).replace("\n", "")
- try:
- # launch a new thread for the RSS feed
- thread = threading.Thread(None, self.process, \
- None, (the_good_url,))
- thread.start()
- list_of_threads.append(thread)
- except:
- pass
- break
+ with opened_w_error(conf.FEED_LIST) as (f, err):
+ if err:
+ print("List of feeds not found.")
+ else:
+ for a_feed in f:
+ # test if the URL is well formed
+ for url_regexp in utils.url_finders:
+ if url_regexp.match(a_feed):
+ the_good_url = url_regexp.match(a_feed).group(0).replace("\n", "")
+ try:
+ # launch a new thread for the RSS feed
+ thread = threading.Thread(None, self.process, \
+ None, (the_good_url,))
+ thread.start()
+ list_of_threads.append(thread)
+ except:
+ pass
+ break
# wait for all threads are done
for th in list_of_threads:
bgstack15