예제 #1
0
파일: driver.py 프로젝트: makeling/antares
def persist_bundle(bundle, keep=False):
    '''
    This function persist a bundle in both the database and the file system. It
    is responsibility of the bundle to provide information about which files
    should be persisted in the file system, and to build the database object
    that will be inserted in the database. The database is configured using the
    session maker in the connection module.
    In order to achieve its purpose, this method creates a list of the actions
    to perform. Once the list is fully populated, it calls the act method for
    each element in the list. If any of the actions in the list fails, a
    rollback is performed in all of them, the result is the same state as before
    the method was called.
    '''
    destination = bundle.get_output_directory()
    create_directory_path(destination)
    actions = []
    session = SESSION_MAKER()
    try:
        if not session.query(Product).filter(
                Product.product_path ==
                bundle.get_database_object().product_path).count():
            if not keep:
                LOGGER.debug(
                    'This process will move the files to a new destination.')
                for file_name in bundle.get_files():
                    actions.append(
                        filesystem.InsertAction(file_name, destination))
            else:
                LOGGER.debug(
                    'This process will keep the original path for the files.')
            actions.append(
                database.InsertAction(bundle.get_database_object(), session))
            import madmex.mapper.bundle.rapideye as re
            if isinstance(bundle, re.Bundle):
                actions.append(
                    database.InsertAction(bundle.get_features_object(),
                                          session))

            def do_result(action):
                '''
                Lambda function to perform an action and return the result.
                '''
                action.act()
                return action.success

            if not reduce(lambda x, y: x and y, map(do_result, actions)):
                LOGGER.debug('Some action went wrong at persistence process, '
                             'rollback will be performed.')
                for action in actions:
                    action.undo()
            else:
                LOGGER.info('Ingestion was successful.')
        else:
            LOGGER.info(
                'An instance of this object already exist in the database.')
    except Exception:
        LOGGER.error('Not expected error at persistence.driver')
        raise
    finally:
        session.close()
예제 #2
0
def get_sensor_object(sensor_name):
    session = SESSION_MAKER()
    try:
        sensor_object = session.query(Sensor).filter(Sensor.name == sensor_name).first()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return sensor_object
예제 #3
0
def get_host_from_command(command):
    session = SESSION_MAKER()
    try:
        result_set = session.query(Command).join(Host).filter(Command.command == command).all()
        hosts = [result.host for result in result_set]
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return hosts
예제 #4
0
파일: driver.py 프로젝트: makeling/antares
def get_sensor_object(sensor_name):
    session = SESSION_MAKER()
    try:
        sensor_object = session.query(Sensor).filter(
            Sensor.name == sensor_name).first()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return sensor_object
예제 #5
0
파일: driver.py 프로젝트: makeling/antares
def get_host_from_command(command):
    session = SESSION_MAKER()
    try:
        result_set = session.query(Command).join(Host).filter(
            Command.command == command).all()
        hosts = [result.host for result in result_set]
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return hosts
예제 #6
0
파일: driver.py 프로젝트: makeling/antares
def get_pair_quality(mapgrid_target):

    session = SESSION_MAKER()
    query = 'select product.pk_id from product, information where information.pk_id = product.information_id and information.grid_id = \'%s\'' % mapgrid_target
    try:
        result = session.execute(query)
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return result
예제 #7
0
def get_type_object(type_name):
    """
    This method retrieves the Type object from the database.
    """
    session = SESSION_MAKER()
    try:
        type_object = session.query(ProductType).filter(ProductType.short_name == type_name).first()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return type_object
예제 #8
0
def query_host_configurations():
    session = SESSION_MAKER()
    try:
        result_set = session.query(Host.pk_id, Host.hostname, Host.configuration).distinct(Host.configuration).all()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return [
        {"pk_id": result.pk_id, "hostname": result.hostname, "configuration": result.configuration}
        for result in result_set
    ]
예제 #9
0
파일: driver.py 프로젝트: makeling/antares
def get_type_object(type_name):
    '''
    This method retrieves the Type object from the database.
    '''
    session = SESSION_MAKER()
    try:
        type_object = session.query(ProductType).filter(
            ProductType.short_name == type_name).first()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return type_object
예제 #10
0
def get_product_type_object(product_type):
    """
    This method will query the database, and return the object representing the product 
    type short name given. In case no object with that name None is returned.
    """
    session = SESSION_MAKER()
    try:
        product_type_object = session.query(ProductType).filter(ProductType.short_name == product_type).first()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return product_type_object
예제 #11
0
def get_satellite_object(satellite_name):
    """
    Will query the database looking for a satellite object with the name given, in case 
    the 
    """
    session = SESSION_MAKER()
    try:
        satellite_object = session.query(Satellite).filter(Satellite.name == satellite_name).first()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
    return satellite_object
예제 #12
0
def persist_bundle(bundle, keep=False):
    """
    This function persist a bundle in both the database and the file system. It
    is responsibility of the bundle to provide information about which files
    should be persisted in the file system, and to build the database object
    that will be inserted in the database. The database is configured using the
    session maker in the connection module.
    In order to achieve its purpose, this method creates a list of the actions
    to perform. Once the list is fully populated, it calls the act method for
    each element in the list. If any of the actions in the list fails, a
    rollback is performed in all of them, the result is the same state as before
    the method was called.
    """
    destination = bundle.get_output_directory()
    create_directory_path(destination)
    actions = []
    session = SESSION_MAKER()
    try:
        if not session.query(Product).filter(Product.product_path == bundle.get_database_object().product_path).count():
            if not keep:
                LOGGER.debug("This process will move the files to a new destination.")
                for file_name in bundle.get_files():
                    actions.append(filesystem.InsertAction(file_name, destination))
            else:
                LOGGER.debug("This process will keep the original path for the files.")
            actions.append(database.InsertAction(bundle.get_database_object(), session))
            actions.append(database.InsertAction(bundle.get_information_object(), session))
            actions.append(database.InsertAction(bundle.get_features_object(), session))

            def do_result(action):
                """
                Lambda function to perform an action and return the result.
                """
                action.act()
                return action.success

            if not reduce(lambda x, y: x and y, map(do_result, actions)):
                LOGGER.debug("Some action went wrong at persistence process, " "rollback will be performed.")
                for action in actions:
                    action.undo()
            else:
                LOGGER.info("Ingestion was successful.")
        else:
            LOGGER.info("An instance of this object already exist in the database.")
    except Exception:
        LOGGER.error("Not expected error at persistence.driver")
        raise
    finally:
        session.close()
예제 #13
0
파일: driver.py 프로젝트: makeling/antares
def get_product_type_object(product_type):
    '''
    This method will query the database, and return the object representing the product 
    type short name given. In case no object with that name None is returned.
    '''
    session = SESSION_MAKER()
    try:
        product_type_object = session.query(ProductType).filter(
            ProductType.short_name == product_type).first()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return product_type_object
예제 #14
0
파일: driver.py 프로젝트: makeling/antares
def get_satellite_object(satellite_name):
    '''
    Will query the database looking for a satellite object with the name given, in case 
    the 
    '''
    session = SESSION_MAKER()
    try:
        satellite_object = session.query(Satellite).filter(
            Satellite.name == satellite_name).first()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return satellite_object
예제 #15
0
파일: driver.py 프로젝트: makeling/antares
def acquisitions_by_mapgrid_and_date(date, mapgrid_target, day_buffer):
    from sqlalchemy import Integer, func, Date
    from sqlalchemy.sql.expression import cast
    session = SESSION_MAKER()
    images_paths = session.query(
        RawProduct.product_path, RapidEyeFootPrintsMexicoOld.code,
        RapidEyeFootPrintsMexicoOld.mapgrid2).distinct().join(
            RawProduct.information).filter(
                RawProduct.satellite_id == 1,
                RapidEyeFootPrintsMexicoOld.mapgrid2 == mapgrid_target,
                cast(RapidEyeFootPrintsMexicoOld.code,
                     Integer) == cast(Information.grid_id, Integer),
                func.abs(cast(RawProduct.acquisition_date, Date) - date) <
                day_buffer).all()
    #RawProduct.sensor_id
    return images_paths
예제 #16
0
파일: driver.py 프로젝트: makeling/antares
def query_host_configurations():
    session = SESSION_MAKER()
    try:
        result_set = session.query(Host.pk_id, Host.hostname,
                                   Host.configuration).distinct(
                                       Host.configuration).all()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
    return [{
        'pk_id': result.pk_id,
        'hostname': result.hostname,
        'configuration': result.configuration
    } for result in result_set]
예제 #17
0
파일: driver.py 프로젝트: makeling/antares
def persist_host(host):
    session = SESSION_MAKER()
    try:
        session.add(host)
        session.commit()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
예제 #18
0
def acquisitions_by_mapgrid_and_date(date, mapgrid_target, day_buffer):
    from sqlalchemy import Integer, func, Date
    from sqlalchemy.sql.expression import cast

    session = SESSION_MAKER()
    images_paths = (
        session.query(RawProduct.product_path, RapidEyeFootPrintsMexicoOld.code, RapidEyeFootPrintsMexicoOld.mapgrid2)
        .distinct()
        .join(RawProduct.information)
        .filter(
            RawProduct.satellite_id == 1,
            RapidEyeFootPrintsMexicoOld.mapgrid2 == mapgrid_target,
            cast(RapidEyeFootPrintsMexicoOld.code, Integer) == cast(Information.grid_id, Integer),
            func.abs(cast(RawProduct.acquisition_date, Date) - date) < day_buffer,
        )
        .all()
    )
    # RawProduct.sensor_id
    return images_paths
예제 #19
0
파일: driver.py 프로젝트: makeling/antares
def find_datasets(start_date, end_date, satellite_id, product_id, cloud_cover,
                  tile_id):
    '''
    Given the parameters of the function find_datasets perform a sqlalchemy orm-query:
    Get the rows in DB that fulfill the condition in the orm-query 
    '''
    session = SESSION_MAKER()
    images_references_paths = session.query(RawProduct.product_path).join(
        RawProduct.information).filter(
            tuple_(RawProduct.acquisition_date,
                   RawProduct.acquisition_date).op('overlaps')(tuple_(
                       start_date,
                       end_date)), RawProduct.product_type_id == product_id,
            RawProduct.satellite_id == satellite_id,
            Information.cloud_percentage <= cloud_cover,
            Information.grid_id == tile_id).all()

    # images_references_paths = session.query(RawProduct.path, Information.sensor).join(RawProduct.information).filter(tuple_(RawProduct.acquisition_date, RawProduct.acquisition_date).op('overlaps')(tuple_(start_date, end_date)) , RawProduct.product_type == product_id, Information.sensor == sensor_id, Information.cloud_percentage <= cloud_cover).all()
    session.close()
    return [tuples[0] for tuples in images_references_paths]
예제 #20
0
파일: driver.py 프로젝트: makeling/antares
def persist_quality(quality):
    '''
    Gets a Command object, and inserts it into the database.
    '''
    session = SESSION_MAKER()
    try:
        session.add(quality)
        session.commit()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
예제 #21
0
파일: driver.py 프로젝트: makeling/antares
def persist_features(rapideye_features):
    '''
    Expects a RapideyeFeatures object and commits it to the database.
    '''
    session = SESSION_MAKER()
    try:
        session.add(rapideye_features)
        session.commit()
    except Exception:
        LOGGER.error('Not expected error in host insertion.')
        raise
    finally:
        session.close()
예제 #22
0
def persist_host(host):
    session = SESSION_MAKER()
    try:
        session.add(host)
        session.commit()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
예제 #23
0
def persist_features(rapideye_features):
    """
    Expects a RapideyeFeatures object and commits it to the database.
    """
    session = SESSION_MAKER()
    try:
        session.add(rapideye_features)
        session.commit()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
예제 #24
0
def persist_command(command):
    """
    Gets a Command object, and inserts it into the database.
    """
    session = SESSION_MAKER()
    try:
        session.add(command)
        session.commit()
    except Exception:
        LOGGER.error("Not expected error in host insertion.")
        raise
    finally:
        session.close()
예제 #25
0
def find_datasets(start_date, end_date, satellite_id, product_id, cloud_cover, tile_id):
    """
    Given the parameters of the function find_datasets perform a sqlalchemy orm-query:
    Get the rows in DB that fulfill the condition in the orm-query 
    """
    session = SESSION_MAKER()
    images_references_paths = (
        session.query(RawProduct.product_path)
        .join(RawProduct.information)
        .filter(
            tuple_(RawProduct.acquisition_date, RawProduct.acquisition_date).op("overlaps")(
                tuple_(start_date, end_date)
            ),
            RawProduct.product_type_id == product_id,
            RawProduct.satellite_id == satellite_id,
            Information.cloud_percentage <= cloud_cover,
            Information.grid_id == tile_id,
        )
        .all()
    )

    # images_references_paths = session.query(RawProduct.path, Information.sensor).join(RawProduct.information).filter(tuple_(RawProduct.acquisition_date, RawProduct.acquisition_date).op('overlaps')(tuple_(start_date, end_date)) , RawProduct.product_type == product_id, Information.sensor == sensor_id, Information.cloud_percentage <= cloud_cover).all()
    session.close()
    return [tuples[0] for tuples in images_references_paths]
예제 #26
0
파일: driver.py 프로젝트: makeling/antares
def persist_catalog(scene):
    session = SESSION_MAKER()
    action = database.InsertAction(scene, session)
    action.act()