Files
pygeoapi/pygeoapi/process/manager/dummy.py
T
Tom Kralidis e2e2b7d671 improve MIME type handling for raw payload responses (#662)
* improve MIME type handling for raw payload responses

* fix ref
2021-03-18 06:25:10 -04:00

98 lines
3.1 KiB
Python

# =================================================================
#
# Authors: Tom Kralidis <tomkralidis@gmail.com>
#
# Copyright (c) 2020 Tom Kralidis
#
# 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 or substantial portions of the 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 logging
from pygeoapi.process.manager.base import BaseManager
from pygeoapi.util import JobStatus
LOGGER = logging.getLogger(__name__)
class DummyManager(BaseManager):
"""generic Manager ABC"""
def __init__(self, manager_def):
"""
Initialize object
:param manager_def: manager definition
:returns: `pygeoapi.process.manager.base.BaseManager`
"""
super().__init__(manager_def)
def get_jobs(self, process_id=None, status=None):
"""
Get process jobs, optionally filtered by status
:param process_id: process identifier
:param status: job status (accepted, running, successful,
failed, results) (default is all)
:returns: `list` of jobs (identifier, status, process identifier)
"""
return []
def execute_process(self, p, job_id, data_dict, is_async=False):
"""
Default process execution handler
:param p: `pygeoapi.process` object
:param job_id: job identifier
:param data_dict: `dict` of data parameters
:param is_async: `bool` specifying sync or async processing.
:returns: tuple of MIME type, response payload and status
"""
jfmt = 'application/json'
if is_async:
LOGGER.debug('Dummy manager does not support asynchronous')
LOGGER.debug('Forcing synchronous execution')
try:
jfmt, outputs = p.execute(data_dict)
current_status = JobStatus.successful
except Exception as err:
outputs = {
'code': 'InvalidParameterValue',
'description': 'Error updating job'
}
current_status = JobStatus.failed
LOGGER.error(err)
return jfmt, outputs, current_status
def __repr__(self):
return '<DummyManager> {}'.format(self.name)