ExtensionCrawler/ExtensionCrawler/util.py

54 lines
1.9 KiB
Python
Raw Normal View History

2017-09-01 13:12:05 +00:00
#!/usr/bin/env python3.5
2017-01-28 12:52:18 +00:00
#
# Copyright (C) 2016,2017 The University of Sheffield, UK
#
2017-01-28 12:52:18 +00:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
2017-07-29 10:32:06 +00:00
""" Various utility methods."""
2017-01-28 12:52:18 +00:00
2017-01-28 12:56:29 +00:00
from time import sleep
2017-07-29 10:32:06 +00:00
from random import random
2017-08-30 14:12:54 +00:00
import traceback
import logging
2017-01-28 13:15:05 +00:00
def google_dos_protection(maxrange=0.3):
"""Wait a random number of seconds (between 0.5 to 0.5+maxrange)
to avoid Google's bot detection"""
sleep(0.5+(random()*maxrange))
2017-01-28 13:15:05 +00:00
2017-07-29 10:32:06 +00:00
def value_of(value, default):
"""Get value or default value if None."""
2017-01-28 12:56:29 +00:00
if value is not None and value is not "":
return value
else:
return default
2017-08-30 14:12:54 +00:00
def log_debug(msg, indent_level=0, extid="-" * 32):
logging.debug(str(extid) + " " + 4 * indent_level * " " + str(msg))
2017-08-30 14:12:54 +00:00
def log_info(msg, indent_level=0, extid="-" * 32):
logging.info(str(extid) + " " + 4 * indent_level * " " + str(msg))
2017-08-30 14:12:54 +00:00
def log_warning(msg, indent_level=0, extid="-" * 32):
logging.warning(str(extid) + " " + 4 * indent_level * " " + str(msg))
2017-08-30 14:12:54 +00:00
def log_error(msg, indent_level=0, extid="-" * 32):
logging.error(str(extid) + " " + 4 * indent_level * " " + str(msg))
2017-08-30 14:12:54 +00:00
def log_exception(msg, indent_level=0, extid="-" * 32):
logging.error(str(extid) + " " + 4 * indent_level * " " + str(msg))
2017-08-30 14:12:54 +00:00
for line in traceback.format_exc().splitlines():
logging.error(str(extid) + " " + 4 * indent_level * " " + line)