-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '0.4' of git+ssh://github.com/EOxServer/eoxserver into 0.4
- Loading branch information
Showing
17 changed files
with
303 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
#------------------------------------------------------------------------------- | ||
# $Id$ | ||
# | ||
# Project: EOxServer <http://eoxserver.org> | ||
# Authors: Fabian Schindler <[email protected]> | ||
# | ||
#------------------------------------------------------------------------------- | ||
# Copyright (C) 2014 EOX IT Services GmbH | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies of this Software or works derived from this Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
#------------------------------------------------------------------------------- | ||
|
||
import time | ||
import logging | ||
|
||
|
||
_logger = logging.getLogger(__name__) | ||
|
||
|
||
class DurationMeasurement(object): | ||
def __init__(self, name, logger, level): | ||
self.name = name | ||
self.logger = logger | ||
self.level = level | ||
self.start = None | ||
self.end = None | ||
|
||
def __enter__(self): | ||
self.start = time.time() | ||
return self | ||
|
||
def __exit__(self, *args, **kwargs): | ||
self.end = time.time() | ||
msg = "'%s' took %f seconds." % (self.name, self.duration) | ||
self.logger.log(self.level, msg) | ||
|
||
@property | ||
def duration(self): | ||
if self.start is not None and self.end is not None: | ||
return self.end - self.start | ||
return None | ||
|
||
|
||
def log_duration(name, logger=None, level=logging.DEBUG): | ||
""" Convenience function to log the duration of a specific event. | ||
:param name: The name of the event. | ||
:param logger: The logger to use. | ||
:param level: The log level to log the final message to. | ||
""" | ||
|
||
logger = logger or _logger | ||
return DurationMeasurement(name, logger, level) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.