view pkg/imports/fm_boyspp.go @ 4945:97533bbfaa2d fairway-marks-import

Add missing fairway mark types to layer group
author Tom Gottfried <tom@intevation.de>
date Tue, 18 Feb 2020 13:00:25 +0100
parents b3b2ba09a450
children
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2020 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Tom Gottfried <tom.gottfried@intevation.de>

package imports

import (
	"context"
	"database/sql"

	"gemma.intevation.de/gemma/pkg/pgxutils"
)

// Boyspp is an import job to import
// fairway marks of type BOYSPP in form of point geometries
// and attribute data from a WFS service.
type Boyspp struct {
	FairwayMarks
}

// Description gives a short info about relevant facts of this import.
func (boyspp *Boyspp) Description() (string, error) {
	return boyspp.URL + "|" + boyspp.FeatureType, nil
}

// BOYSPPJobKind is the import queue type identifier.
const BOYSPPJobKind JobKind = "fm_boyspp"

type boysppJobCreator struct{}

func init() {
	RegisterJobCreator(BOYSPPJobKind, boysppJobCreator{})
}

func (boysppJobCreator) Description() string { return "fairway marks boyspp" }

func (boysppJobCreator) AutoAccept() bool { return true }

func (boysppJobCreator) Create() Job { return new(Boyspp) }

func (boysppJobCreator) Depends() [2][]string {
	return [2][]string{
		{"fairway_marks_boyspp"},
		{},
	}
}

// StageDone is a NOP for fairway marks imports.
func (boysppJobCreator) StageDone(context.Context, *sql.Tx, int64) error {
	return nil
}

// CleanUp for fairway marks imports is a NOP.
func (*Boyspp) CleanUp() error { return nil }

type boysppProperties struct {
	fairwayMarksProperties
	Colour *string `json:"hydro_colour"`
	Colpat *string `json:"hydro_colpat"`
	Conrad *int    `json:"hydro_conrad"`
	Marsys *int64  `json:"hydro_marsys"`
	Boyshp *int    `json:"hydro_boyshp"`
	Catspm *string `json:"hydro_catspm"`
}

type boysppFeaturetype struct {
	geom  pointSlice
	props *boysppProperties
}

// Do executes the actual import.
func (fm *Boyspp) Do(
	ctx context.Context,
	importID int64,
	conn *sql.Conn,
	feedback Feedback,
) (interface{}, error) {

	err := getFMFeatures(
		ctx,
		conn,
		feedback,
		fm.FairwayMarks,
		func() interface{} { return new(boysppProperties) },
		func(p pointSlice, props interface{}) interface{} {
			return &boysppFeaturetype{p, props.(*boysppProperties)}
		},
		func(
			tx *sql.Tx, epsg int, fms []interface{},
		) (outsideOrDup int, features int, err error) {

			feedback.Info("Store fairway marks of type BOYSPP")

			insertStmt, err := tx.PrepareContext(
				ctx,
				getFMInsertSQL("boyspp",
					"colour", "colpat", "conrad",
					"marsys", "boyshp", "catspm"),
			)
			if err != nil {
				return
			}
			defer insertStmt.Close()

			savepoint := Savepoint(ctx, tx, "feature")

			for _, fm := range fms {

				f := fm.(*boysppFeaturetype)

				var fmid int64
				err := savepoint(func() error {
					err := insertStmt.QueryRowContext(
						ctx,
						f.geom.asWKB(),
						epsg,
						f.props.Datsta,
						f.props.Datend,
						f.props.Persta,
						f.props.Perend,
						f.props.Objnam,
						f.props.Nobjnm,
						f.props.Inform,
						f.props.Ninfom,
						f.props.Scamin,
						f.props.Picrep,
						f.props.Txtdsc,
						f.props.Sordat,
						f.props.Sorind,
						f.props.Colour,
						f.props.Colpat,
						f.props.Conrad,
						f.props.Marsys,
						f.props.Boyshp,
						f.props.Catspm,
					).Scan(&fmid)
					return err
				})
				switch {
				case err == sql.ErrNoRows:
					outsideOrDup++
					// ignore -> filtered by responsibility_areas
				case err != nil:
					feedback.Error(pgxutils.ReadableError{Err: err}.Error())
				default:
					features++
				}
			}
			return
		})

	return nil, err
}