diff --git a/.gitignore b/.gitignore index 6841e3ee2682fb0d5660e2491c5b03ac34f6957e..00941bb5af067040269d23ab91d781bfb6cd5bc7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1,29 @@ -**/.idea -**/.DS_Store -**/__pycache__ -**/*.pyc **/*.egg-info -**/.tox +**/*.pyc +**/.DS_Store +**/.eggs +**/.idea +**/.ipynb_checkpoints +**/.project +**/.pydevproject +**/.settings/org.eclipse.core.resources.prefs **/.stestr +**/.tox +**/__pycache__ **/AUTHORS **/ChangeLog **/env +**/pending_log_messages.db **/vscode-server.tar -**/.project -**/.pydevproject -**/.settings/org.eclipse.core.resources.prefs -docs/build -tangostationcontrol/dist + tangostationcontrol/build +tangostationcontrol/cover +tangostationcontrol/dist +tangostationcontrol/docs/build + +**/coverage.xml +**/.coverage **/.ipynb_checkpoints **/pending_log_messages.db **/.eggs + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24124fc8a01456cb9cd10eddee0070db77b3f82e..18b0dd91fe27ab8b63ec625e8121553689513255 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,7 @@ stages: - images - building - linting + - documentation - static-analysis - unit-tests - integration-tests @@ -322,6 +323,17 @@ shellcheck: script: # TODO(Corne): Ignore shell files in submodules - shellcheck **/*.sh +sphinx-documentation: + stage: documentation + before_script: + - sudo apt-get update + - sudo apt-get install -y git + script: + - cd tangostationcontrol + - tox -e docs + artifacts: + paths: + - tangostationcontrol/docs/build/ unit_test: stage: unit-tests before_script: @@ -329,7 +341,12 @@ unit_test: - sudo apt-get install -y git script: - cd tangostationcontrol - - tox -e py37 + - tox -e cover + artifacts: + reports: + cobertura: tangostationcontrol/coverage.xml + paths: + - tangostationcontrol/cover/* integration_test_docker: stage: integration-tests image: docker:latest diff --git a/docker/tango/tango-archiver/data/archiver-devices.json b/CDB/tango-archiver-data/archiver-devices.json similarity index 100% rename from docker/tango/tango-archiver/data/archiver-devices.json rename to CDB/tango-archiver-data/archiver-devices.json diff --git a/README.md b/README.md index 3f9bb0b2ba94b26e76a850d713a2dd048e218b9e..30562c680b5d739c56b42ab9da8c03aeacecb0a9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[](https://git.astron.nl/lofar2.0/tango/-/pipelines) +[](https://lofar20-station-control.readthedocs.io/en/latest/?badge=latest) + # Tango Station Control Station Control software related to Tango devices. diff --git a/docker-compose/archiver-timescale.yml b/docker-compose/archiver-timescale.yml index 056016b55e4098bc6d3fd0c3fa27607ebacf0d2c..306a27a42a68dc006bba3c91ce5a03874c610cdc 100644 --- a/docker-compose/archiver-timescale.yml +++ b/docker-compose/archiver-timescale.yml @@ -27,7 +27,7 @@ services: hdbppts-cm: image: hdbppts-cm build: - context: ../docker/tango/tango-archiver-ts + context: tango-archiver-ts networks: - control container_name: ${CONTAINER_NAME_PREFIX}hdbppts-cm @@ -53,7 +53,7 @@ services: hdbppts-es: image: hdbppts-es build: - context: ../docker/tango/tango-archiver-ts + context: tango-archiver-ts networks: - control container_name: ${CONTAINER_NAME_PREFIX}hdbppts-es diff --git a/docker-compose/lofar-device-base/lofar-requirements.txt b/docker-compose/lofar-device-base/lofar-requirements.txt index 95ed439cd121c0dc72b0c9a1c69d409e0bacc57e..718c3a13a58733ff12429c7b786ff2e11abb10d9 100644 --- a/docker-compose/lofar-device-base/lofar-requirements.txt +++ b/docker-compose/lofar-device-base/lofar-requirements.txt @@ -1,2 +1,2 @@ # Do not put tangostationcontrol dependencies here, only setup.py / __init__.py -GitPython >= 3.1.24 # BSD +GitPython >= 3.1.20 # BSD diff --git a/docker/tango/tango-archiver-ts/Dockerfile b/docker-compose/tango-archiver-ts/Dockerfile similarity index 100% rename from docker/tango/tango-archiver-ts/Dockerfile rename to docker-compose/tango-archiver-ts/Dockerfile diff --git a/docker-compose/tango.yml b/docker-compose/tango.yml index 0d3b5877c97dea565085d8655b07406cf16fad82..166891b51f9a1ac59d3fcf837c3486f3199ad798 100644 --- a/docker-compose/tango.yml +++ b/docker-compose/tango.yml @@ -80,12 +80,12 @@ services: - TANGO_HOST=${TANGO_HOST} command: > sh -c "wait-for-it.sh ${TANGO_HOST} --timeout=30 --strict -- - json2tango -w -a -u /tango-archiver/data/archiver-devices.json && + json2tango -w -a -u /tango-archiver-data/archiver-devices.json && sleep infinity" volumes: - ..:/opt/lofar/tango:rw - ${HOME}:/hosthome - - ../docker/tango/tango-archiver:/tango-archiver + - ../CDB/tango-archiver-data:/tango-archiver-data logging: driver: syslog options: diff --git a/docker/Makefile b/docker/Makefile deleted file mode 100644 index aa41ed2331e0816b65213d97745d8cf8ece28b21..0000000000000000000000000000000000000000 --- a/docker/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -DIRS = tango -BUILDDIRS = $(DIRS:%=build-%) -TESTDIRS = $(DIRS:%=test-%) -PUSHDIRS = $(DIRS:%=push-%) - -.DEFAULT_GOAL := help - -build: $(DIRS) ## build all images -$(DIRS): $(BUILDDIRS) -$(BUILDDIRS): - $(MAKE) -C $(@:build-%=%) build - -test: $(TESTDIRS) -$(TESTDIRS): - $(MAKE) -C $(@:test-%=%) test - -push: $(PUSHDIRS) ## push images to Docker hub -$(PUSHDIRS): - $(MAKE) -C $(@:push-%=%) push - -help: ## show this help. - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' - -.PHONY: subdirs $(DIRS) -.PHONY: subdirs $(BUILDDIRS) -.PHONY: subdirs $(PUSHDIRS) -.PHONY: build test push help diff --git a/docker/deploy/.release b/docker/deploy/.release deleted file mode 100644 index 88399d0d0939bc3caa1f9c01f46df613bd9a6c70..0000000000000000000000000000000000000000 --- a/docker/deploy/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=0.4.2 -tag=deploy-0.4.2 diff --git a/docker/deploy/Dockerfile b/docker/deploy/Dockerfile deleted file mode 100644 index cf098ca4fdaa9799ed73a4f24b5aa352e4e5b321..0000000000000000000000000000000000000000 --- a/docker/deploy/Dockerfile +++ /dev/null @@ -1,44 +0,0 @@ -FROM ubuntu:18.04 - -ENV KUBE_LATEST_VERSION="v1.16.2" -ENV HELM_VERSION="v3.3.1" -ENV DEBIAN_FRONTEND="noninteractive" -ENV RUNLEVEL="1" -ENV PYTEST_REQUIREMENTS="https://gitlab.com/ska-telescope/skampi/raw/8204ac53ef67941bf22e9f259be1910b2a9636a5/test-requirements.txt" - -RUN apt-get update -RUN apt-get install -y make bash git curl apt-transport-https ca-certificates wget software-properties-common -RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - -RUN apt-key fingerprint 0EBFCD88 -RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -RUN apt-get update -RUN apt-get install -y docker-ce -RUN export LC_ALL=C -# pip -RUN apt-get install -yq python3-distutils \ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ - && python3 get-pip.py -COPY pip.conf /etc/pip.conf -# /pip - -RUN python3 -m pip install docker-compose -RUN python3 -m pip install yamllint yamale - -RUN wget -q https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl \ - && chmod +x /usr/local/bin/kubectl \ - && wget -q https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm \ - && chmod +x /usr/local/bin/helm - -RUN wget -q https://github.com/helm/chart-testing/releases/download/v3.0.0-beta.1/chart-testing_3.0.0-beta.1_linux_amd64.tar.gz -O /tmp/ct.tar.gz \ - && cd /tmp \ - && tar -xf ct.tar.gz \ - && mv ct /usr/local/bin/ct - -RUN python3 -m pip install -r ${PYTEST_REQUIREMENTS} -RUN python3 -m pip install pytest - -RUN apt-get update -RUN apt-get install -y python software-properties-common net-tools -RUN apt-add-repository --yes --update ppa:ansible/ansible -RUN printf "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d -RUN apt-get -y install ansible ssh python-apt diff --git a/docker/deploy/Makefile b/docker/deploy/Makefile deleted file mode 100644 index df37dbb1286343b13b64bfa8abef9b87adf9cd23..0000000000000000000000000000000000000000 --- a/docker/deploy/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/deploy/pip.conf b/docker/deploy/pip.conf deleted file mode 100644 index 41d1dce5e2cce9176483b21e87ebf2c1cf5f1f6c..0000000000000000000000000000000000000000 --- a/docker/deploy/pip.conf +++ /dev/null @@ -1,4 +0,0 @@ -[global] -index-url = https://nexus.engageska-portugal.pt/repository/pypi/simple -extra-index-url = https://pypi.org/simple -disable-pip-version-check = True diff --git a/docker/make/.make-release-support b/docker/make/.make-release-support deleted file mode 100644 index 00473f1f9ed7e3d04729261f13e733575748fce7..0000000000000000000000000000000000000000 --- a/docker/make/.make-release-support +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/bash -# -# Copyright 2015 Xebia Nederland B.V. -# Modifications copyright (c) 2019 SKA Organisation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -function hasChanges() { - test -n "$(git status -s .)" -} - -function getRelease() { - awk -F= '/^release=/{print $2}' .release -} - -function getBaseTag() { - sed -n -e "s/^tag=\(.*\)$(getRelease)\$/\1/p" .release -} - -function getTag() { - if [ -z "$1" ] ; then - awk -F= '/^tag/{print $2}' .release - else - echo "$(getBaseTag)$1" - fi -} - -function setRelease() { - if [ -n "$1" ] ; then - sed -i.x -e "s/^tag=.*/tag=$(getTag $1)/" .release - sed -i.x -e "s/^release=.*/release=$1/g" .release - rm -f .release.x - runPreTagCommand "$1" - else - echo "ERROR: missing release version parameter " >&2 - return 1 - fi -} - -function runPreTagCommand() { - if [ -n "$1" ] ; then - COMMAND=$(sed -n -e "s/@@RELEASE@@/$1/g" -e 's/^pre_tag_command=\(.*\)/\1/p' .release) - if [ -n "$COMMAND" ] ; then - if ! OUTPUT=$(bash -c "$COMMAND" 2>&1) ; then echo $OUTPUT >&2 && exit 1 ; fi - fi - else - echo "ERROR: missing release version parameter " >&2 - return 1 - fi -} - -function tagExists() { - tag=${1:-$(getTag)} - test -n "$tag" && test -n "$(git tag | grep "^$tag\$")" -} - -function differsFromRelease() { - tag=$(getTag) - ! tagExists $tag || test -n "$(git diff --shortstat -r $tag .)" -} - -function getVersion() { - result=$(getRelease) - - #MDC 14092019 the release support must be reviewed - #if differsFromRelease; then - # result="$result-$(git log -n 1 --format=%h .)" - #fi - - if hasChanges ; then - result="$result-dirty" - fi - echo $result -} - -function nextPatchLevel() { - version=${1:-$(getRelease)} - major_and_minor=$(echo $version | cut -d. -f1,2) - patch=$(echo $version | cut -d. -f3) - version=$(printf "%s.%d" $major_and_minor $(($patch + 1))) - echo $version -} - -function nextMinorLevel() { - version=${1:-$(getRelease)} - major=$(echo $version | cut -d. -f1); - minor=$(echo $version | cut -d. -f2); - version=$(printf "%d.%d.0" $major $(($minor + 1))) ; - echo $version -} - -function nextMajorLevel() { - version=${1:-$(getRelease)} - major=$(echo $version | cut -d. -f1); - version=$(printf "%d.0.0" $(($major + 1))) - echo $version -} diff --git a/docker/make/Makefile b/docker/make/Makefile deleted file mode 100644 index e0e5607b868dedfb873266a58c69ed451f12ea6b..0000000000000000000000000000000000000000 --- a/docker/make/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST))) -include $(SELF_DIR)/Makefile.mk diff --git a/docker/make/Makefile.mk b/docker/make/Makefile.mk deleted file mode 100644 index dde32cc947bc1770acc2fcddbb6524d00c8a6049..0000000000000000000000000000000000000000 --- a/docker/make/Makefile.mk +++ /dev/null @@ -1,122 +0,0 @@ -# -# Copyright 2015 Xebia Nederland B.V. -# Modifications copyright (c) 2019 SKA Organisation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -NAME=$(shell basename $(CURDIR)) - -RELEASE_SUPPORT := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))/.make-release-support - -ifeq ($(strip $(DOCKER_REGISTRY_HOST)),) - DOCKER_REGISTRY_HOST = nexus.engageska-portugal.pt -endif - -ifeq ($(strip $(DOCKER_REGISTRY_USER)),) - DOCKER_REGISTRY_USER = ska-docker -endif - -IMAGE=$(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/$(NAME) - -VERSION=$(shell . $(RELEASE_SUPPORT) ; getVersion) -TAG=$(shell . $(RELEASE_SUPPORT); getTag) - -SHELL=/bin/bash - -DOCKER_BUILD_CONTEXT=. -DOCKER_FILE_PATH=Dockerfile - -.PHONY: pre-build docker-build post-build build release patch-release minor-release major-release tag check-status check-release showver \ - push pre-push do-push post-push - -build: pre-build docker-build post-build - -pre-build: - -post-build: - -pre-push: - -post-push: - -docker-build: .release - docker build $(DOCKER_BUILD_ARGS) -t $(IMAGE):$(VERSION) $(DOCKER_BUILD_CONTEXT) -f $(DOCKER_FILE_PATH) --build-arg DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) --build-arg DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) --build-arg http_proxy --build-arg https_proxy - @DOCKER_MAJOR=$(shell docker -v | sed -e 's/.*version //' -e 's/,.*//' | cut -d\. -f1) ; \ - DOCKER_MINOR=$(shell docker -v | sed -e 's/.*version //' -e 's/,.*//' | cut -d\. -f2) ; \ - if [ $$DOCKER_MAJOR -eq 1 ] && [ $$DOCKER_MINOR -lt 10 ] ; then \ - echo docker tag -f $(IMAGE):$(VERSION) $(IMAGE):latest ;\ - docker tag -f $(IMAGE):$(VERSION) $(IMAGE):latest ;\ - else \ - echo docker tag $(IMAGE):$(VERSION) $(IMAGE):latest ;\ - docker tag $(IMAGE):$(VERSION) $(IMAGE):latest ; \ - fi - -.release: - @echo "release=0.0.0" > .release - @echo "tag=$(NAME)-0.0.0" >> .release - @echo INFO: .release created - @cat .release - -release: check-status check-release build push - -push: pre-push do-push post-push - -do-push: - @curl --output /dev/null --silent --head --fail -r 0-0 "https://$(DOCKER_REGISTRY_HOST)/repository/docker/v2/$(DOCKER_REGISTRY_USER)/$(NAME)/manifests/$(VERSION)"; \ - result=$$?; \ - if [ $$result -eq 0 ] ; then \ - echo "Version $(VERSION) of image $(IMAGE) already exists"; \ - else \ - echo "Version $(VERSION) of image $(IMAGE) does not exist"; \ - docker push $(IMAGE):$(VERSION); \ - docker push $(IMAGE):latest; \ - fi; - -snapshot: build push - -showver: .release - @. $(RELEASE_SUPPORT); getVersion - -tag-patch-release: VERSION := $(shell . $(RELEASE_SUPPORT); nextPatchLevel) -tag-patch-release: .release tag - -tag-minor-release: VERSION := $(shell . $(RELEASE_SUPPORT); nextMinorLevel) -tag-minor-release: .release tag - -tag-major-release: VERSION := $(shell . $(RELEASE_SUPPORT); nextMajorLevel) -tag-major-release: .release tag - -patch-release: tag-patch-release release - @echo $(VERSION) - -minor-release: tag-minor-release release - @echo $(VERSION) - -major-release: tag-major-release release - @echo $(VERSION) - -tag: TAG=$(shell . $(RELEASE_SUPPORT); getTag $(VERSION)) -tag: check-status -# @. $(RELEASE_SUPPORT) ; ! tagExists $(TAG) || (echo "ERROR: tag $(TAG) for version $(VERSION) already tagged in git" >&2 && exit 1) ; - @. $(RELEASE_SUPPORT) ; setRelease $(VERSION) -# git add . -# git commit -m "bumped to version $(VERSION)" ; -# git tag $(TAG) ; -# @ if [ -n "$(shell git remote -v)" ] ; then git push --tags ; else echo 'no remote to push tags to' ; fi - -check-status: - @. $(RELEASE_SUPPORT) ; ! hasChanges || (echo "ERROR: there are still outstanding changes" >&2 && exit 1) ; - -check-release: .release - @. $(RELEASE_SUPPORT) ; tagExists $(TAG) || (echo "ERROR: version not yet tagged in git. make [minor,major,patch]-release." >&2 && exit 1) ; - @. $(RELEASE_SUPPORT) ; ! differsFromRelease $(TAG) || (echo "ERROR: current directory differs from tagged $(TAG). make [minor,major,patch]-release." ; exit 1) diff --git a/docker/tango/Makefile b/docker/tango/Makefile deleted file mode 100644 index 71ba876d1b19d5a52077be6a30390c46b5042b6b..0000000000000000000000000000000000000000 --- a/docker/tango/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -DIRS = tango-builder tango-dependencies tango-db tango-cpp tango-java tango-rest tango-dsconfig ska-python-buildenv tango-pogo tango-starter tango-libtango tango-jive ska-python-runtime tango-admin tango-databaseds tango-test tango-itango tango-vscode tango-vnc tango-pytango mariadb_hdbpp tango-archiver hdbpp_viewer -TEST = ska-python-buildenv tango-itango tango-rest tango-db tango-cpp tango-archiver -BUILDDIRS = $(DIRS:%=build-%) -TESTDIRS = $(TEST:%=test-%) -CHECKSTATUSDIRS = $(DIRS:%=checkstatus-%) -SHOWVERDIRS = $(DIRS:%=showver-%) -PUSHDIRS = $(DIRS:%=push-%) - -.DEFAULT_GOAL := help - -build: $(DIRS) ## build all images -$(DIRS): $(BUILDDIRS) -$(BUILDDIRS): - $(MAKE) -C $(@:build-%=%) build - -test: $(TESTDIRS) -$(TESTDIRS): - $(MAKE) -C $(@:test-%=%) test - -check-status: $(CHECKSTATUSDIRS) ## check whether subdirectories have uncommitted changes -$(CHECKSTATUSDIRS): - $(MAKE) -C $(@:checkstatus-%=%) check-status - -showver: $(SHOWVERDIRS) ## show image versions -$(SHOWVERDIRS): - $(MAKE) -C $(@:showver-%=%) showver - -push: $(PUSHDIRS) ## push images to Docker hub -$(PUSHDIRS): - $(MAKE) -C $(@:push-%=%) push - -help: ## show this help. - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' - -.PHONY: subdirs $(DIRS) -.PHONY: subdirs $(BUILDDIRS) -.PHONY: subdirs $(CHECKSTATUSDIRS) -.PHONY: subdirs $(PUSHDIRS) -.PHONY: subdirs $(SHOWVERDIRS) -.PHONY: build check-status showver push help - diff --git a/docker/tango/hdbpp_viewer/.release b/docker/tango/hdbpp_viewer/.release deleted file mode 100644 index ad95a885299761ab3b43426015710622f8468062..0000000000000000000000000000000000000000 --- a/docker/tango/hdbpp_viewer/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.10.1 -tag=hdbpp_viewer-1.10.1 diff --git a/docker/tango/hdbpp_viewer/Dockerfile b/docker/tango/hdbpp_viewer/Dockerfile deleted file mode 100644 index d007e8c56a5311d02cc863576ee76220bfe91412..0000000000000000000000000000000000000000 --- a/docker/tango/hdbpp_viewer/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - -USER root - -ENV DEBIAN_FRONTEND="noninteractive" -ENV HDBPP_DOWNLOAD_URL="https://nexus.engageska-portugal.pt/repository/raw/tango-cs/hdbpp_viewer/hdbpp_viewer_resources_20200527.tgz" - -RUN apt-get update \ - && apt-get install -y wget - -# Untarring this will create the `hdbpp_viewer` folder. -# Inside the tarball is a README detailing the source files. -RUN wget "$HDBPP_DOWNLOAD_URL" -O hdbpp_viewer_resources.tgz \ - && tar zxvf hdbpp_viewer_resources.tgz \ - && rm hdbpp_viewer_resources.tgz - -ADD hdbpp_viewer_script hdbpp_viewer - -RUN find . -iname HDBPP.jar -RUN find . -iname ATKCore.jar - -USER tango diff --git a/docker/tango/hdbpp_viewer/Makefile b/docker/tango/hdbpp_viewer/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/hdbpp_viewer/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/hdbpp_viewer/README.md b/docker/tango/hdbpp_viewer/README.md deleted file mode 100644 index dcd1a2f2163741059510b91bf0d165b39becd500..0000000000000000000000000000000000000000 --- a/docker/tango/hdbpp_viewer/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# HDB++ Viewer Docker Container - -[](https://developer.skatelescope.org/projects/ska-docker/en/latest/?badge=latest) - - -# 1: Introduction -The HdbViewer GUI visualizes the data stored in the Historical database(HDB). This Java framework, allows -retrieving the data from Maria database(HDB). It has been written using Swing and needs a JVM higher than 1.7.0. -[Link to the documentation](https://github.com/tango-controls-hdbpp/hdbpp-viewer) - -# 2: Prerequisites - Installation - [Link to hdb++ github repository](https://github.com/tango-controls-hdbpp/hdbpp-viewer) - -# 3: HDB++ Viewer dockerfile -* Image Location - * nexus.engageska-portugal.pt/ska-docker/tango-java:latest -* Dependencies - * TANGO=$BASEDIR/JTango.jar - * TANGOATK=$BASEDIR/ATKCore.jar:$BASEDIR/ATKWidget.jar - * HDBVIEWER=$BASEDIR/jhdbviewer.jar - * HDBPP=$BASEDIR/HDBPP.jar - * JYTHON=$BASEDIR/jython.jar - * JCALENDAR=$BASEDIR/jcalendar.jar -* Environment Variables - * HDB_TYPE=mysql //type of database - * HDB_MYSQL_HOST=archiver-maria-db //database host (In this case, host is container name) - * HDB_MYSQL_PORT=3306 //database port - * HDB_USER=tango //database user - * HDB_PASSWORD=tango //user password - * HDB_NAME=hdbpp //database name -* Command line to set the environment variables - * export HDB_TYPE - * export HDB_MYSQL_HOST - * export HDB_USER - * export HDB_PASSWORD - * export HDB_NAME - * export HDB_MYSQL_PORT - * CLASSPATH=$TANGO:$TANGOATK:$HDBVIEWER:$HDBPP:$JYTHON:$JCALENDAR - * export CLASSPATH - -# 4: Container Creation for HDB++ Viewer -nexus.engageska-portugal.pt/ska-docker/hdbpp_viewer image with tag 'latest' is used in the hdbpp-viewer container. -Databaseds, mariadb, hdbpp-es and hdbpp-cm containers should be up and running to access HDB++ viewer device. -Following are the environment variables set at the time of container creation: XAUTHORITY=${XAUTHORITY}, DISPLAY=${DISPLAY}, -TANGO_HOST=${TANGO_HOST}, HDB_TYPE, HDB_MYSQL_HOST, HDB_MYSQL_PORT, HDB_USER, HDB_PASSWORD and HDB_NAME. -Refer the link -[docker-compose.yaml](https://gitlab.com/ska-telescope/ska-docker/blob/master/docker/tango/tango-archiver/docker-compose.yml) - -# 5: Running HDB++ viewer inside docker containers - - HDB++ viewer can run on dockers using following command inside the ./tango-archiver - -In order to launch the viewer, execute: - -`make test` diff --git a/docker/tango/hdbpp_viewer/hdbpp_viewer_script b/docker/tango/hdbpp_viewer/hdbpp_viewer_script deleted file mode 100755 index 66688fbedf2b880881d8b02fcda1bae274465031..0000000000000000000000000000000000000000 --- a/docker/tango/hdbpp_viewer/hdbpp_viewer_script +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -if [ ! $TANGO_HOST ] && [ -f /etc/tangorc ]; then - . /etc/tangorc -fi - -# -# Define the CLASSPATH -# -LOGBACK=${TANGO_LOGBACK:-/usr/local/share/tango/logback.xml} - -BASEDIR=/hdbpp_viewer -TANGO=$BASEDIR/JTango.jar -TANGOATK=$BASEDIR/ATKCore.jar:$BASEDIR/ATKWidget.jar -HDBVIEWER=$BASEDIR/jhdbviewer.jar -HDBPP=$BASEDIR/HDBPP.jar -JYTHON=$BASEDIR/jython.jar -JCALENDAR=$BASEDIR/jcalendar.jar -CLASSPATH=$TANGO:$TANGOATK:$HDBVIEWER:$HDBPP:$JYTHON:$JCALENDAR - -echo "************************************************" -env -echo "************************************************" - -echo "/usr/bin/java -Dlogback.configurationFile="$LOGBACK" -DTANGO_HOST=$TANGO_HOST HDBViewer.MainPanel $@" - -/usr/bin/java -Dlogback.configurationFile="$LOGBACK" -DTANGO_HOST=$TANGO_HOST HDBViewer.MainPanel $@ diff --git a/docker/tango/mariadb_hdbpp/.release b/docker/tango/mariadb_hdbpp/.release deleted file mode 100644 index f8f5c25601490a7033c91add51d547aa40e10980..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.1.0 -tag=mariadb_hdbpp-1.1.0 diff --git a/docker/tango/mariadb_hdbpp/Dockerfile b/docker/tango/mariadb_hdbpp/Dockerfile deleted file mode 100644 index f3b652ec2dd537ff1dfcace3bf5ce7803b24404b..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - -COPY resources/create_hdb++_mysql.sql docker-entrypoint-initdb.d/create_db.sql -COPY resources/my.cnf /etc/mysql/conf.d - diff --git a/docker/tango/mariadb_hdbpp/Makefile b/docker/tango/mariadb_hdbpp/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/mariadb_hdbpp/README.md b/docker/tango/mariadb_hdbpp/README.md deleted file mode 100644 index aee69033e1da0897d8df2b2f37ac65579cde50ab..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# Mariadb Docker Container - -[](https://developer.skatelescope.org/projects/ska-docker/en/latest/?badge=latest) - -# 1: Introduction -The archiver database provides the repository of historical values of attributes, observation states, alarms and data associated -with other events generated during the control and monitoring of Telescope. -Mariadb is the database name, which stores the archived data. It is a separate database, other than the tango database. -The Tango events are subscribed by the hdbpp-es (hdbpp event subscriber) and written to the archive database. -Mariadb uses the default schema of HDB++ (refer to 'create_hdb++_mysql.sql' file), for storing archived data. - -# 2: Creating Mariadb docker containers - nexus.engageska-portugal.pt/ska-docker/mariadb_hdbpp image with 'latest' tag is used to create Mariadb container. - MYSQL_DATABASE=hdbpp, MYSQL_USER=tango, MYSQL_PASSWORD=tango, TANGO_HOST=${TANGO_HOST} are the environment variables set - at the time of mariadb container creation. 'archiverdb' is the permanent volume required for storing the database file. - -# 3: Running Mariadb inside docker containers - -The archiver database is brought up and running on dockers using the following command inside the ./tango-archiver - -`make test` diff --git a/docker/tango/mariadb_hdbpp/resources/create_hdb++_mysql.sql b/docker/tango/mariadb_hdbpp/resources/create_hdb++_mysql.sql deleted file mode 100644 index 3769a6d74523ff0cc8a942dc8976fa184e4b93f1..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/resources/create_hdb++_mysql.sql +++ /dev/null @@ -1,919 +0,0 @@ -CREATE DATABASE IF NOT EXISTS hdbpp; -USE hdbpp; - ----------------------------------------------------------------- ------------------- create_hdb++_mysql.sql ---------------------- ----------------------------------------------------------------- -GRANT ALL PRIVILEGES ON hdbpp.* TO 'root'@'localhost' identified by 'secret' WITH GRANT OPTION; - -GRANT ALL ON hdbpp.* TO 'hdbpprw'@'%' IDENTIFIED BY "hdbpprw"; - -CREATE USER IF NOT EXISTS 'tango'@'%' identified by 'tango'; -GRANT ALL PRIVILEGES ON hdbpp.* To 'tango'@'%' IDENTIFIED BY 'tango' WITH GRANT OPTION; -FLUSH PRIVILEGES; - -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - -SET time_zone = "+00:00"; - -ALTER DATABASE hdbpp CHARACTER SET latin1 COLLATE latin1_swedish_ci; - -SET SESSION SQL_MODE='ALLOW_INVALID_DATES'; - --- --------------------------------------------------------------- --- --------------CONCRETE TABLE INHERITANCE----------------------- --- --------------------------------------------------------------- - -CREATE TABLE IF NOT EXISTS att_conf -( -att_conf_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, -att_name VARCHAR(255) UNIQUE NOT NULL, -att_conf_data_type_id INT UNSIGNED NOT NULL, -att_ttl INT UNSIGNED NULL DEFAULT NULL, -facility VARCHAR(255) NOT NULL DEFAULT '', -domain VARCHAR(255) NOT NULL DEFAULT '', -family VARCHAR(255) NOT NULL DEFAULT '', -member VARCHAR(255) NOT NULL DEFAULT '', -name VARCHAR(255) NOT NULL DEFAULT '', -INDEX(att_conf_data_type_id) -) ENGINE=MyISAM COMMENT='Attribute Configuration Table'; - -DROP TABLE IF EXISTS att_conf_data_type; -CREATE TABLE IF NOT EXISTS att_conf_data_type -( -att_conf_data_type_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, -data_type VARCHAR(255) NOT NULL, -tango_data_type TINYINT(1) NOT NULL -) ENGINE=MyISAM COMMENT='Attribute types description'; - -INSERT INTO att_conf_data_type (data_type, tango_data_type) VALUES -('scalar_devboolean_ro', 1),('scalar_devboolean_rw', 1),('array_devboolean_ro', 1),('array_devboolean_rw', 1), -('scalar_devuchar_ro', 22),('scalar_devuchar_rw', 22),('array_devuchar_ro', 22),('array_devuchar_rw', 22), -('scalar_devshort_ro', 2),('scalar_devshort_rw', 2),('array_devshort_ro', 2),('array_devshort_rw', 2), -('scalar_devushort_ro', 6),('scalar_devushort_rw', 6),('array_devushort_ro', 6),('array_devushort_rw', 6), -('scalar_devlong_ro', 3),('scalar_devlong_rw', 3),('array_devlong_ro', 3),('array_devlong_rw', 3), -('scalar_devulong_ro', 7),('scalar_devulong_rw', 7),('array_devulong_ro', 7),('array_devulong_rw', 7), -('scalar_devlong64_ro', 23),('scalar_devlong64_rw', 23),('array_devlong64_ro', 23),('array_devlong64_rw', 23), -('scalar_devulong64_ro', 24),('scalar_devulong64_rw', 24),('array_devulong64_ro', 24),('array_devulong64_rw', 24), -('scalar_devfloat_ro', 4),('scalar_devfloat_rw', 4),('array_devfloat_ro', 4),('array_devfloat_rw', 4), -('scalar_devdouble_ro', 5),('scalar_devdouble_rw', 5),('array_devdouble_ro', 5),('array_devdouble_rw', 5), -('scalar_devstring_ro', 8),('scalar_devstring_rw', 8),('array_devstring_ro', 8),('array_devstring_rw', 8), -('scalar_devstate_ro', 19),('scalar_devstate_rw', 19),('array_devstate_ro', 19),('array_devstate_rw', 19), -('scalar_devencoded_ro', 28),('scalar_devencoded_rw', 28),('array_devencoded_ro', 28),('array_devencoded_rw', 28), -('scalar_devenum_ro', 29),('scalar_devenum_rw', 29),('array_devenum_ro', 29),('array_devenum_rw', 29); - -CREATE TABLE IF NOT EXISTS att_history -( -att_conf_id INT UNSIGNED NOT NULL, -time TIMESTAMP(6) DEFAULT 0, -att_history_event_id INT UNSIGNED NOT NULL, -INDEX(att_conf_id), -INDEX(att_history_event_id) -) ENGINE=MyISAM COMMENT='Attribute Configuration Events History Table'; - -DROP TABLE IF EXISTS att_history_event; -CREATE TABLE IF NOT EXISTS att_history_event -( -att_history_event_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, -event VARCHAR(255) NOT NULL -) ENGINE=MyISAM COMMENT='Attribute history events description'; - -INSERT INTO att_history_event (event) VALUES -('add'),('remove'),('start'),('stop'),('crash'),('pause'); - -CREATE TABLE IF NOT EXISTS att_parameter -( -att_conf_id INT UNSIGNED NOT NULL, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -label VARCHAR(255) NOT NULL DEFAULT '', -unit VARCHAR(64) NOT NULL DEFAULT '', -standard_unit VARCHAR(64) NOT NULL DEFAULT '1', -display_unit VARCHAR(64) NOT NULL DEFAULT '', -format VARCHAR(64) NOT NULL DEFAULT '', -archive_rel_change VARCHAR(64) NOT NULL DEFAULT '', -archive_abs_change VARCHAR(64) NOT NULL DEFAULT '', -archive_period VARCHAR(64) NOT NULL DEFAULT '', -description VARCHAR(1024) NOT NULL DEFAULT '', -INDEX(recv_time), -INDEX(att_conf_id) -) ENGINE=MyISAM COMMENT='Attribute configuration parameters'; - -CREATE TABLE IF NOT EXISTS att_error_desc -( -att_error_desc_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, -error_desc VARCHAR(255) UNIQUE NOT NULL -) ENGINE=MyISAM COMMENT='Error Description Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devboolean_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT(1) UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Boolean ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devboolean_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT(1) UNSIGNED DEFAULT NULL, -value_w TINYINT(1) UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Boolean ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devboolean_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT(1) UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Boolean ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devboolean_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT(1) UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w TINYINT(1) UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Boolean ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devuchar_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar UChar ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devuchar_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -value_w TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar UChar ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devuchar_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array UChar ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devuchar_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array UChar ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devshort_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Short ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devshort_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -value_w SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Short ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devshort_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Short ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devshort_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Short ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devushort_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar UShort ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devushort_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT UNSIGNED DEFAULT NULL, -value_w SMALLINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar UShort ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devushort_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array UShort ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devushort_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w SMALLINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array UShort ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devlong_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r INT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Long ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devlong_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r INT DEFAULT NULL, -value_w INT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Long ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devlong_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r INT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Long ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devlong_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r INT DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w INT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Long ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devulong_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r INT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar ULong ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devulong_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r INT UNSIGNED DEFAULT NULL, -value_w INT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar ULong ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devulong_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r INT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array ULong ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devulong_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r INT UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w INT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array ULong ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devlong64_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BIGINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Long64 ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devlong64_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BIGINT DEFAULT NULL, -value_w BIGINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Long64 ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devlong64_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BIGINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Long64 ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devlong64_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BIGINT DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w BIGINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Long64 ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devulong64_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BIGINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar ULong64 ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devulong64_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BIGINT UNSIGNED DEFAULT NULL, -value_w BIGINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar ULong64 ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devulong64_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BIGINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array ULong64 ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devulong64_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BIGINT UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w BIGINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array ULong64 ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devfloat_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r FLOAT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Float ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devfloat_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r FLOAT DEFAULT NULL, -value_w FLOAT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Float ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devfloat_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r FLOAT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Float ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devfloat_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r FLOAT DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w FLOAT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Float ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devdouble_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r DOUBLE DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Double ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devdouble_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r DOUBLE DEFAULT NULL, -value_w DOUBLE DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Double ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devdouble_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r DOUBLE DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Double ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devdouble_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r DOUBLE DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w DOUBLE DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Double ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devstring_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r VARCHAR(16384) DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar String ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devstring_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r VARCHAR(16384) DEFAULT NULL, -value_w VARCHAR(16384) DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar String ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devstring_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r VARCHAR(16384) DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array String ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devstring_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r VARCHAR(16384) DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w VARCHAR(16384) DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array String ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devstate_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar State ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devstate_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -value_w TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar State ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devstate_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array State ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devstate_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r TINYINT UNSIGNED DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w TINYINT UNSIGNED DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array State ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devencoded_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BLOB DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Encoded ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devencoded_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r BLOB DEFAULT NULL, -value_w BLOB DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Encoded ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devencoded_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BLOB DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Encoded ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devencoded_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r BLOB DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w BLOB DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Encoded ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devenum_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Enum ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_scalar_devenum_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -value_w SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Scalar Enum ReadWrite Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devenum_ro -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Enum ReadOnly Values Table'; - -CREATE TABLE IF NOT EXISTS att_array_devenum_rw -( -att_conf_id INT UNSIGNED NOT NULL, -data_time TIMESTAMP(6) DEFAULT 0, -recv_time TIMESTAMP(6) DEFAULT 0, -insert_time TIMESTAMP(6) DEFAULT 0, -idx INT UNSIGNED NOT NULL, -dim_x_r INT UNSIGNED NOT NULL, -dim_y_r INT UNSIGNED NOT NULL DEFAULT 0, -value_r SMALLINT DEFAULT NULL, -dim_x_w INT UNSIGNED NOT NULL, -dim_y_w INT UNSIGNED NOT NULL DEFAULT 0, -value_w SMALLINT DEFAULT NULL, -quality TINYINT(1) DEFAULT NULL, -att_error_desc_id INT UNSIGNED NULL DEFAULT NULL, -INDEX att_conf_id_data_time (att_conf_id,data_time) -) ENGINE=MyISAM COMMENT='Array Enum ReadWrite Values Table'; - diff --git a/docker/tango/mariadb_hdbpp/resources/my.cnf b/docker/tango/mariadb_hdbpp/resources/my.cnf deleted file mode 100644 index 17db69caed53bebbd8b0caf7213aa8d7dd177033..0000000000000000000000000000000000000000 --- a/docker/tango/mariadb_hdbpp/resources/my.cnf +++ /dev/null @@ -1,9 +0,0 @@ -# The MariaDB configuration file - -[mysqld] -sql-mode="" -innodb=OFF -default_storage_engine=MyISAM -log_error=/var/lib/mysql/error.log -general_log_file=/var/lib/mysql/mysql.log -general_log=1 \ No newline at end of file diff --git a/docker/tango/ska-python-buildenv/.release b/docker/tango/ska-python-buildenv/.release deleted file mode 100644 index 8d32013e0320128441ab507cbf10f8e0a535af64..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.2.1 -tag=ska-python-buildenv-9.3.2.1 diff --git a/docker/tango/ska-python-buildenv/Dockerfile b/docker/tango/ska-python-buildenv/Dockerfile deleted file mode 100644 index 71d06eb8854e9b14780db6f594ace6db82ee387e..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/Dockerfile +++ /dev/null @@ -1,54 +0,0 @@ -# -# This Dockerfile creates a Docker image containing a build environment for SKA -# python projects. This image is intended to be used as an intermediate layer, -# where it can be used to compile C extensions to be copied into a final -# release image. -# -# This image caches a compilation of PyTango bindings so that child images -# need not recompile it. -# -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - -USER root - -# Speed up image builds by adding apt proxy if detected on host -RUN DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" - -# Install build dependencies: -# -# * build-essential installs C/C++ compilers and build tools -# * libboost-python-dev is required to bind PyTango to the C++ Tango libs -# * pkg-config is used to locate required libraries -# * git is required for Python packages using katversion for release info -# -RUN buildDeps='build-essential \ - libboost-python-dev \ - pkg-config \ - python3-distutils \ - python3-pip \ - zlib1g-dev \ - curl \ - git' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install --no-install-recommends $buildDeps - -RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py -COPY pip.conf /etc/pip.conf - -RUN python3 -m pip install setuptools \ - wheel - -WORKDIR /app - -# Install numpy manually before PyTango and other requirements to ensure we -# build PyTango with numpy support. -RUN python3 -m pip install numpy==1.17.2 - -COPY requirements.txt /requirements.txt -RUN python3 -m pip install -r /requirements.txt - -RUN mkdir /venv && ln -s /usr/* /venv/ && ln -s /usr/local/bin/itango3 /venv/bin/itango3 diff --git a/docker/tango/ska-python-buildenv/Makefile b/docker/tango/ska-python-buildenv/Makefile deleted file mode 100644 index 20b277ec456a7565ad8e46c1f0bb20d17a4cd0dd..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -include ../../make/Makefile - -# name of the Docker volume used to cache eggs and wheels -CACHE_VOLUME = ska-python-buildenv-test-cache - -# optional docker run-time arguments -DOCKER_RUN_ARGS = - -# defines the image to test -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/ska-python-buildenv:latest - -# docker-compose commmand for a composition of services for the tango database, -# databaseds device, and tangotest devices -DOCKER_COMPOSE_COMMAND = PWD=$(CURDIR) \ - DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) \ - docker-compose \ - -f docker-compose.yml - -# defines a function to copy the ./test directory into the container and -# then runs the requested make target in the container. The container is: -# 1. attached to the network of the docker-compose test system -# 2. uses a persistent volume to cache Python eggs and wheels so that fewer -# downloads are required -# 3. uses a transient volume as a working directory, in which untarred files -# and test output can be written in the container and subsequently copied -# to the host -make = tar -c test/ | \ - docker run -i --rm --network=$(notdir $(CURDIR))_default \ - -v $(CACHE_VOLUME):/home/tango/.cache \ - -v /build -w /build $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - bash -c "sudo chown tango /build /home/tango/.cache && \ - tar x --strip-components 1 --warning=all && \ - make TANGO_HOST=databaseds:10000 $1" - -all: test - -test: DOCKER_RUN_ARGS = --volumes-from=$(BUILD) -test: - $(INIT_CACHE) - $(DOCKER_COMPOSE_COMMAND) up -d - $(call make,test); \ - status=$$?; \ - docker rm -f -v $(BUILD); \ - $(DOCKER_COMPOSE_COMMAND) down; \ - exit $$status - -piplock: ## overwrite Pipfile.lock with the image version - docker run $(IMAGE_TO_TEST) cat /app/Pipfile.lock > $(CURDIR)/Pipfile.lock - -# insert the line below after 'status=$$?;' to copy output from the test run -# inside the container into ./build on the host. -# docker cp $(BUILD):/build .; \ - -.PHONY: all test - -# Creates Docker volume for use as a cache, if it doesn't exist already -INIT_CACHE = \ - docker volume ls | grep $(CACHE_VOLUME) || \ - docker create --name $(CACHE_VOLUME) -v $(CACHE_VOLUME):/cache $(IMAGE_TO_TEST) - -# http://cakoose.com/wiki/gnu_make_thunks -BUILD_GEN = $(shell docker create -v /build $(IMAGE_TO_TEST)) -BUILD = $(eval BUILD := $(BUILD_GEN))$(BUILD) \ No newline at end of file diff --git a/docker/tango/ska-python-buildenv/docker-compose.yml b/docker/tango/ska-python-buildenv/docker-compose.yml deleted file mode 100644 index 815f0352200ec77036d8b425de23d367a6c8dcd8..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/docker-compose.yml +++ /dev/null @@ -1,56 +0,0 @@ -# -# Docker compose file for TANGO database and database device server -# -# Defines: -# - tangodb: MariaDB database with TANGO schema -# - databaseds: TANGO database device server -# -# Requires: -# - None -# -version: '2' - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - databaseds: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - depends_on: - - tangodb - environment: - - MYSQL_HOST=tangodb:3306 - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - tangodb:3306 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/DataBaseds - - "2" - - -ORBendPoint - - giop:tcp::10000 - - tangotest: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - depends_on: - - databaseds - environment: - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - databaseds:10000 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/TangoTest - - test diff --git a/docker/tango/ska-python-buildenv/pip.conf b/docker/tango/ska-python-buildenv/pip.conf deleted file mode 100644 index 41d1dce5e2cce9176483b21e87ebf2c1cf5f1f6c..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/pip.conf +++ /dev/null @@ -1,4 +0,0 @@ -[global] -index-url = https://nexus.engageska-portugal.pt/repository/pypi/simple -extra-index-url = https://pypi.org/simple -disable-pip-version-check = True diff --git a/docker/tango/ska-python-buildenv/requirements.txt b/docker/tango/ska-python-buildenv/requirements.txt deleted file mode 100644 index c37044961f3fda500d476ca768aac90713a64a77..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/requirements.txt +++ /dev/null @@ -1,29 +0,0 @@ -numpy==1.17.2 -pytango==9.3.2 -flake8 -flake8_formatter_junit_xml -itango -coverage -docutils -MarkupSafe -Pygments -pylint -pytest -pytest-bdd -pytest-cov -pytest-forked -pytest-json-report -pytest-mock -pytest-pycodestyle -pytest-pydocstyle -pytest-pylint -pytest-runner -python-dotenv>=0.5.1 -ptvsd -Sphinx -sphinx_rtd_theme -sphinx-autobuild -sphinxcontrib-websupport -requests -tox -transitions diff --git a/docker/tango/ska-python-buildenv/test.sh b/docker/tango/ska-python-buildenv/test.sh deleted file mode 100755 index d3cd68c4c8faac4c2a2dfd31cf8fe53dad1e654c..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/test.sh +++ /dev/null @@ -1,118 +0,0 @@ -#!/bin/bash -# -# Copyright 2015 Xebia Nederland B.V. -# Modifications copyright (c) 2019 SKA Organisation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -function hasChanges() { - test -n "$(git status -s .)" -} - -function getRelease() { - awk -F= '/^release=/{print $2}' .release -} - -function getBaseTag() { - sed -n -e "s/^tag=\(.*\)$(getRelease)\$/\1/p" .release -} - -function getTag() { - if [ -z "$1" ] ; then - awk -F= '/^tag/{print $2}' .release - else - echo "$(getBaseTag)$1" - fi -} - -function setRelease() { - if [ -n "$1" ] ; then - sed -i.x -e "s/^tag=.*/tag=$(getTag $1)/" .release - sed -i.x -e "s/^release=.*/release=$1/g" .release - rm -f .release.x - runPreTagCommand "$1" - else - echo "ERROR: missing release version parameter " >&2 - return 1 - fi -} - -function runPreTagCommand() { - if [ -n "$1" ] ; then - COMMAND=$(sed -n -e "s/@@RELEASE@@/$1/g" -e 's/^pre_tag_command=\(.*\)/\1/p' .release) - if [ -n "$COMMAND" ] ; then - if ! OUTPUT=$(bash -c "$COMMAND" 2>&1) ; then echo $OUTPUT >&2 && exit 1 ; fi - fi - else - echo "ERROR: missing release version parameter " >&2 - return 1 - fi -} - - -function tagExists() { - tag=${1:-$(getTag)} - test -n "$tag" && test -n "$(git tag | grep "^$tag\$")" -} - -# option -n True if string is not empty. -function differsFromRelease() { - tag=$(getTag) - ! tagExists $tag || test -n "$(git diff --shortstat -r $tag .)" -} - -function getVersion() { - result=$(getRelease) - - if differsFromRelease; then - result="$result-$(git log -n 1 --format=%h .)" - fi - - if hasChanges ; then - result="$result-dirty" - fi - echo $result -} - -function nextPatchLevel() { - version=${1:-$(getRelease)} - major_and_minor=$(echo $version | cut -d. -f1,2) - patch=$(echo $version | cut -d. -f3) - version=$(printf "%s.%d" $major_and_minor $(($patch + 1))) - echo $version -} - -function nextMinorLevel() { - version=${1:-$(getRelease)} - major=$(echo $version | cut -d. -f1); - minor=$(echo $version | cut -d. -f2); - version=$(printf "%d.%d.0" $major $(($minor + 1))) ; - echo $version -} - -function nextMajorLevel() { - version=${1:-$(getRelease)} - major=$(echo $version | cut -d. -f1); - version=$(printf "%d.0.0" $(($major + 1))) - echo $version -} - - -echo getVersion=$(getVersion) -echo getTag=$(getTag) -echo differsFromRelease=$(differsFromRelease) -echo tagExists=$(tagExists) -echo test=$(test -n "$(git diff --shortstat -r $getTag .)") -echo "$(getBaseTag)$1" - -echo $(git diff --shortstat -r $tag .) \ No newline at end of file diff --git a/docker/tango/ska-python-buildenv/test/Makefile b/docker/tango/ska-python-buildenv/test/Makefile deleted file mode 100644 index 3e8a2bbc0d987fb95e21676d1fcfe37eee01184e..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/test/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -all: test - -test: - # It takes several seconds for the Tango database to be populated from - # scratch, so pause until DB is created and the device we test against is - # responsive. If the Tango DB volume already exists, there'll be no delay - # at all and the test will run immediately. - retry -- tango_admin --check-device sys/tg_test/1 - pytest SimpleTest.py - -.PHONY: all test diff --git a/docker/tango/ska-python-buildenv/test/SimpleTest.py b/docker/tango/ska-python-buildenv/test/SimpleTest.py deleted file mode 100644 index 821f23b6443d18b0d9ad4ff0ca4b746b86858d37..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-buildenv/test/SimpleTest.py +++ /dev/null @@ -1,6 +0,0 @@ -import tango - - -def test_test_device_is_running(): - tango_test = tango.DeviceProxy("sys/tg_test/1") - assert tango_test.state() == tango.DevState.RUNNING diff --git a/docker/tango/ska-python-runtime/.release b/docker/tango/ska-python-runtime/.release deleted file mode 100644 index 2c9e0cc2552ba51cb740c684a27ee53dd76f6614..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-runtime/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.2.1 -tag=ska-python-runtime-9.3.2.1 diff --git a/docker/tango/ska-python-runtime/Dockerfile b/docker/tango/ska-python-runtime/Dockerfile deleted file mode 100644 index dbc9186f0fdd432654fe386f7db1bb1f2024c28a..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-runtime/Dockerfile +++ /dev/null @@ -1,47 +0,0 @@ -# -# This Dockerfile creates a Docker image intended to be a base runtime for SKA -# python projects. This image should be used as an intermediate layer -# alongside the ska-python-buildenv image. -# -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-buildenv:latest as buildenv - -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest -USER root - -# Permanently install Python and PyTango runtime dependencies: -# -# * libboost-python is required by PyTango; -# * make is required to manage execution of the tests inside the container -# * python3 is required as this image is intended for running Python Tango -# devices. -# -RUN runtimeDeps='libboost-python1.67.0 \ - ca-certificates \ - make \ - curl \ - python3 \ - python3-distutils' \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/30proxy - - -COPY --from=buildenv /usr/local/lib/python3.7 /usr/local/lib/python3.7 - -RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py -COPY pip.conf /etc/pip.conf - -RUN mkdir /venv && ln -s /usr/* /venv/ && ln -s /usr/bin/python3 /venv/bin/python && ln -s /usr/local/bin/itango3 /venv/bin/itango3 - -USER tango - -ENV PATH="/home/tango/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}" - -ONBUILD COPY --chown=tango:tango . /app -ONBUILD COPY --from=buildenv /usr/local/bin/ /usr/local/bin/ -ONBUILD WORKDIR /app diff --git a/docker/tango/ska-python-runtime/Makefile b/docker/tango/ska-python-runtime/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-runtime/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/ska-python-runtime/pip.conf b/docker/tango/ska-python-runtime/pip.conf deleted file mode 100644 index 41d1dce5e2cce9176483b21e87ebf2c1cf5f1f6c..0000000000000000000000000000000000000000 --- a/docker/tango/ska-python-runtime/pip.conf +++ /dev/null @@ -1,4 +0,0 @@ -[global] -index-url = https://nexus.engageska-portugal.pt/repository/pypi/simple -extra-index-url = https://pypi.org/simple -disable-pip-version-check = True diff --git a/docker/tango/tango-admin/.release b/docker/tango/tango-admin/.release deleted file mode 100644 index 961459685995eddf0c4747930e798b6c69339686..0000000000000000000000000000000000000000 --- a/docker/tango/tango-admin/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.15.0.1 -tag=tango-admin-1.15.0.1 diff --git a/docker/tango/tango-admin/Dockerfile b/docker/tango/tango-admin/Dockerfile deleted file mode 100644 index 493e7c1a3e5071280f8707a1969bf0cb534c37d6..0000000000000000000000000000000000000000 --- a/docker/tango/tango-admin/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-libtango:latest - -ENTRYPOINT ["/usr/local/bin/tango_admin"] - - diff --git a/docker/tango/tango-admin/Makefile b/docker/tango/tango-admin/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-admin/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-archiver/.release b/docker/tango/tango-archiver/.release deleted file mode 100644 index b022c1dce3b03ffb12f3c709a12b161c73aee8e4..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.0.0.2 -tag=tango-archiver-1.0.0.2 diff --git a/docker/tango/tango-archiver/Dockerfile b/docker/tango/tango-archiver/Dockerfile deleted file mode 100644 index 1a71c9a49affdb3784c1ba6dd3d8742d82906345..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/Dockerfile +++ /dev/null @@ -1,147 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - -USER root - -RUN apt-get update && \ - apt-get install -y ca-certificates - -RUN echo "deb http://deb.debian.org/debian buster-backports main contrib non-free" >> /etc/apt/sources.list && \ - more /etc/apt/sources.list && \ - apt-get update && \ - apt-get install -y \ - checkinstall \ - git \ - cmake \ - make \ - g++ \ - libomniorb4-dev \ - libzmq3-dev \ - libcos4-dev \ - mariadb-server \ - libmariadb-dev-compat libmariadb-dev \ - libmariadbclient-dev - -RUN git clone -b v1.0.0 --depth 1 https://github.com/tango-controls-hdbpp/libhdbpp.git - -RUN cd libhdbpp \ - && mkdir build \ - && cd build \ - && cmake .. -DHDBPP_DEV_INSTALL=ON -DCMAKE_INCLUDE_PATH=/usr/local/include/tango \ - && make -j4 - -RUN cd libhdbpp/build \ - && checkinstall \ - --install=yes \ - --fstrans=no \ - --showinstall=no \ - --backup=no \ - --type=debian \ - --pkgsource="https://github.com/tango-controls-hdbpp/libhdbpp" \ - --pkglicense="LGPLv3" \ - --deldesc=no \ - --nodoc \ - --strip \ - --stripso \ - --maintainer="tango" \ - --pkgarch=$(dpkg --print-architecture) \ - --pkgversion="1.0.0" \ - --pkgrelease="SNAPSHOT" \ - --pkgname="libhdbpp" \ - --requires="libzmq5,libomniorb4-2,libcos4-2,libomnithread4" \ - make install - -RUN git clone -b v1.1.0 --depth 1 https://github.com/tango-controls-hdbpp/libhdbpp-mysql.git - -RUN cd libhdbpp-mysql \ - && make TANGO_INC=/usr/local/include/tango - -RUN cd libhdbpp-mysql \ - && checkinstall \ - --install=yes \ - --fstrans=no \ - --showinstall=no \ - --backup=no \ - --type=debian \ - --pkgsource="https://github.com/tango-controls-hdbpp/libhdbpp-mysql" \ - --pkglicense="LGPLv3" \ - --deldesc=no \ - --nodoc \ - --strip \ - --stripso \ - --maintainer="tango" \ - --pkgarch=$(dpkg --print-architecture) \ - --pkgversion="1.1.0" \ - --pkgrelease="SNAPSHOT" \ - --pkgname="libhdbpp-mysql" \ - --requires="libmariadbclient-dev" \ - make install - -RUN git clone -b v1.0.1 --depth 1 https://github.com/tango-controls-hdbpp/hdbpp-es.git - -RUN cd hdbpp-es \ - && make TANGO_INC=/usr/local/include/tango - -RUN cd hdbpp-es \ - && checkinstall \ - --install=yes \ - --fstrans=no \ - --showinstall=no \ - --backup=no \ - --type=debian \ - --pkgsource="https://github.com/tango-controls-hdbpp/hdbpp-es" \ - --pkglicense="GPLv3" \ - --deldesc=no \ - --nodoc \ - --strip \ - --stripso \ - --maintainer="tango" \ - --pkgarch=$(dpkg --print-architecture) \ - --pkgversion="1.0.1" \ - --pkgrelease="SNAPSHOT" \ - --pkgname="hdbpp-es" \ - --requires="libzmq5,libomniorb4-2,libcos4-2,libomnithread4" \ - make install - -RUN git clone -b v1.0.0 --depth 1 https://github.com/tango-controls-hdbpp/hdbpp-cm.git - -RUN cd hdbpp-cm \ - && make TANGO_INC=/usr/local/include/tango - -RUN cd hdbpp-cm \ - && checkinstall \ - --install=yes \ - --fstrans=no \ - --showinstall=no \ - --backup=no \ - --type=debian \ - --pkgsource="https://github.com/tango-controls-hdbpp/hdbpp-cm" \ - --pkglicense="GPLv3" \ - --deldesc=no \ - --nodoc \ - --strip \ - --stripso \ - --maintainer="tango" \ - --pkgarch=$(dpkg --print-architecture) \ - --pkgversion="1.0.0" \ - --pkgrelease="SNAPSHOT" \ - --pkgname="hdbpp-cm" \ - --requires="libzmq5,libomniorb4-2,libcos4-2,libomnithread4" \ - make install - - -RUN apt-get update && \ - apt-get install -y \ - build-essential && \ - apt-get clean - -RUN dpkg -i /libhdbpp/build/libhdbpp_1.0.0-SNAPSHOT_amd64.deb -RUN dpkg -i /libhdbpp-mysql/libhdbpp-mysql_1.1.0-SNAPSHOT_amd64.deb -RUN dpkg -i /hdbpp-es/hdbpp-es_1.0.1-SNAPSHOT_amd64.deb -RUN dpkg -i /hdbpp-cm/hdbpp-cm_1.0.0-SNAPSHOT_amd64.deb - -RUN ldconfig - -RUN mv /usr/local/bin/hdb++cm-srv /usr/local/bin/hdbppcm-srv -RUN mv /usr/local/bin/hdb++es-srv /usr/local/bin/hdbppes-srv diff --git a/docker/tango/tango-archiver/Makefile b/docker/tango/tango-archiver/Makefile deleted file mode 100644 index 4b329d951b639e1619b6c5c5857c82a14f3358b8..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/Makefile +++ /dev/null @@ -1,85 +0,0 @@ -include ../../make/Makefile - -# name of the Docker volume used to cache eggs and wheels -CACHE_VOLUME = tango-archiver-test-cache - -# defines the image to test -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/tango-itango:latest - -THIS_HOST := $(shell ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p' | head -n1) - -ifneq ($(CI_JOB_ID),) -NETWORK_MODE := tangonet-$(CI_JOB_ID) -CONTAINER_NAME_PREFIX := $(CI_JOB_ID)- -else -# ******** -# Patch Matteo 20/02/2020 network mode cannot be host in this case. -# For enabling the host network, it is necessary to template the archiver-devices.json configuration file. -NETWORK_MODE := tangonet-local -CONTAINER_NAME_PREFIX := local- -# ******** -endif - -# -# When running in network=host mode, point devices at a port on the host -# machine rather than at the container. -# -ifeq ($(OS),Windows_NT) - $(error Sorry, Windows is not supported yet) -else - UNAME_S := $(shell uname -s) - ifeq ($(UNAME_S),Linux) - DISPLAY ?= :0.0 - NETWORK_MODE ?= host - XAUTHORITY_MOUNT := /tmp/.X11-unix:/tmp/.X11-unix - XAUTHORITY ?= /hosthome/.Xauthority - # /bin/sh (=dash) does not evaluate 'docker network' conditionals correctly - SHELL := /bin/bash - endif - ifeq ($(UNAME_S),Darwin) - IF_INTERFACE := $(shell scutil --nwi | grep 'Network interfaces:' | cut -d' ' -f3) - DISPLAY := $(shell scutil --nwi | grep 'address' | cut -d':' -f2 | tr -d ' ' | head -n1):0 - # network_mode = host doesn't work on MacOS, so fix to the internal network - NETWORK_MODE ?= tangonet - XAUTHORITY_MOUNT := $(HOME)/.Xauthority:/hosthome/.Xauthority:ro - XAUTHORITY := /hosthome/.Xauthority - endif -endif - -# -# When running in network=host mode, point devices at a port on the host -# machine rather than at the container. -# -ifeq ($(NETWORK_MODE),host) - TANGO_HOST := $(shell hostname):10000 - MYSQL_HOST := $(shell hostname):3306 -else - TANGO_HOST := $(CONTAINER_NAME_PREFIX)databaseds:10000 - MYSQL_HOST := $(CONTAINER_NAME_PREFIX)tangodb:3306 -endif - -DOCKER_COMPOSE_ARGS := PWD=$(CURDIR) DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) DISPLAY=$(DISPLAY) XAUTHORITY=$(XAUTHORITY) TANGO_HOST=$(TANGO_HOST) \ - NETWORK_MODE=$(NETWORK_MODE) XAUTHORITY_MOUNT=$(XAUTHORITY_MOUNT) MYSQL_HOST=$(MYSQL_HOST) \ - CONTAINER_NAME_PREFIX=$(CONTAINER_NAME_PREFIX) COMPOSE_IGNORE_ORPHANS=true - -make = tar -c test/ | \ - docker run -i --rm --network=$(NETWORK_MODE) \ - $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - bash -c "tar x --strip-components 1 --warning=all && \ - make TANGO_HOST=$(TANGO_HOST) $1" - -all: test - -test: -ifneq ($(NETWORK_MODE),host) - docker network inspect $(NETWORK_MODE) &> /dev/null || ([ $$? -ne 0 ] && docker network create $(NETWORK_MODE)) -endif - $(DOCKER_COMPOSE_ARGS) docker-compose up -d - $(call make,test); \ - status=$$?; \ - docker-compose logs; \ - $(DOCKER_COMPOSE_ARGS) docker-compose down; \ - exit $$status - -.PHONY: all test diff --git a/docker/tango/tango-archiver/README.md b/docker/tango/tango-archiver/README.md deleted file mode 100644 index 21fd143aa0c9f9c680e5a4c17a2ae315abd2382b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# Tango-archiver Docker Containers - -[](https://developer.skatelescope.org/projects/ska-docker/en/latest/?badge=latest) - - -# 1: Introduction -The EventSubscriber TANGO device server, or Archiver, is the archiving system engine. It contains mainly two components -Event Subscriber and Configuration Manager. It subscribes to archive events on request by the Configuration Manager -device and stores the configuration into the TANGO database. The EventSubscriber is designed to start archiving all -the already configured attributes, even if the Configuration Manager is not running. Moreover, being a TANGO device, the -EventSubscriber configuration can be managed with Jive. - -Note: the version of the present docker image comes from the libhdbpp installed (1.0.0) - -# 2: Prerequisites - Installation -* HDB++ library: libhdbpp -* HDB++ mysql library: libhdbpp-mysql -* HDB++ configuration manager: hdbpp-cm -* HDB++ event subscriber: hdbpp-es -* HDB++ viewer: hdbpp-viewer -* [HDB++ Installation Manual](https://docs.google.com/document/d/1QP3pU62j1v7RWvHeX72JG3s8FqgsCg-bD74xDLP2bSY/edit#heading=h.pqr2e1svlqll) -* [Link to HDB++ github repository](https://github.com/tango-controls-hdbpp) - -# 3: Creating docker containers for archiver -## 3.1: hdbpp-es (v1.0.1) -hdbpp-es is a Event Suscriber device server container. -[Link to hdbpp-es github repository](https://github.com/tango-controls-hdbpp/hdbpp-es) -nexus.engageska-portugal.pt/ska-docker/tango-archiver image with tag 'latest' is used for creating hdbpp-es container. -TANGO_HOST=${TANGO_HOST}, HdbManager=archiving/hdbpp/confmanager01 are the environment variables set at the time of -creating this container. The containers such as databaseds, archiver-dsconfig and maria-db should be up and running, -for the hdbpp-es container to start. - -## 3.2: hdbpp-cm (v1.0.0) -hdbpp-cm is a Configuration manager device server container. -[Link to hdbpp-cm github repository](https://github.com/tango-controls-hdbpp/hdbpp-cm) -nexus.engageska-portugal.pt/ska-docker/tango-archiver image with tag 'latest' is used to create hdbpp-cm container. -TANGO_HOST=${TANGO_HOST}, HdbManager=archiving/hdbpp/confmanager01 are the environment variables set at the time of -creating this container. The containers such as databaseds, archiver-dsconfig and maria-db should be up and running, -for the hdbpp-cm container to start. - -## 3.3: dsconfig -The data file, 'archiver-devices.json' runs in this container to configure all the TMC devices properties. -nexus.engageska-portugal.pt/ska-docker/tango-dsconfig image with tag 'latest' is used in this container. -TANGO_HOST=${TANGO_HOST} is the environment variable set inside this container at the time of creation. - -# 4: Running tango-archiver inside docker containers - -The tango-archiver is tested on dockers using the following command inside the ./tango-archiver - -`make test` diff --git a/docker/tango/tango-archiver/docker-compose.yml b/docker/tango/tango-archiver/docker-compose.yml deleted file mode 100644 index 3ab6f69dff0dd7d940f1e82b8f462b0bc994a58f..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/docker-compose.yml +++ /dev/null @@ -1,120 +0,0 @@ - -version: '2' - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - container_name: ${CONTAINER_NAME_PREFIX}tangodb - network_mode: ${NETWORK_MODE} - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - - databaseds: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - container_name: ${CONTAINER_NAME_PREFIX}databaseds - network_mode: ${NETWORK_MODE} - depends_on: - - tangodb - environment: - - MYSQL_HOST=${MYSQL_HOST} - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - TANGO_HOST=${TANGO_HOST} - entrypoint: - - /usr/local/bin/wait-for-it.sh - - ${MYSQL_HOST}:3306 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/DataBaseds - - "2" - - -ORBendPoint - - giop:tcp::10000 - restart: on-failure - - maria-db: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/mariadb_hdbpp:latest - container_name: archiver-maria-db - network_mode: ${NETWORK_MODE} - depends_on: - - databaseds - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=hdbpp - - MYSQL_HOST=archiver-maria-db:3306 - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - - hdbpp-es: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-archiver:latest - network_mode: ${NETWORK_MODE} - container_name: ${CONTAINER_NAME_PREFIX}hdbpp-es - depends_on: - - databaseds - - dsconfig - - maria-db - environment: - - TANGO_HOST=${TANGO_HOST} - - HdbManager=archiving/hdbpp/confmanager01 - command: > - /bin/bash -c " - wait-for-it.sh archiver-maria-db:3306 --timeout=30 --strict -- - wait-for-it.sh ${TANGO_HOST} --timeout=30 --strict -- - hdbppes-srv 01" - restart: on-failure - - hdbpp-cm: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-archiver:latest - network_mode: ${NETWORK_MODE} - container_name: ${CONTAINER_NAME_PREFIX}hdbpp-cm - depends_on: - - databaseds - - dsconfig - - maria-db - environment: - - TANGO_HOST=${TANGO_HOST} - - HdbManager=archiving/hdbpp/confmanager01 - command: > - /bin/bash -c " - wait-for-it.sh archiver-maria-db:3306 --timeout=30 --strict -- - wait-for-it.sh ${TANGO_HOST} --timeout=30 --strict -- - hdbppcm-srv 01" - restart: on-failure - - dsconfig: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-dsconfig:latest - container_name: ${CONTAINER_NAME_PREFIX}dsconfig - network_mode: ${NETWORK_MODE} - depends_on: - - databaseds - environment: - - TANGO_HOST=${TANGO_HOST} - command: > - sh -c "wait-for-it.sh ${TANGO_HOST} --timeout=30 --strict -- - json2tango -w -a -u /tango-archiver/data/archiver-devices.json && - sleep infinity" - volumes: - - .:/tango-archiver - restart: on-failure - - tangotest: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - container_name: ${CONTAINER_NAME_PREFIX}tangotest - network_mode: ${NETWORK_MODE} - environment: - - TANGO_HOST=${TANGO_HOST} - entrypoint: - - /usr/local/bin/wait-for-it.sh - - ${TANGO_HOST} - - --timeout=30 - - --strict - - -- - - /usr/local/bin/TangoTest - - test - restart: on-failure diff --git a/docker/tango/tango-archiver/test/Makefile b/docker/tango/tango-archiver/test/Makefile deleted file mode 100644 index 9c29d6a1762c0ae9aa8d9e1ac32caf4c46bba1b1..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/test/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -SHELL = /bin/bash -.SHELLFLAGS = -o pipefail -c - -all: test - -test: - retry --max=10 -- tango_admin --ping-device archiving/hdbpp/eventsubscriber01 && \ - pytest SimpleTest.py - -.PHONY: all test diff --git a/docker/tango/tango-archiver/test/SimpleTest.py b/docker/tango/tango-archiver/test/SimpleTest.py deleted file mode 100644 index 2b58a985496b03af0867bc716101841febb027a0..0000000000000000000000000000000000000000 --- a/docker/tango/tango-archiver/test/SimpleTest.py +++ /dev/null @@ -1,71 +0,0 @@ -import tango -from tango import DevFailed, DeviceProxy, GreenMode, AttributeProxy -import time -from time import sleep -import pytest -import logging - -def test_cm_device_is_ON(): - tango_test = tango.DeviceProxy("archiving/hdbpp/confmanager01") - time.sleep(2) - assert tango_test.state() == tango.DevState.ON - -def test_es_device_is_ON(): - tango_test = tango.DeviceProxy("archiving/hdbpp/eventsubscriber01") - time.sleep(2) - assert tango_test.state() == tango.DevState.ON - -def test_archiving(): - evt_subscriber_device_fqdn = "archiving/hdbpp/eventsubscriber01" - config_manager_device_fqdn = "archiving/hdbpp/confmanager01" - conf_manager_proxy = DeviceProxy(config_manager_device_fqdn) - evt_subscriber_device_proxy = DeviceProxy(evt_subscriber_device_fqdn) - - conf_manager_proxy.set_timeout_millis(5000) - evt_subscriber_device_proxy.set_timeout_millis(5000) - - attribute = "sys/tg_test/1/double_scalar" - - # wait for the attribute to be online. - max_retries = 10 - sleep_time = 30 - for x in range(0, max_retries): - try: - att = AttributeProxy(attribute) - att.read() - break - except DevFailed as df: - if(x == (max_retries -1)): - raise df - logging.info("DevFailed exception: " + str(df.args[0].reason) + ". Sleeping for " + str(sleep_time) + "ss") - sleep(sleep_time) - - conf_manager_proxy.write_attribute("SetAttributeName", attribute) - conf_manager_proxy.write_attribute("SetArchiver", evt_subscriber_device_fqdn) - conf_manager_proxy.write_attribute("SetStrategy", "ALWAYS") - conf_manager_proxy.write_attribute("SetPollingPeriod", 1000) - conf_manager_proxy.write_attribute("SetPeriodEvent", 3000) - - try: - conf_manager_proxy.command_inout("AttributeAdd") - except DevFailed as df: - if not str(df.args[0].reason) == 'Already archived': - logging.info("DevFailed exception: " + str(df.args[0].reason)) - - evt_subscriber_device_proxy.Start() - - max_retries = 10 - sleep_time = 1 - for x in range(0, max_retries): - try: - # Check status of Attribute Archiving in Configuration Manager - result_config_manager = conf_manager_proxy.command_inout("AttributeStatus", attribute) - # Check status of Attribute Archiving in Event Subscriber - result_evt_subscriber = evt_subscriber_device_proxy.command_inout("AttributeStatus", attribute) - assert "Archiving : Started" in result_config_manager - assert "Archiving : Started" in result_evt_subscriber - except DevFailed as df: - if(x == (max_retries -1)): - raise df - logging.info("DevFailed exception: " + str(df.args[0].reason) + ". Sleeping for " + str(sleep_time) + "ss") - sleep(sleep_time) diff --git a/docker/tango/tango-builder/.release b/docker/tango/tango-builder/.release deleted file mode 100644 index 69450113351ba3bf24cd67e3afa17c071b6c8742..0000000000000000000000000000000000000000 --- a/docker/tango/tango-builder/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=0.2.3 -tag=tango-builder-0.2.3 diff --git a/docker/tango/tango-builder/Dockerfile b/docker/tango/tango-builder/Dockerfile deleted file mode 100644 index c10f83f422f114d5d5721b964b7d89acc20254b7..0000000000000000000000000000000000000000 --- a/docker/tango/tango-builder/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM ubuntu:18.04 - -ENV DEBIAN_FRONTEND="noninteractive" -RUN apt-get update && apt-get install -y make bash git curl apt-transport-https ca-certificates curl software-properties-common -RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - -RUN apt-key fingerprint 0EBFCD88 -RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" -RUN apt-get update && apt-get install -y docker-ce -RUN export LC_ALL=C -# pip -RUN apt-get update && apt-get install -yq python3-distutils \ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ - && python3 get-pip.py -COPY pip.conf /etc/pip.conf -# /pip -RUN python3 -m pip install docker-compose -RUN python3 -m pip install pytest diff --git a/docker/tango/tango-builder/Makefile b/docker/tango/tango-builder/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-builder/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-builder/pip.conf b/docker/tango/tango-builder/pip.conf deleted file mode 100644 index 41d1dce5e2cce9176483b21e87ebf2c1cf5f1f6c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-builder/pip.conf +++ /dev/null @@ -1,4 +0,0 @@ -[global] -index-url = https://nexus.engageska-portugal.pt/repository/pypi/simple -extra-index-url = https://pypi.org/simple -disable-pip-version-check = True diff --git a/docker/tango/tango-cpp/.release b/docker/tango/tango-cpp/.release deleted file mode 100644 index ec7016a52056edd68b985232ea39502c367b1350..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.4-rc7 -tag=tango-cpp-9.3.4-rc7 diff --git a/docker/tango/tango-cpp/Dockerfile b/docker/tango/tango-cpp/Dockerfile deleted file mode 100644 index ef07fc9c4bba0d205d85e2a11683fdd5a377d6fa..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/Dockerfile +++ /dev/null @@ -1,47 +0,0 @@ -# -# This Dockerfile builds base Tango (C++ only, no Java or Python) in an -# intermediate image, then creates a release image containing the compiled -# binaries. -# -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-dependencies:latest as buildenv - -RUN TANGO_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/tango-cs/tango-9.3.4-rc7.tar.gz \ - # Speed up image builds by adding apt proxy if detected on host - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && buildDeps='build-essential ca-certificates curl file libmariadbclient-dev libmariadbclient-dev-compat pkg-config python' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $buildDeps \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir -p /usr/src/tango \ - && cd /usr/src/tango \ - && curl -fsSL "$TANGO_DOWNLOAD_URL" -o tango.tar.gz \ - && tar xf tango.tar.gz -C /usr/src/tango --strip-components=1 \ - && ./configure --with-zmq=/usr/local --with-omni=/usr/local --with-mysqlclient-prefix=/usr --enable-static=no \ - && make -C /usr/src/tango -j$(nproc) \ - && make -C /usr/src/tango install \ - && ldconfig \ - && apt-get purge -y --auto-remove $buildDeps \ - && rm -r /usr/src/tango - -FROM debian:buster-slim -COPY --from=buildenv /usr/local /usr/local - -RUN runtimeDeps='libmariadb3 sudo' \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* \ - && rm -f /etc/apt/apt.conf.d/30proxy - -RUN useradd --create-home --home-dir /home/tango tango - -RUN echo "tango ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/tango \ - && chmod 0440 /etc/sudoers.d/tango - -USER tango diff --git a/docker/tango/tango-cpp/Makefile b/docker/tango/tango-cpp/Makefile deleted file mode 100644 index 00c5b51376efa8657f89e4853a0f3c7cf9fd49f0..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -include ../../make/Makefile - -CACHE_VOLUME = tango-cpp-test-cache - -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/tango-cpp:latest - -DOCKER_COMPOSE_COMMAND = PWD=$(CURDIR) \ - DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) \ - docker-compose \ - -f docker-compose.yml - -make = tar -c test/ | \ - ./test/wait-for-it.sh -t 30 `docker inspect -f \ - '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(notdir $(CURDIR))_tangodb_1`:3306 --\ - docker run -i --rm --network=$(notdir $(CURDIR))_default \ - -v `pwd`/test/:/test \ - -v $(CACHE_VOLUME):/home/tango/.cache \ - -v /build -w /build $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - /test/test.sh $(notdir $(CURDIR))_tangodb_1 \ - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build - -all: test - -test: DOCKER_RUN_ARGS = --volumes-from=$(BUILD) -test: - $(INIT_CACHE) - $(DOCKER_COMPOSE_COMMAND) up -d - $(call make,test); \ - status=$$?; \ - docker rm -f -v $(BUILD); \ - $(DOCKER_COMPOSE_COMMAND) down; \ - exit $$status - -.PHONY: all test - - -# Creates Docker volume for use as a cache, if it doesn't exist already -INIT_CACHE = \ - docker volume ls | grep $(CACHE_VOLUME) || \ - docker create --name $(CACHE_VOLUME) -v $(CACHE_VOLUME):/cache $(IMAGE_TO_TEST) - -# http://cakoose.com/wiki/gnu_make_thunks -BUILD_GEN = $(shell docker create -v /build $(IMAGE_TO_TEST)) -BUILD = $(eval BUILD := $(BUILD_GEN))$(BUILD) diff --git a/docker/tango/tango-cpp/docker-compose.yml b/docker/tango/tango-cpp/docker-compose.yml deleted file mode 100644 index ecd08ed6df836a35da0bcadd0ce46e689ce8fd6a..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/docker-compose.yml +++ /dev/null @@ -1,43 +0,0 @@ -# -# Docker compose file for TANGO database and database device server -# -# Defines: -# - tangodb: MariaDB database with TANGO schema -# -# Requires: -# - None -# -version: '2' - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - - databaseds: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - depends_on: - - tangodb - environment: - - MYSQL_HOST=tangodb:3306 - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - tangodb:3306 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/DataBaseds - - "2" - - -ORBendPoint - - giop:tcp::10000 - restart: on-failure - diff --git a/docker/tango/tango-cpp/test/test.sh b/docker/tango/tango-cpp/test/test.sh deleted file mode 100755 index 70a29a6bbdcf7b739798f0beb00a1be82532986c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/test/test.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -export TANGO_HOST=databaseds:10000 - -tango_admin --ping-database 20 -result=$? - -if [ $result -eq 0 ] -then - echo "PASSED ping database" -else - echo "ERROR ping database" - exit 1 -fi - - -tango_admin --check-device sys/tg_test/1 -result=$? - -if [ $result -eq 0 ] -then - echo "PASSED check device tg_test" -else - echo "ERROR check device tg_test" - exit 1 -fi - -tango_admin --check-device sys/database/2 -result=$? - -if [ $result -eq 0 ] -then - echo "PASSED check device database" -else - echo "ERROR check device database" - exit 1 -fi diff --git a/docker/tango/tango-cpp/test/wait-for-it.sh b/docker/tango/tango-cpp/test/wait-for-it.sh deleted file mode 100755 index eca6c3b9c8c61aa6ce889c185c700ad094988cc2..0000000000000000000000000000000000000000 --- a/docker/tango/tango-cpp/test/wait-for-it.sh +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env bash -# Use this script to test if a given TCP host/port are available - -cmdname=$(basename $0) - -echoerr() { if [[ $QUIET -ne 1 ]]; then echo "$@" 1>&2; fi } - -usage() -{ - cat << USAGE >&2 -Usage: - $cmdname host:port [-s] [-t timeout] [-- command args] - -h HOST | --host=HOST Host or IP under test - -p PORT | --port=PORT TCP port under test - Alternatively, you specify the host and port as host:port - -s | --strict Only execute subcommand if the test succeeds - -q | --quiet Don't output any status messages - -t TIMEOUT | --timeout=TIMEOUT - Timeout in seconds, zero for no timeout - -- COMMAND ARGS Execute command with args after the test finishes -USAGE - exit 1 -} - -wait_for() -{ - if [[ $TIMEOUT -gt 0 ]]; then - echoerr "$cmdname: waiting $TIMEOUT seconds for $HOST:$PORT" - else - echoerr "$cmdname: waiting for $HOST:$PORT without a timeout" - fi - start_ts=$(date +%s) - while : - do - (echo > /dev/tcp/$HOST/$PORT) >/dev/null 2>&1 - result=$? - if [[ $result -eq 0 ]]; then - end_ts=$(date +%s) - echoerr "$cmdname: $HOST:$PORT is available after $((end_ts - start_ts)) seconds" - break - fi - sleep 1 - done - return $result -} - -wait_for_wrapper() -{ - # In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692 - if [[ $QUIET -eq 1 ]]; then - timeout $TIMEOUT $0 --quiet --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - else - timeout $TIMEOUT $0 --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - fi - PID=$! - trap "kill -INT -$PID" INT - wait $PID - RESULT=$? - if [[ $RESULT -ne 0 ]]; then - echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT" - fi - return $RESULT -} - -# process arguments -while [[ $# -gt 0 ]] -do - case "$1" in - *:* ) - hostport=(${1//:/ }) - HOST=${hostport[0]} - PORT=${hostport[1]} - shift 1 - ;; - --child) - CHILD=1 - shift 1 - ;; - -q | --quiet) - QUIET=1 - shift 1 - ;; - -s | --strict) - STRICT=1 - shift 1 - ;; - -h) - HOST="$2" - if [[ $HOST == "" ]]; then break; fi - shift 2 - ;; - --host=*) - HOST="${1#*=}" - shift 1 - ;; - -p) - PORT="$2" - if [[ $PORT == "" ]]; then break; fi - shift 2 - ;; - --port=*) - PORT="${1#*=}" - shift 1 - ;; - -t) - TIMEOUT="$2" - if [[ $TIMEOUT == "" ]]; then break; fi - shift 2 - ;; - --timeout=*) - TIMEOUT="${1#*=}" - shift 1 - ;; - --) - shift - CLI="$@" - break - ;; - --help) - usage - ;; - *) - echoerr "Unknown argument: $1" - usage - ;; - esac -done - -if [[ "$HOST" == "" || "$PORT" == "" ]]; then - echoerr "Error: you need to provide a host and port to test." - usage -fi - -TIMEOUT=${TIMEOUT:-15} -STRICT=${STRICT:-0} -CHILD=${CHILD:-0} -QUIET=${QUIET:-0} - -if [[ $CHILD -gt 0 ]]; then - wait_for - RESULT=$? - exit $RESULT -else - if [[ $TIMEOUT -gt 0 ]]; then - wait_for_wrapper - RESULT=$? - else - wait_for - RESULT=$? - fi -fi - -if [[ $CLI != "" ]]; then - if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then - echoerr "$cmdname: strict mode, refusing to execute subprocess" - exit $RESULT - fi - exec $CLI -else - exit $RESULT -fi diff --git a/docker/tango/tango-databaseds/.release b/docker/tango/tango-databaseds/.release deleted file mode 100644 index 401b782cc25e48a22d17d7deddb3095d15c891fb..0000000000000000000000000000000000000000 --- a/docker/tango/tango-databaseds/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=5.16 -tag=tango-databaseds-5.16 diff --git a/docker/tango/tango-databaseds/Dockerfile b/docker/tango/tango-databaseds/Dockerfile deleted file mode 100644 index c247368238e24e6ef1620e2a9918ab837c933ce6..0000000000000000000000000000000000000000 --- a/docker/tango/tango-databaseds/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-libtango:latest - -ENTRYPOINT ["/usr/local/bin/DataBaseds"] - -CMD ["2", "-ORBendPoint", "giop:tcp::10000"] - diff --git a/docker/tango/tango-databaseds/Makefile b/docker/tango/tango-databaseds/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-databaseds/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-db/.release b/docker/tango/tango-db/.release deleted file mode 100644 index 103994f363e5bedb3db37dbf2bee9d6558bb5b6c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=10.4.10 -tag=tango-db-10.4.10 diff --git a/docker/tango/tango-db/Dockerfile b/docker/tango/tango-db/Dockerfile deleted file mode 100644 index cf86046230198b4b1b3cc61357a46713b78f799d..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM mariadb:10 - -ENV TANGO_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/tango-cs/tango-9.3.3-rc2.tar.gz - -RUN buildDeps='curl ca-certificates' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install --no-install-recommends $buildDeps \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir -p /usr/src/tango \ - && cd /usr/src/tango \ - && curl -fsSL "$TANGO_DOWNLOAD_URL" -o tango.tar.gz \ - && tar xf tango.tar.gz -C /usr/src/tango --strip-components=1 \ - && mkdir -p dbinit/include \ - && cp cppserver/database/create_db.sql.in dbinit/create_db.sql \ - && cp cppserver/database/create_db_tables.sql.in dbinit/include/create_db_tables.sql \ - && cp cppserver/database/stored_proc.sql.in dbinit/include/stored_proc.sql \ - && sed -i "s|@TANGO_DB_NAME@|tango|g" dbinit/create_db.sql \ - && sed -i "s|@TANGO_DB_NAME@|tango|g" dbinit/include/create_db_tables.sql \ - && sed -i "s|@TANGO_DB_NAME@|tango|g" dbinit/include/stored_proc.sql \ - && sed -i "s|^source create_db_tables.sql$|source /docker-entrypoint-initdb.d/include/create_db_tables.sql|g" dbinit/create_db.sql \ - && sed -i "s|^source stored_proc.sql$|source /docker-entrypoint-initdb.d/include/stored_proc.sql|g" dbinit/create_db.sql \ - && sed -i "/CREATE DATABASE tango;/d" dbinit/create_db.sql \ - && cp -r dbinit/* /docker-entrypoint-initdb.d \ - && apt-get purge -y --auto-remove $buildDeps \ - && rm -r /usr/src/tango - -COPY sql_mode.cnf /etc/mysql/conf.d diff --git a/docker/tango/tango-db/Makefile b/docker/tango/tango-db/Makefile deleted file mode 100644 index 7ff0e72caeecafad8c527f807b11ee6fcb1a76a0..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -include ../../make/Makefile - -CACHE_VOLUME = tango-db-test-cache - -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/tango-db:latest - -DOCKER_COMPOSE_COMMAND = PWD=$(CURDIR) \ - DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) \ - docker-compose \ - -f docker-compose.yml - -make = tar -c test/ | \ - ./test/wait-for-it.sh -t 30 `docker inspect -f \ - '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(notdir $(CURDIR))_tangodb_1`:3306 --\ - docker run -i --rm --network=$(notdir $(CURDIR))_default \ - -v `pwd`/test/:/test \ - -v $(CACHE_VOLUME):/home/tango/.cache \ - -v /build -w /build $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - /test/test.sh $(notdir $(CURDIR))_tangodb_1 \ - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build - -all: test - -test: DOCKER_RUN_ARGS = --volumes-from=$(BUILD) -test: - $(INIT_CACHE) - $(DOCKER_COMPOSE_COMMAND) up -d - $(call make,test); \ - status=$$?; \ - docker rm -f -v $(BUILD); \ - $(DOCKER_COMPOSE_COMMAND) down; \ - exit $$status - -.PHONY: all test - - -# Creates Docker volume for use as a cache, if it doesn't exist already -INIT_CACHE = \ - docker volume ls | grep $(CACHE_VOLUME) || \ - docker create --name $(CACHE_VOLUME) -v $(CACHE_VOLUME):/cache $(IMAGE_TO_TEST) - -# http://cakoose.com/wiki/gnu_make_thunks -BUILD_GEN = $(shell docker create -v /build $(IMAGE_TO_TEST)) -BUILD = $(eval BUILD := $(BUILD_GEN))$(BUILD) diff --git a/docker/tango/tango-db/docker-compose.yml b/docker/tango/tango-db/docker-compose.yml deleted file mode 100644 index 08c73ac2413f764b6355b597b9cefa2e6d4ef2ca..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/docker-compose.yml +++ /dev/null @@ -1,21 +0,0 @@ -# -# Docker compose file for TANGO database and database device server -# -# Defines: -# - tangodb: MariaDB database with TANGO schema -# -# Requires: -# - None -# -version: '2' - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - diff --git a/docker/tango/tango-db/sql_mode.cnf b/docker/tango/tango-db/sql_mode.cnf deleted file mode 100644 index 43da6b690b0033905dae22fad8dec245a7a616a3..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/sql_mode.cnf +++ /dev/null @@ -1,4 +0,0 @@ -[mysqld] -sql-mode="" -innodb=OFF -default_storage_engine=MyISAM diff --git a/docker/tango/tango-db/test/test.sh b/docker/tango/tango-db/test/test.sh deleted file mode 100755 index 6e8dfc397ada99a33f7baaf0476dc3a427cc7bb0..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/test/test.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -result=$(mysql -h $1 -u tango -ptango <<< 'show databases') - -if [[ $result =~ "tango" ]] -then - echo "PASSED" -else - echo "ERROR" - exit 1 -fi diff --git a/docker/tango/tango-db/test/wait-for-it.sh b/docker/tango/tango-db/test/wait-for-it.sh deleted file mode 100755 index eca6c3b9c8c61aa6ce889c185c700ad094988cc2..0000000000000000000000000000000000000000 --- a/docker/tango/tango-db/test/wait-for-it.sh +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env bash -# Use this script to test if a given TCP host/port are available - -cmdname=$(basename $0) - -echoerr() { if [[ $QUIET -ne 1 ]]; then echo "$@" 1>&2; fi } - -usage() -{ - cat << USAGE >&2 -Usage: - $cmdname host:port [-s] [-t timeout] [-- command args] - -h HOST | --host=HOST Host or IP under test - -p PORT | --port=PORT TCP port under test - Alternatively, you specify the host and port as host:port - -s | --strict Only execute subcommand if the test succeeds - -q | --quiet Don't output any status messages - -t TIMEOUT | --timeout=TIMEOUT - Timeout in seconds, zero for no timeout - -- COMMAND ARGS Execute command with args after the test finishes -USAGE - exit 1 -} - -wait_for() -{ - if [[ $TIMEOUT -gt 0 ]]; then - echoerr "$cmdname: waiting $TIMEOUT seconds for $HOST:$PORT" - else - echoerr "$cmdname: waiting for $HOST:$PORT without a timeout" - fi - start_ts=$(date +%s) - while : - do - (echo > /dev/tcp/$HOST/$PORT) >/dev/null 2>&1 - result=$? - if [[ $result -eq 0 ]]; then - end_ts=$(date +%s) - echoerr "$cmdname: $HOST:$PORT is available after $((end_ts - start_ts)) seconds" - break - fi - sleep 1 - done - return $result -} - -wait_for_wrapper() -{ - # In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692 - if [[ $QUIET -eq 1 ]]; then - timeout $TIMEOUT $0 --quiet --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - else - timeout $TIMEOUT $0 --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - fi - PID=$! - trap "kill -INT -$PID" INT - wait $PID - RESULT=$? - if [[ $RESULT -ne 0 ]]; then - echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT" - fi - return $RESULT -} - -# process arguments -while [[ $# -gt 0 ]] -do - case "$1" in - *:* ) - hostport=(${1//:/ }) - HOST=${hostport[0]} - PORT=${hostport[1]} - shift 1 - ;; - --child) - CHILD=1 - shift 1 - ;; - -q | --quiet) - QUIET=1 - shift 1 - ;; - -s | --strict) - STRICT=1 - shift 1 - ;; - -h) - HOST="$2" - if [[ $HOST == "" ]]; then break; fi - shift 2 - ;; - --host=*) - HOST="${1#*=}" - shift 1 - ;; - -p) - PORT="$2" - if [[ $PORT == "" ]]; then break; fi - shift 2 - ;; - --port=*) - PORT="${1#*=}" - shift 1 - ;; - -t) - TIMEOUT="$2" - if [[ $TIMEOUT == "" ]]; then break; fi - shift 2 - ;; - --timeout=*) - TIMEOUT="${1#*=}" - shift 1 - ;; - --) - shift - CLI="$@" - break - ;; - --help) - usage - ;; - *) - echoerr "Unknown argument: $1" - usage - ;; - esac -done - -if [[ "$HOST" == "" || "$PORT" == "" ]]; then - echoerr "Error: you need to provide a host and port to test." - usage -fi - -TIMEOUT=${TIMEOUT:-15} -STRICT=${STRICT:-0} -CHILD=${CHILD:-0} -QUIET=${QUIET:-0} - -if [[ $CHILD -gt 0 ]]; then - wait_for - RESULT=$? - exit $RESULT -else - if [[ $TIMEOUT -gt 0 ]]; then - wait_for_wrapper - RESULT=$? - else - wait_for - RESULT=$? - fi -fi - -if [[ $CLI != "" ]]; then - if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then - echoerr "$cmdname: strict mode, refusing to execute subprocess" - exit $RESULT - fi - exec $CLI -else - exit $RESULT -fi diff --git a/docker/tango/tango-dependencies/.release b/docker/tango/tango-dependencies/.release deleted file mode 100644 index af544554bbe26d7ee06b680a9fd919f0c06a893d..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dependencies/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.3 -tag=tango-dependencies-9.3.3 diff --git a/docker/tango/tango-dependencies/Dockerfile b/docker/tango/tango-dependencies/Dockerfile deleted file mode 100644 index 0acb2b7069fb8f3d502901976399ff1a83b770f3..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dependencies/Dockerfile +++ /dev/null @@ -1,66 +0,0 @@ -# -# This Dockerfile compiles Tango dependencies (ZeroMQ and OmniORB) in an -# intermediate image, then creates a release image containing the compiled -# binaries. -# -FROM debian:buster-slim as buildenv - -# Copy across files that are used to help orchestrate container compositions -# and test execution sequences -COPY wait-for-it.sh /usr/local/bin/wait-for-it.sh -COPY retry.sh /usr/local/bin/retry - -RUN DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" - -RUN ZEROMQ_DOWNLOAD_URL=https://github.com/zeromq/libzmq/archive/v4.3.2.tar.gz \ - && buildDeps='autoconf automake build-essential ca-certificates curl libkrb5-dev libtool pkg-config unzip' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install $buildDeps --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir /usr/src/zeromq \ - && cd /usr/src/zeromq \ - && curl -kfsSL "$ZEROMQ_DOWNLOAD_URL" -o zeromq.tar.gz \ - && tar xf zeromq.tar.gz -C /usr/src/zeromq --strip-components=1 \ - && ./autogen.sh \ - && ./configure --enable-static=no \ - && make -C /usr/src/zeromq -j$(nproc) \ - && make -C /usr/src/zeromq install \ - && rm -r /usr/src/zeromq - - -RUN CPPZMQ_DOWNLOAD_URL=https://github.com/zeromq/cppzmq/archive/v4.4.1.tar.gz \ - && buildDeps='autoconf automake build-essential ca-certificates curl libkrb5-dev libtool pkg-config unzip cmake' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install $buildDeps --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir /usr/src/cppzmq \ - && cd /usr/src/cppzmq \ - && curl -kfsSL "$CPPZMQ_DOWNLOAD_URL" -o cppzmq.tar.gz \ - && tar xf cppzmq.tar.gz -C /usr/src/cppzmq --strip-components=1 \ - && mkdir build \ - && cd build \ - && cmake .. \ - && make -j4 install \ - && apt-get purge -y --auto-remove $buildDeps \ - && rm -r /usr/src/cppzmq - -RUN OMNIORB_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/omniorb/omniORB-4.2.3.tar.bz2 \ - && buildDeps='build-essential ca-certificates curl python-dev python-pkgconfig' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install --no-install-recommends $buildDeps \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir -p /usr/src/omniorb \ - && cd /usr/src/omniorb \ - && curl -kfsSL "$OMNIORB_DOWNLOAD_URL" -o omniorb.tar.bz2 \ - && tar xf omniorb.tar.bz2 -C /usr/src/omniorb --strip-components=1 \ - && ./configure --enable-static=no \ - && make -C /usr/src/omniorb -j$(nproc) \ - && make -C /usr/src/omniorb install \ - && apt-get purge -y --auto-remove $buildDeps \ - && rm -r /usr/src/omniorb - -FROM debian:buster-slim -COPY --from=buildenv /usr/local /usr/local - diff --git a/docker/tango/tango-dependencies/Makefile b/docker/tango/tango-dependencies/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dependencies/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-dependencies/retry.sh b/docker/tango/tango-dependencies/retry.sh deleted file mode 100755 index 0e5f6e97014db2377acecf3e84e44b1b1ca1f683..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dependencies/retry.sh +++ /dev/null @@ -1,163 +0,0 @@ -#!/usr/bin/env bash - -GETOPT_BIN=$IN_GETOPT_BIN -GETOPT_BIN=${GETOPT_BIN:-getopt} - -__sleep_amount() { - if [ -n "$constant_sleep" ]; then - sleep_time=$constant_sleep - else - #TODO: check for awk - #TODO: check if user would rather use one of the other possible dependencies: python, ruby, bc, dc - sleep_time=`awk "BEGIN {t = $min_sleep * $(( (1<<($attempts -1)) )); print (t > $max_sleep ? $max_sleep : t)}"` - fi -} - -__log_out() { - echo "$1" 1>&2 -} - -# Paramters: max_tries min_sleep max_sleep constant_sleep fail_script EXECUTION_COMMAND -retry() -{ - local max_tries="$1"; shift - local min_sleep="$1"; shift - local max_sleep="$1"; shift - local constant_sleep="$1"; shift - local fail_script="$1"; shift - if [ -n "$VERBOSE" ]; then - __log_out "Retry Parameters: max_tries=$max_tries min_sleep=$min_sleep max_sleep=$max_sleep constant_sleep=$constant_sleep" - if [ -n "$fail_script" ]; then __log_out "Fail script: $fail_script"; fi - __log_out "" - __log_out "Execution Command: $*" - __log_out "" - fi - - local attempts=0 - local return_code=1 - - - while [[ $return_code -ne 0 && $attempts -le $max_tries ]]; do - if [ $attempts -gt 0 ]; then - __sleep_amount - __log_out "Before retry #$attempts: sleeping $sleep_time seconds" - sleep $sleep_time - fi - - P="$1" - for param in "${@:2}"; do P="$P '$param'"; done - #TODO: replace single quotes in each arg with '"'"' ? - export RETRY_ATTEMPT=$attempts - bash -c "$P" - return_code=$? - #__log_out "Process returned $return_code on attempt $attempts" - if [ $return_code -eq 127 ]; then - # command not found - exit $return_code - elif [ $return_code -ne 0 ]; then - attempts=$[$attempts +1] - fi - done - - if [ $attempts -gt $max_tries ]; then - if [ -n "$fail_script" ]; then - __log_out "Retries exhausted, running fail script" - eval $fail_script - else - __log_out "Retries exhausted" - fi - fi - - exit $return_code -} - -# If we're being sourced, don't worry about such things -if [ "$BASH_SOURCE" == "$0" ]; then - # Prints the help text - help() - { - local retry=$(basename $0) - cat <<EOF -Usage: $retry [options] -- execute command - -h, -?, --help - -v, --verbose Verbose output - -t, --tries=# Set max retries: Default 10 - -s, --sleep=secs Constant sleep amount (seconds) - -m, --min=secs Exponenetial Backoff: minimum sleep amount (seconds): Default 0.3 - -x, --max=secs Exponenetial Backoff: maximum sleep amount (seconds): Default 60 - -f, --fail="script +cmds" Fail Script: run in case of final failure -EOF - } - - # show help for no arguments if stdin is a terminal - if { [ -z "$1" ] && [ -t 0 ] ; } || [ "$1" == '-h' ] || [ "$1" == '-?' ] || [ "$1" == '--help' ] - then - help - exit 0 - fi - - $GETOPT_BIN --test > /dev/null - if [[ $? -ne 4 ]]; then - echo "I’m sorry, 'getopt --test' failed in this environment. Please load GNU getopt." - exit 1 - fi - - OPTIONS=vt:s:m:x:f: - LONGOPTIONS=verbose,tries:,sleep:,min:,max:,fail: - - PARSED=$($GETOPT_BIN --options="$OPTIONS" --longoptions="$LONGOPTIONS" --name "$0" -- "$@") - if [[ $? -ne 0 ]]; then - # e.g. $? == 1 - # then getopt has complained about wrong arguments to stdout - exit 2 - fi - # read getopt’s output this way to handle the quoting right: - eval set -- "$PARSED" - - max_tries=10 - min_sleep=0.3 - max_sleep=60.0 - constant_sleep= - fail_script= - - # now enjoy the options in order and nicely split until we see -- - while true; do - case "$1" in - -v|--verbose) - VERBOSE=true - shift - ;; - -t|--tries) - max_tries="$2" - shift 2 - ;; - -s|--sleep) - constant_sleep="$2" - shift 2 - ;; - -m|--min) - min_sleep="$2" - shift 2 - ;; - -x|--max) - max_sleep="$2" - shift 2 - ;; - -f|--fail) - fail_script="$2" - shift 2 - ;; - --) - shift - break - ;; - *) - echo "Programming error" - exit 3 - ;; - esac - done - - retry "$max_tries" "$min_sleep" "$max_sleep" "$constant_sleep" "$fail_script" "$@" - -fi diff --git a/docker/tango/tango-dependencies/wait-for-it.sh b/docker/tango/tango-dependencies/wait-for-it.sh deleted file mode 100755 index eca6c3b9c8c61aa6ce889c185c700ad094988cc2..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dependencies/wait-for-it.sh +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env bash -# Use this script to test if a given TCP host/port are available - -cmdname=$(basename $0) - -echoerr() { if [[ $QUIET -ne 1 ]]; then echo "$@" 1>&2; fi } - -usage() -{ - cat << USAGE >&2 -Usage: - $cmdname host:port [-s] [-t timeout] [-- command args] - -h HOST | --host=HOST Host or IP under test - -p PORT | --port=PORT TCP port under test - Alternatively, you specify the host and port as host:port - -s | --strict Only execute subcommand if the test succeeds - -q | --quiet Don't output any status messages - -t TIMEOUT | --timeout=TIMEOUT - Timeout in seconds, zero for no timeout - -- COMMAND ARGS Execute command with args after the test finishes -USAGE - exit 1 -} - -wait_for() -{ - if [[ $TIMEOUT -gt 0 ]]; then - echoerr "$cmdname: waiting $TIMEOUT seconds for $HOST:$PORT" - else - echoerr "$cmdname: waiting for $HOST:$PORT without a timeout" - fi - start_ts=$(date +%s) - while : - do - (echo > /dev/tcp/$HOST/$PORT) >/dev/null 2>&1 - result=$? - if [[ $result -eq 0 ]]; then - end_ts=$(date +%s) - echoerr "$cmdname: $HOST:$PORT is available after $((end_ts - start_ts)) seconds" - break - fi - sleep 1 - done - return $result -} - -wait_for_wrapper() -{ - # In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692 - if [[ $QUIET -eq 1 ]]; then - timeout $TIMEOUT $0 --quiet --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - else - timeout $TIMEOUT $0 --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - fi - PID=$! - trap "kill -INT -$PID" INT - wait $PID - RESULT=$? - if [[ $RESULT -ne 0 ]]; then - echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT" - fi - return $RESULT -} - -# process arguments -while [[ $# -gt 0 ]] -do - case "$1" in - *:* ) - hostport=(${1//:/ }) - HOST=${hostport[0]} - PORT=${hostport[1]} - shift 1 - ;; - --child) - CHILD=1 - shift 1 - ;; - -q | --quiet) - QUIET=1 - shift 1 - ;; - -s | --strict) - STRICT=1 - shift 1 - ;; - -h) - HOST="$2" - if [[ $HOST == "" ]]; then break; fi - shift 2 - ;; - --host=*) - HOST="${1#*=}" - shift 1 - ;; - -p) - PORT="$2" - if [[ $PORT == "" ]]; then break; fi - shift 2 - ;; - --port=*) - PORT="${1#*=}" - shift 1 - ;; - -t) - TIMEOUT="$2" - if [[ $TIMEOUT == "" ]]; then break; fi - shift 2 - ;; - --timeout=*) - TIMEOUT="${1#*=}" - shift 1 - ;; - --) - shift - CLI="$@" - break - ;; - --help) - usage - ;; - *) - echoerr "Unknown argument: $1" - usage - ;; - esac -done - -if [[ "$HOST" == "" || "$PORT" == "" ]]; then - echoerr "Error: you need to provide a host and port to test." - usage -fi - -TIMEOUT=${TIMEOUT:-15} -STRICT=${STRICT:-0} -CHILD=${CHILD:-0} -QUIET=${QUIET:-0} - -if [[ $CHILD -gt 0 ]]; then - wait_for - RESULT=$? - exit $RESULT -else - if [[ $TIMEOUT -gt 0 ]]; then - wait_for_wrapper - RESULT=$? - else - wait_for - RESULT=$? - fi -fi - -if [[ $CLI != "" ]]; then - if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then - echoerr "$cmdname: strict mode, refusing to execute subprocess" - exit $RESULT - fi - exec $CLI -else - exit $RESULT -fi diff --git a/docker/tango/tango-dsconfig/.release b/docker/tango/tango-dsconfig/.release deleted file mode 100644 index 80704639b17e1ec8e197d62a0cfacac82d3a926a..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dsconfig/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.5.0 -tag=tango-dsconfig-1.5.0 diff --git a/docker/tango/tango-dsconfig/Dockerfile b/docker/tango/tango-dsconfig/Dockerfile deleted file mode 100644 index f5479d16c77a9b8236fd9c59da10b67223e23305..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dsconfig/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - -USER root - -RUN runtimeDeps='libboost-python1.67.0 \ - ca-certificates \ - make \ - curl \ - git \ - python3 \ - python3-distutils' \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/30proxy - -RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py -COPY pip.conf /etc/pip.conf - -RUN python3 -m pip install wheel numpy==1.16.6 - -RUN python3 -m pip install --extra-index-url https://nexus.engageska-portugal.pt/repository/pypi/simple python-dsconfig==1.5.0 - -COPY json2tango . -ENV PATH $PATH:/json2tango -# RUN chmod +x ./json2tango.sh if needed diff --git a/docker/tango/tango-dsconfig/Makefile b/docker/tango/tango-dsconfig/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dsconfig/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-dsconfig/json2tango b/docker/tango/tango-dsconfig/json2tango deleted file mode 100755 index 0aaa5feb0f5fb6c761c1a91b72bc9ab99f2b552c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dsconfig/json2tango +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -/usr/local/bin/json2tango "$@" -RESULT="$?" - -# check the result of json2tango to see if it is 2(CONFIG LOADED) and return successfully -if [ "$RESULT" == "2" ]; then - echo "/usr/local/bin/json2tango returned exit code 2(CONFIG LOADED), returning 0" - exit 0 -else - # return the result of json2tango script - exit $RESULT -fi diff --git a/docker/tango/tango-dsconfig/pip.conf b/docker/tango/tango-dsconfig/pip.conf deleted file mode 100644 index 41d1dce5e2cce9176483b21e87ebf2c1cf5f1f6c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-dsconfig/pip.conf +++ /dev/null @@ -1,4 +0,0 @@ -[global] -index-url = https://nexus.engageska-portugal.pt/repository/pypi/simple -extra-index-url = https://pypi.org/simple -disable-pip-version-check = True diff --git a/docker/tango/tango-itango/.release b/docker/tango/tango-itango/.release deleted file mode 100644 index 09a41d841d24fb13c0cbbc2f55ab23b0b12db7ca..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.2.1 -tag=tango-itango-9.3.2.1 diff --git a/docker/tango/tango-itango/Dockerfile b/docker/tango/tango-itango/Dockerfile deleted file mode 100644 index de855437ab6c585910c576261be237a12ae290d9..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST - -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-buildenv:latest as buildenv -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-runtime:latest - -# create ipython profile to so that itango doesn't fail if ipython hasn't run yet - -RUN python3 -m pip install itango==0.1.6 -RUN ipython profile create - -CMD ["itango3"] diff --git a/docker/tango/tango-itango/Makefile b/docker/tango/tango-itango/Makefile deleted file mode 100644 index c45724e793b3e6193ddabe7e086fc771b2a92801..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -include ../../make/Makefile - -# name of the Docker volume used to cache eggs and wheels -CACHE_VOLUME = cache-tango-itango-test - -# optional docker run-time arguments -DOCKER_RUN_ARGS = - -# defines the image to test -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/tango-itango:latest - -# docker-compose commmand for a composition of services for the tango database, -# databaseds device, and tangotest devices -DOCKER_COMPOSE_COMMAND = PWD=$(CURDIR) \ - DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) \ - docker-compose \ - -f docker-compose.yml - -# defines a function to copy the ./test directory into the container and -# then runs the requested make target in the container. The container is: -# 1. attached to the network of the docker-compose test system -# 2. uses a persistent volume to cache Python eggs and wheels so that fewer -# downloads are required -# 3. uses a transient volume as a working directory, in which untarred files -# and test output can be written in the container and subsequently copied -# to the host -make = tar -c test/ | \ - docker run -i --rm --network=$(notdir $(CURDIR))_default \ - -v $(CACHE_VOLUME):/home/tango/.cache \ - -v /build -w /build $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - bash -c "sudo chown tango /build /home/tango/.cache && \ - tar x --strip-components 1 --warning=all && \ - make TANGO_HOST=databaseds:10000 $1" - -all: test - -pull: ## download the application image - docker pull $(IMAGE_TO_TEST) - -test: DOCKER_RUN_ARGS = --volumes-from=$(BUILD) -test: - $(INIT_CACHE) - $(DOCKER_COMPOSE_COMMAND) up -d - $(call make,test); \ - status=$$?; \ - docker rm -f -v $(BUILD); \ - $(DOCKER_COMPOSE_COMMAND) down; \ - exit $$status - -piplock: build ## overwrite Pipfile.lock with the image version - docker run $(IMAGE_TO_TEST) cat /app/Pipfile.lock > $(CURDIR)/Pipfile.lock - -# insert the line below after 'status=$$?;' to copy output from the test run -# inside the container into ./build on the host. -# docker cp $(BUILD):/build .; \ - -.PHONY: all test - -# Creates Docker volume for use as a cache, if it doesn't exist already -INIT_CACHE = \ - docker volume ls | grep $(CACHE_VOLUME) || \ - docker create --name $(CACHE_VOLUME) -v $(CACHE_VOLUME):/cache $(IMAGE_TO_TEST) - -# http://cakoose.com/wiki/gnu_make_thunks -BUILD_GEN = $(shell docker create -v /build $(IMAGE_TO_TEST)) -BUILD = $(eval BUILD := $(BUILD_GEN))$(BUILD) \ No newline at end of file diff --git a/docker/tango/tango-itango/docker-compose.yml b/docker/tango/tango-itango/docker-compose.yml deleted file mode 100644 index aa32522c11b53a3c34b329cf8b8f214fa9881d71..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/docker-compose.yml +++ /dev/null @@ -1,61 +0,0 @@ -# -# Docker compose file for TANGO database and database device server -# -# Defines: -# - tangodb: MariaDB database with TANGO schema -# - databaseds: TANGO database device server -# -# Requires: -# - None -# -version: '2' -volumes: - tangodb-tango-rest-test: {} - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - - databaseds: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - depends_on: - - tangodb - environment: - - MYSQL_HOST=tangodb:3306 - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - tangodb:3306 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/DataBaseds - - "2" - - -ORBendPoint - - giop:tcp::10000 - restart: on-failure - - tangotest: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - depends_on: - - databaseds - environment: - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - databaseds:10000 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/TangoTest - - test - restart: on-failure diff --git a/docker/tango/tango-itango/test/Makefile b/docker/tango/tango-itango/test/Makefile deleted file mode 100644 index 1acd6def88d662e3ca09a81f601491d4d52e2019..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/test/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -all: test - -test: - [ -f /.dockerenv ] && sudo apt-get update && sudo apt-get -y install --no-install-recommends expect || true - # It takes several seconds for the tango database to be populated from - # scratch, so pause until DB is created and the device we test against is - # responsive. If the Tango DB volume already exists, there'll be no pause - # delay at all and the test will run immediately. - retry -- tango_admin --check-device sys/tg_test/1 - ./script.exp - -.PHONY: all test diff --git a/docker/tango/tango-itango/test/script.exp b/docker/tango/tango-itango/test/script.exp deleted file mode 100755 index d560527f63eaca1dc57ce4c1a9e72d6f3383146b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-itango/test/script.exp +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/expect -f -# -# This Expect script was generated by autoexpect on Thu Nov 15 09:12:55 2018 -# Expect and autoexpect were both written by Don Libes, NIST. -# -# Note that autoexpect does not guarantee a working script. It -# necessarily has to guess about certain things. Two reasons a script -# might fail are: -# -# 1) timing - A surprising number of programs (rn, ksh, zsh, telnet, -# etc.) and devices discard or ignore keystrokes that arrive "too -# quickly" after prompts. If you find your new script hanging up at -# one spot, try adding a short sleep just before the previous send. -# Setting "force_conservative" to 1 (see below) makes Expect do this -# automatically - pausing briefly before sending each character. This -# pacifies every program I know of. The -c flag makes the script do -# this in the first place. The -C flag allows you to define a -# character to toggle this mode off and on. - -set force_conservative 0 ;# set to 1 to force conservative mode even if - ;# script wasn't run conservatively originally -if {$force_conservative} { - set send_slow {1 .1} - proc send {ignore arg} { - sleep .1 - exp_send -s -- $arg - } -} - -# -# 2) differing output - Some programs produce different output each time -# they run. The "date" command is an obvious example. Another is -# ftp, if it produces throughput statistics at the end of a file -# transfer. If this causes a problem, delete these patterns or replace -# them with wildcards. An alternative is to use the -p flag (for -# "prompt") which makes Expect only look for the last line of output -# (i.e., the prompt). The -P flag allows you to define a character to -# toggle this mode off and on. -# -# Read the man page for more info. -# -# -Don - -set timeout 2 -spawn /venv/bin/itango3 --no-color-info --simple-prompt --no-banner -match_max 100000 - -expect { - timeout { send_user "Problem starting itango session"; exit 1 } - -ex "In \[1\]: " { } -} - -send "dev = Device('sys/tg_test/1')\r" -expect { - timeout { send_user "\nCould not create device proxy to TangoTest device\n"; exit 1 } - -ex "dev = Device('sys/tg_test/1')\r\n\r\nIn \[2\]: " {} -} - -send "dev.status()\r" -expect { - timeout { send_user "\nTangoTest device is in unexpected state\n"; exit 1 } - -ex "dev.status()\r\nOut\[2\]: 'The device is in RUNNING state.'\r\n\r\nIn \[3\]: " {} -} - -send "dev.DevString('hello world!')\r" -expect { - timeout { send_user "\nFailure executing command\n"; exit 1 } - -ex "dev.DevString('hello world!')\r\nOut\[3\]: 'hello world!'\r\n\r\nIn \[4\]: " {} -} - -send "import numpy; isinstance(dev.read_attribute('short_spectrum_ro').value, numpy.ndarray)\r" -expect { - timeout { send_user "\nFailure executing command\n"; exit 1 } - -ex "import numpy; isinstance(dev.read_attribute('short_spectrum_ro').value, numpy.ndarray)\r\nOut\[4\]: True\r\n\r\nIn \[5\]: " {} -} - -send "import numpy; isinstance(dev.read_attribute('short_spectrum').value, numpy.ndarray)\r" -expect { - timeout { send_user "\nFailure executing command\n"; exit 1 } - -ex "import numpy; isinstance(dev.read_attribute('short_spectrum').value, numpy.ndarray)\r\nOut\[5\]: True\r\n\r\nIn \[6\]: " {} -} - -send "exit\r" -expect eof diff --git a/docker/tango/tango-java/.release b/docker/tango/tango-java/.release deleted file mode 100644 index f11cd5130ff65f00d005acbfc962d24f4511b469..0000000000000000000000000000000000000000 --- a/docker/tango/tango-java/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.3 -tag=tango-java-9.3.3 diff --git a/docker/tango/tango-java/Dockerfile b/docker/tango/tango-java/Dockerfile deleted file mode 100644 index 080a7eb946b3644b6923fad945243daa80875e3e..0000000000000000000000000000000000000000 --- a/docker/tango/tango-java/Dockerfile +++ /dev/null @@ -1,55 +0,0 @@ -# -# This Dockerfile builds Tango including Java apps and libraries in an -# intermediate image, then creates a release image containing the compiled -# binaries. -# -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-dependencies:latest - -RUN JAVA_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/java/jre-8u221-linux-x64.tar.gz \ - && mkdir /usr/java \ - && cd /usr/java \ - && buildDeps='wget sudo libxrender1 libxtst6 libxi6' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $buildDeps \ - && wget --no-check-certificate "$JAVA_DOWNLOAD_URL" -O java.tar.gz \ - && tar zxvf java.tar.gz \ - && update-alternatives --install /usr/bin/java java /usr/java/jre1.8.0_221/bin/java 0 \ - && update-alternatives --set java /usr/java/jre1.8.0_221/bin/java \ - && rm /usr/java/java.tar.gz - -RUN TANGO_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/tango-cs/tango-9.3.3-rc2.tar.gz \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && mkdir -p /usr/share/man/man1 \ - && buildDeps='build-essential curl file libmariadbclient-dev libmariadbclient-dev-compat pkg-config python libmariadb3' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $buildDeps \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir -p /usr/src/tango \ - && cd /usr/src/tango \ - && curl -fsSL -k "$TANGO_DOWNLOAD_URL" -o tango.tar.gz \ - && tar xf tango.tar.gz -C /usr/src/tango --strip-components=1 \ - && ./configure --with-zmq=/usr/local --with-omni=/usr/local --with-mysqlclient-prefix=/usr --enable-static=no \ - && make -C /usr/src/tango -j$(nproc) \ - && make -C /usr/src/tango install \ - && ldconfig \ - && apt-get purge -y --auto-remove $buildDeps \ - && rm -r /usr/src/tango - -RUN LOG4J=https://nexus.engageska-portugal.pt/repository/raw/java/log4j-1.2.17.tar.gz \ - && cd /usr/java \ - && wget --no-check-certificate "$LOG4J" -O log4j.tar.gz \ - && tar zxvf log4j.tar.gz \ - && mv apache-log4j-1.2.17/log4j-1.2.17.jar /usr/local/share/java/log4j-1.2.17.jar \ - && apt-get purge -y --auto-remove wget \ - && rm /usr/java/log4j.tar.gz - -RUN useradd --create-home --home-dir /home/tango tango - -RUN echo "tango ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/tango \ - && chmod 0440 /etc/sudoers.d/tango - -USER tango diff --git a/docker/tango/tango-java/Makefile b/docker/tango/tango-java/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-java/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-jive/.release b/docker/tango/tango-jive/.release deleted file mode 100644 index d6657a241cfa0cc6d20c75455390f0bbde70c6b2..0000000000000000000000000000000000000000 --- a/docker/tango/tango-jive/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=7.22 -tag=tango-jive-7.22 diff --git a/docker/tango/tango-jive/Dockerfile b/docker/tango/tango-jive/Dockerfile deleted file mode 100644 index 14f2cb953d041ae8b3b2f33b6ffa72af585da80c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-jive/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java - -ENTRYPOINT ["/usr/local/bin/jive"] diff --git a/docker/tango/tango-jive/Makefile b/docker/tango/tango-jive/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-jive/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-libtango/.release b/docker/tango/tango-libtango/.release deleted file mode 100644 index 651516d7ac81cb1c294ca0e99ee8d006d31f98b4..0000000000000000000000000000000000000000 --- a/docker/tango/tango-libtango/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.4-rc7 -tag=tango-libtango-9.3.4-rc7 diff --git a/docker/tango/tango-libtango/Dockerfile b/docker/tango/tango-libtango/Dockerfile deleted file mode 100644 index b8e68fc527aeb1e138182c679ac1fb8edb501dfd..0000000000000000000000000000000000000000 --- a/docker/tango/tango-libtango/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp - diff --git a/docker/tango/tango-libtango/Makefile b/docker/tango/tango-libtango/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-libtango/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-panic-gui/Dockerfile b/docker/tango/tango-panic-gui/Dockerfile deleted file mode 100644 index 6e039bb7544fdb4a53a26464f299a10a45782b3d..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic-gui/Dockerfile +++ /dev/null @@ -1,92 +0,0 @@ -ARG http_proxy -ARG https_proxy -FROM nexus.engageska-portugal.pt/ska-docker/ska-python-buildenv:9.3.2 - -# # # NOTES -# - pip2 crashes if the package we want isn't in the SKA repo, -# so we temporarily hide the SKA pip.conf -# - python-qt4 is needed for the panic gui (but not PyAlarm) -# - pip doesn't automically install lxml (needed for GUI but not PyAlarm) -# - Format of boost library name was apparently changed between 1.65 and 1.67, -# so we make a symlink -# - panic uses python 2, but 'python' maps to python3 in our base image, -# so we use sed to edit the PyAlarm launcher -RUN [ ! -z "$http_proxy" ] && \ - sudo echo "Acquire::http::Proxy \"$http_proxy\";" > /etc/apt/apt.conf.d/30proxy || \ - echo "no proxy" && \ - sudo mv /etc/pip.conf /tmp/ska_pip_conf && \ - DEBIAN_FRONTEND=noninteractive && sudo apt update && \ - sudo apt install -y \ - python2.7 \ - python-pip \ - python-qt4 \ - && rm -rf /var/lib/apt/lists/ && \ - ln -s /usr/lib/x86_64-linux-gnu/libboost_python27.so /usr/lib/x86_64-linux-gnu/libboost_python-py27.so && \ - pip2 install panic lxml && \ - sudo mv /tmp/ska_pip_conf /etc/pip.conf && \ - sudo sed -i.original 's/python/python2/g' `which PyAlarm` - -# now the VNC stuff (ref. tango-vnc image in ska-docker repo) - -USER root - -RUN apt-get update && apt-mark hold iptables && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - dbus-x11 \ - psmisc \ - xdg-utils \ - x11-xserver-utils \ - x11-utils && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - xfce4 && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - gtk3-engines-xfce \ - libgtk-3-bin \ - mousepad \ - xfce4-notifyd \ - xfce4-taskmanager \ - xfce4-terminal && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - xfce4-battery-plugin \ - xfce4-clipman-plugin \ - xfce4-cpufreq-plugin \ - xfce4-cpugraph-plugin \ - xfce4-diskperf-plugin \ - xfce4-datetime-plugin \ - xfce4-fsguard-plugin \ - xfce4-genmon-plugin \ - xfce4-indicator-plugin \ - xfce4-netload-plugin \ - xfce4-notes-plugin \ - xfce4-places-plugin \ - xfce4-sensors-plugin \ - xfce4-smartbookmark-plugin \ - xfce4-systemload-plugin \ - xfce4-timer-plugin \ - xfce4-verve-plugin \ - xfce4-weather-plugin \ - xfce4-whiskermenu-plugin && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - libxv1 \ - mesa-utils \ - mesa-utils-extra && \ - sed -i 's%<property name="ThemeName" type="string" value="Xfce"/>%<property name="ThemeName" type="string" value="Raleigh"/>%' /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml - -RUN apt-get update && apt-get install -y \ - git \ - x11vnc \ - software-properties-common \ - unzip \ - curl \ - slim \ - xvfb \ - novnc \ - python-websockify - -#Expose port 5920 to view display using VNC Viewer -EXPOSE 5920 -EXPOSE 6081 - -ENV DISPLAY=:20 - -CMD Xvfb :20 -screen 0 1366x768x16 & x11vnc -passwd TestVNC -display :20 -N -forever & startxfce4 & websockify --web /usr/share/novnc 6081 localhost:5920 diff --git a/docker/tango/tango-panic-gui/Makefile b/docker/tango/tango-panic-gui/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic-gui/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-panic/Dockerfile b/docker/tango/tango-panic/Dockerfile deleted file mode 100644 index 6f7536a8299226bf9a1f69ef0ac88aef37728cc5..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -ARG http_proxy -ARG https_proxy -FROM nexus.engageska-portugal.pt/ska-docker/ska-python-buildenv:9.3.2 - -# # # NOTES -# - pip2 crashes if the package we want isn't in the SKA repo, -# so we temporarily hide the SKA pip.conf -# - exim4 is used for email alerts (configuration to be applied by user) -# - Format of boost library name was apparently changed between 1.65 and 1.67, -# so we make a symlink -# - panic uses python 2, but 'python' maps to python3 in our base image, -# so we use sed to edit the PyAlarm launcher -RUN [ ! -z "$http_proxy" ] && \ - sudo echo "Acquire::http::Proxy \"$http_proxy\";" > /etc/apt/apt.conf.d/30proxy || \ - echo "no proxy" && \ - sudo mv /etc/pip.conf /tmp/ska_pip_conf && \ - DEBIAN_FRONTEND=noninteractive && sudo apt update && \ - sudo apt install -y \ - python2.7 \ - python-pip \ - exim4 \ - && rm -rf /var/lib/apt/lists/ && \ - ln -s /usr/lib/x86_64-linux-gnu/libboost_python27.so /usr/lib/x86_64-linux-gnu/libboost_python-py27.so && \ - pip2 install panic && \ - sudo mv /tmp/ska_pip_conf /etc/pip.conf && \ - sudo sed -i.original 's/python/python2/g' `which PyAlarm` - -COPY aliases /etc/ -COPY update-exim4.conf.conf /etc/exim4/ -COPY entrypoint.sh /app/ -ENTRYPOINT ["/app/entrypoint.sh"] diff --git a/docker/tango/tango-panic/Makefile b/docker/tango/tango-panic/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-panic/aliases b/docker/tango/tango-panic/aliases deleted file mode 100644 index 3db6da1ffb884d2e2617180a308a4c1a33ac5a72..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic/aliases +++ /dev/null @@ -1,14 +0,0 @@ -# /etc/aliases -# this is the default aliases config file from exim4, edit it as required -mailer-daemon: postmaster -postmaster: root -nobody: root -hostmaster: root -usenet: root -news: root -webmaster: root -www: root -ftp: root -abuse: root -noc: root -security: root diff --git a/docker/tango/tango-panic/entrypoint.sh b/docker/tango/tango-panic/entrypoint.sh deleted file mode 100755 index 694e6329f24df9dfdb2c77ef66b9da5b6ad7f11c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic/entrypoint.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# PANIC launch script -# Set environment variable PANIC_EMAIL to a non-zero value to enable emails. - -if [ -n "$PANIC_EMAIL" ] && [ "$PANIC_EMAIL" -ne 0 ]; then - echo "Enabling email" - sudo service exim4 start -else - echo "email Disabled" -fi - -exec "$@" diff --git a/docker/tango/tango-panic/update-exim4.conf.conf b/docker/tango/tango-panic/update-exim4.conf.conf deleted file mode 100644 index 1fc5474d34ccee4a196057f865323edf1b10884a..0000000000000000000000000000000000000000 --- a/docker/tango/tango-panic/update-exim4.conf.conf +++ /dev/null @@ -1,31 +0,0 @@ -# /etc/exim4/update-exim4.conf.conf -# -# Edit this file and /etc/mailname by hand and execute update-exim4.conf -# yourself or use 'dpkg-reconfigure exim4-config' -# -# Please note that this is _not_ a dpkg-conffile and that automatic changes -# to this file might happen. The code handling this will honor your local -# changes, so this is usually fine, but will break local schemes that mess -# around with multiple versions of the file. -# -# update-exim4.conf uses this file to determine variable values to generate -# exim configuration macros for the configuration file. -# -# Most settings found in here do have corresponding questions in the -# Debconf configuration, but not all of them. -# -# This is a Debian specific file - -dc_eximconfig_configtype='local' -dc_other_hostnames='' -dc_local_interfaces='127.0.0.1 ; ::1' -dc_readhost='' -dc_relay_domains='' -dc_minimaldns='false' -dc_relay_nets='' -dc_smarthost='' -CFILEMODE='644' -dc_use_split_config='false' -dc_hide_mailname='' -dc_mailname_in_oh='true' -dc_localdelivery='mail_spool' diff --git a/docker/tango/tango-pogo/.release b/docker/tango/tango-pogo/.release deleted file mode 100644 index 5e56d3d0c97826e64e1738a2a773a4430a14d2c9..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pogo/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.6.31 -tag=tango-pogo-9.6.31 diff --git a/docker/tango/tango-pogo/Dockerfile b/docker/tango/tango-pogo/Dockerfile deleted file mode 100644 index 268e6d9ca124bd2cb1678058c936065f58a33bb9..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pogo/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - -USER root - -# Extend the java image with Firefox so that Pogo help can be displayed -RUN runtimeDeps='firefox-esr' \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/30proxy - -# Pogo is included in tango source distribution, but replace with a newer version -# Official source: https://bintray.com/tango-controls/maven/Pogo/_latestVersion -RUN buildDeps='wget' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $buildDeps \ - && POGO_DOWNLOAD_URL=https://nexus.engageska-portugal.pt/repository/raw/tango-cs/pogo/Pogo-9.6.31.jar \ - && cd /usr/local/share/java \ - && rm -f Pogo-*.jar \ - && wget --no-check-certificate "$POGO_DOWNLOAD_URL" -O Pogo-9.6.31.jar \ - && ln -sf Pogo-9.6.31.jar Pogo.jar - -USER tango - -CMD ["/usr/local/bin/pogo"] - diff --git a/docker/tango/tango-pogo/Makefile b/docker/tango/tango-pogo/Makefile deleted file mode 100644 index 94836ab29167354c4d66d227553973370130be99..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pogo/Makefile +++ /dev/null @@ -1 +0,0 @@ -include ../../make/Makefile diff --git a/docker/tango/tango-pytango/.release b/docker/tango/tango-pytango/.release deleted file mode 100644 index 997eb195f1e6ab4ecff67a24be6a38f9685e5d57..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pytango/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=9.3.2.1 -tag=tango-pytango-9.3.2.1 diff --git a/docker/tango/tango-pytango/Dockerfile b/docker/tango/tango-pytango/Dockerfile deleted file mode 100644 index 48297be66ab34ba7ffd6c7d6bcff1beec1b674ed..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pytango/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-buildenv:latest as buildenv -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-runtime:latest diff --git a/docker/tango/tango-pytango/Makefile b/docker/tango/tango-pytango/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-pytango/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-rest/.release b/docker/tango/tango-rest/.release deleted file mode 100644 index f2a7069e0d02ba7cc4afe3c696ce3639666f10bd..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=1.14 -tag=tango-rest-1.14 diff --git a/docker/tango/tango-rest/Dockerfile b/docker/tango/tango-rest/Dockerfile deleted file mode 100644 index fc52d9ea019a6c4e44546986f961782814711db7..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/Dockerfile +++ /dev/null @@ -1,39 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-dependencies:latest as buildenv - -RUN MTANGOREST_DOWNLOAD_URL=https://github.com/tango-controls/rest-server/releases/download/rest-server-1.14/rest-server-1.14.jar \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && buildDeps='ca-certificates curl' \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && apt-get -y install $buildDeps --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* \ - && mkdir /usr/local/lib/tango \ - && cd /usr/local/lib/tango \ - && curl -fsSL "$MTANGOREST_DOWNLOAD_URL" -o mtangorest.jar \ - && apt-get purge -y --auto-remove $buildDeps - -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - -COPY --from=buildenv /usr/local/lib/tango/mtangorest.jar /usr/local/lib/tango/mtangorest.jar - -USER root - -RUN runtimeDeps='supervisor' \ - && mkdir -p /usr/share/man/man1 \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/30proxy - -COPY tango_register_device.sh /usr/local/bin/ - -# Configure supervisord. Ensure supervisord.conf contains entries for your device! -COPY supervisord.conf /etc/supervisor/conf.d/ - -# Start supervisor as daemon -CMD ["/usr/bin/supervisord", "--configuration", "/etc/supervisor/supervisord.conf"] diff --git a/docker/tango/tango-rest/Makefile b/docker/tango/tango-rest/Makefile deleted file mode 100644 index 15911887c7c0272ebd60e7c82b4ae07a92065bad..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -include ../../make/Makefile - -# name of the Docker volume used to cache eggs and wheels -CACHE_VOLUME = tango-rest-test-cache - -# optional docker run-time arguments -DOCKER_RUN_ARGS = - -# defines the image to test -IMAGE_TO_TEST = $(DOCKER_REGISTRY_HOST)/$(DOCKER_REGISTRY_USER)/tango-itango:latest - -# docker-compose commmand for a composition of services for the tango database, -# databaseds device, and tangotest devices -DOCKER_COMPOSE_COMMAND = PWD=$(CURDIR) \ - DOCKER_REGISTRY_HOST=$(DOCKER_REGISTRY_HOST) \ - DOCKER_REGISTRY_USER=$(DOCKER_REGISTRY_USER) \ - docker-compose \ - -f docker-compose.yml - -# defines a function to copy the ./test directory into the container and -# then runs the requested make target in the container. The container is: -# 1. attached to the network of the docker-compose test system -# 2. uses a persistent volume to cache Python eggs and wheels so that fewer -# downloads are required -# 3. uses a transient volume as a working directory, in which untarred files -# and test output can be written in the container and subsequently copied -# to the host -make = tar -c test/ | \ - docker run -i --rm --network=$(notdir $(CURDIR))_default \ - -v $(CACHE_VOLUME):/home/tango/.cache \ - -v /build -w /build $(DOCKER_RUN_ARGS) $(IMAGE_TO_TEST) \ - bash -c "sudo chown tango /build /home/tango/.cache && \ - sudo apt-get update && \ - sudo apt-get install make && \ - tar x --strip-components 1 --warning=all && \ - make TANGO_HOST=databaseds:10000 $1" - -all: test - -test: DOCKER_RUN_ARGS = --volumes-from=$(BUILD) -test: - $(INIT_CACHE) - $(DOCKER_COMPOSE_COMMAND) up -d - $(call make,test); \ - status=$$?; \ - docker rm -f -v $(BUILD); \ - $(DOCKER_COMPOSE_COMMAND) down; \ - exit $$status - -# insert the line below after 'status=$$?;' to copy output from the test run -# inside the container into ./build on the host. -# docker cp $(BUILD):/build .; \ - -.PHONY: all test - -# Creates Docker volume for use as a cache, if it doesn't exist already -INIT_CACHE = \ - docker volume ls | grep $(CACHE_VOLUME) || \ - docker create --name $(CACHE_VOLUME) -v $(CACHE_VOLUME):/cache $(IMAGE_TO_TEST) - -# http://cakoose.com/wiki/gnu_make_thunks -BUILD_GEN = $(shell docker create -v /build $(IMAGE_TO_TEST)) -BUILD = $(eval BUILD := $(BUILD_GEN))$(BUILD) \ No newline at end of file diff --git a/docker/tango/tango-rest/docker-compose.yml b/docker/tango/tango-rest/docker-compose.yml deleted file mode 100644 index 9c65825a906a7124b1b421a75bc87347424e146b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/docker-compose.yml +++ /dev/null @@ -1,79 +0,0 @@ -# -# Docker compose file for TANGO database and database device server -# -# Defines: -# - tangodb: MariaDB database with TANGO schema -# - databaseds: TANGO database device server -# -# Requires: -# - None -# -version: '2' - -services: - tangodb: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-db:latest - environment: - - MYSQL_ROOT_PASSWORD=secret - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - restart: on-failure - - - databaseds: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - depends_on: - - tangodb - environment: - - MYSQL_HOST=tangodb:3306 - - MYSQL_DATABASE=tango - - MYSQL_USER=tango - - MYSQL_PASSWORD=tango - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - tangodb:3306 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/DataBaseds - - "2" - - -ORBendPoint - - giop:tcp::10000 - restart: on-failure - - tangotest: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - depends_on: - - databaseds - environment: - - TANGO_HOST=databaseds:10000 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - databaseds:10000 - - --timeout=30 - - --strict - - -- - - /usr/local/bin/TangoTest - - test - restart: on-failure - - rest: - image: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-rest:latest - depends_on: - - tangotest - environment: - - TANGO_HOST=databaseds:10000 - ports: - - 8080:8080 - entrypoint: - - /usr/local/bin/wait-for-it.sh - - databaseds:10000 - - --timeout=30 - - --strict - - -- - - /usr/bin/supervisord - - --configuration - - /etc/supervisor/supervisord.conf - restart: on-failure diff --git a/docker/tango/tango-rest/supervisord.conf b/docker/tango/tango-rest/supervisord.conf deleted file mode 100644 index 22a7582929357256854a3ad06bea0d00a54215e5..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/supervisord.conf +++ /dev/null @@ -1,26 +0,0 @@ -[supervisord] -nodaemon=true - -[program:tango-rest] -command=/bin/bash -c ' - MYHOSTNAME=`hostname --short` && - JAVA_OPTS="-Xmx4G -Xshare:off -XX:+UseG1GC -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5009" && - /usr/local/bin/tango_register_device.sh TangoRestServer/$MYHOSTNAME TangoRestServer $MYHOSTNAME/rest/0 && - /usr/local/bin/tango_admin --add-property $MYHOSTNAME/rest/0 TANGO_DB tango://$TANGO_HOST/sys/database/2 && - /usr/local/bin/tango_admin --add-property $MYHOSTNAME/rest/0 TOMCAT_PORT 8080 && - /usr/local/bin/tango_admin --add-property $MYHOSTNAME/rest/0 TOMCAT_AUTH_METHOD plain && - exec -- /usr/bin/java -jar $JAVA_OPTS /usr/local/lib/tango/mtangorest.jar $MYHOSTNAME' -autorestart=true -# TODO investigate why this can't run as a non-privileged user -#user=tango -priority=1 - -[unix_http_server] -username = dummy -password = dummy -file = /var/tmp/supervisord.sock - -[supervisorctl] -username = dummy -password = dummy - diff --git a/docker/tango/tango-rest/tango_register_device.sh b/docker/tango/tango-rest/tango_register_device.sh deleted file mode 100755 index 837c22895c635c130319b23150a119b764541e87..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/tango_register_device.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -if [ "$#" -ne 3 ]; then - echo "usage: $0 <exec>/<inst> <class> <device> " - exit 1 -fi - -tango_admin --check-device $3 || \ -tango_admin --add-server $1 $2 $3 || \ -exit 1 diff --git a/docker/tango/tango-rest/test/Makefile b/docker/tango/tango-rest/test/Makefile deleted file mode 100644 index a963fc1c1f492264b3d727c35a953c437549ab59..0000000000000000000000000000000000000000 --- a/docker/tango/tango-rest/test/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -all: test - -test: - [ -f /.dockerenv ] && sudo apt-get update && sudo apt-get -y install --no-install-recommends curl || true - # It takes several seconds for the Tango database to be populated from - # scratch, so pause until DB is created and the device we test against is - # responsive. If the Tango DB volume already exists, there'll be no delay - # at all and the test will run immediately. - retry -- tango_admin --check-device sys/tg_test/1 - /usr/local/bin/wait-for-it.sh rest:8080 --timeout=30 --strict -- curl --user tango-cs:tango http://rest:8080/tango/rest/rc4/hosts/databaseds/10000/devices/sys/tg_test/1/attributes/boolean_scalar/value - -.PHONY: all test - diff --git a/docker/tango/tango-starter/.release b/docker/tango/tango-starter/.release deleted file mode 100644 index e042898350709f236bffb466b9f7e0c6f1c3ff50..0000000000000000000000000000000000000000 --- a/docker/tango/tango-starter/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=7.3.0.1 -tag=tango-starter-7.3.0.1 diff --git a/docker/tango/tango-starter/Dockerfile b/docker/tango/tango-starter/Dockerfile deleted file mode 100644 index da182cdfe4aeb35aca8f049853530cb85a348991..0000000000000000000000000000000000000000 --- a/docker/tango/tango-starter/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-cpp:latest - -USER root - -# supervisor is installed so that the TANGO Starter device runs on startup -RUN runtimeDeps='supervisor' \ - && DOCKERHOST=`awk '/^[a-z]+[0-9]+\t00000000/ { printf("%d.%d.%d.%d", "0x" substr($3, 7, 2), "0x" substr($3, 5, 2), "0x" substr($3, 3, 2), "0x" substr($3, 1, 2)) }' < /proc/net/route` \ - && /usr/local/bin/wait-for-it.sh --host=$DOCKERHOST --port=3142 --timeout=3 --strict --quiet -- echo "Acquire::http::Proxy \"http://$DOCKERHOST:3142\";" > /etc/apt/apt.conf.d/30proxy \ - && echo "Proxy detected on docker host - using for this build" || echo "No proxy detected on docker host" \ - && DEBIAN_FRONTEND=noninteractive apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends $runtimeDeps \ - && rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/30proxy - -COPY tango_register_device.sh /usr/local/bin/ - -# Configure supervisord. Ensure supervisord.conf contains entries for your device! -COPY supervisord.conf /etc/supervisor/conf.d/ - -# Start supervisor as daemon -CMD ["/usr/bin/supervisord", "--configuration", "/etc/supervisor/supervisord.conf"] - diff --git a/docker/tango/tango-starter/Makefile b/docker/tango/tango-starter/Makefile deleted file mode 100644 index 94836ab29167354c4d66d227553973370130be99..0000000000000000000000000000000000000000 --- a/docker/tango/tango-starter/Makefile +++ /dev/null @@ -1 +0,0 @@ -include ../../make/Makefile diff --git a/docker/tango/tango-starter/supervisord.conf b/docker/tango/tango-starter/supervisord.conf deleted file mode 100644 index cbe28fdf0a4bee82a9d0812b6b4753046f90291c..0000000000000000000000000000000000000000 --- a/docker/tango/tango-starter/supervisord.conf +++ /dev/null @@ -1,13 +0,0 @@ -[supervisord] -nodaemon=true - -[program:tango-starter] -command=/bin/bash -c ' - MYHOSTNAME=`hostname --short` && - /usr/local/bin/tango_register_device.sh Starter/$MYHOSTNAME Starter tango/admin/$MYHOSTNAME && - /usr/local/bin/tango_admin --add-property tango/admin/$MYHOSTNAME StartDsPath /usr/local/bin && - exec -- /usr/local/bin/Starter $MYHOSTNAME' -autorestart=true -user=tango -priority=1 - diff --git a/docker/tango/tango-starter/tango_register_device.sh b/docker/tango/tango-starter/tango_register_device.sh deleted file mode 100644 index 837c22895c635c130319b23150a119b764541e87..0000000000000000000000000000000000000000 --- a/docker/tango/tango-starter/tango_register_device.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -if [ "$#" -ne 3 ]; then - echo "usage: $0 <exec>/<inst> <class> <device> " - exit 1 -fi - -tango_admin --check-device $3 || \ -tango_admin --add-server $1 $2 $3 || \ -exit 1 diff --git a/docker/tango/tango-test/.release b/docker/tango/tango-test/.release deleted file mode 100644 index 1365ed62d0fe2347de331dcb422da6f0a52762c8..0000000000000000000000000000000000000000 --- a/docker/tango/tango-test/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=2.1.0.2 -tag=tango-test-2.1.0.2 diff --git a/docker/tango/tango-test/Dockerfile b/docker/tango/tango-test/Dockerfile deleted file mode 100644 index 82846e61883eacfcea40c3a2f29e19431fc6f724..0000000000000000000000000000000000000000 --- a/docker/tango/tango-test/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-libtango:latest - -ENTRYPOINT ["/usr/local/bin/TangoTest"] diff --git a/docker/tango/tango-test/Makefile b/docker/tango/tango-test/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-test/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-vnc/.release b/docker/tango/tango-vnc/.release deleted file mode 100644 index 205f5fb62f5c39629a2c201838496713ba597e1b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vnc/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=0.1.0 -tag=tango-vnc-0.1.0 diff --git a/docker/tango/tango-vnc/Dockerfile b/docker/tango/tango-vnc/Dockerfile deleted file mode 100644 index 95145e733760b6db823082648b25166396f4d21d..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vnc/Dockerfile +++ /dev/null @@ -1,71 +0,0 @@ -# -# This Dockerfile builds Tango including Java apps and libraries in an -# intermediate image, then creates a release image containing the compiled -# binaries. -# -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/tango-java:latest - -USER root - -RUN apt-get update && apt-mark hold iptables && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - dbus-x11 \ - psmisc \ - xdg-utils \ - x11-xserver-utils \ - x11-utils && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - xfce4 && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - gtk3-engines-xfce \ - libgtk-3-bin \ - mousepad \ - xfce4-notifyd \ - xfce4-taskmanager \ - xfce4-terminal && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - xfce4-battery-plugin \ - xfce4-clipman-plugin \ - xfce4-cpufreq-plugin \ - xfce4-cpugraph-plugin \ - xfce4-diskperf-plugin \ - xfce4-datetime-plugin \ - xfce4-fsguard-plugin \ - xfce4-genmon-plugin \ - xfce4-indicator-plugin \ - xfce4-netload-plugin \ - xfce4-notes-plugin \ - xfce4-places-plugin \ - xfce4-sensors-plugin \ - xfce4-smartbookmark-plugin \ - xfce4-systemload-plugin \ - xfce4-timer-plugin \ - xfce4-verve-plugin \ - xfce4-weather-plugin \ - xfce4-whiskermenu-plugin && \ - env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - libxv1 \ - mesa-utils \ - mesa-utils-extra && \ - sed -i 's%<property name="ThemeName" type="string" value="Xfce"/>%<property name="ThemeName" type="string" value="Raleigh"/>%' /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml - -RUN apt-get update && apt-get install -y \ - git \ - x11vnc \ - software-properties-common \ - unzip \ - curl \ - slim \ - xvfb \ - novnc \ - python-websockify - -#Expose port 5920 to view display using VNC Viewer -EXPOSE 5920 -EXPOSE 6081 - -ENV DISPLAY=:20 - -CMD Xvfb :20 -screen 0 1366x768x16 & x11vnc -passwd TestVNC -display :20 -N -forever & startxfce4 & websockify --web /usr/share/novnc 6081 localhost:5920 \ No newline at end of file diff --git a/docker/tango/tango-vnc/Makefile b/docker/tango/tango-vnc/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vnc/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-vscode/.release b/docker/tango/tango-vscode/.release deleted file mode 100644 index 1f92611496ea80f6ff4b036952360265e5c82050..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vscode/.release +++ /dev/null @@ -1,2 +0,0 @@ -release=0.2.9 -tag=tango-vscode-0.2.9 diff --git a/docker/tango/tango-vscode/Dockerfile b/docker/tango/tango-vscode/Dockerfile deleted file mode 100644 index ff27ff75693dc756f2c03c40583875fae19eda4f..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vscode/Dockerfile +++ /dev/null @@ -1,69 +0,0 @@ -ARG DOCKER_REGISTRY_USER -ARG DOCKER_REGISTRY_HOST -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-buildenv:latest as buildenv -FROM ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}/ska-python-runtime:latest - -USER root - -ARG SSH_PASSWORD=vscodessh - -ENV ssh_cmd tango:$SSH_PASSWORD -ENV KUBE_LATEST_VERSION="v1.16.2" -ENV HELM_VERSION="v3.3.1" -ENV DEBIAN_FRONTEND="noninteractive" -ENV RUNLEVEL="1" - -RUN echo $ssh_cmd - -RUN apt-get update && apt-get install -y \ - openssh-server \ - && rm -rf /var/lib/apt/lists/* - -RUN mkdir /var/run/sshd -RUN echo $ssh_cmd | chpasswd - -RUN apt-get update && apt-get install -y curl net-tools git software-properties-common \ - apt-transport-https wget gnupg libx11-xcb1 libasound2 x11-apps libice6 libsm6 \ - libxaw7 libxft2 libxmu6 libxpm4 libxt6 x11-apps xbitmaps - -RUN python3 -m pip install docker-compose yamllint yamale - -RUN wget -q https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl \ - && chmod +x /usr/local/bin/kubectl \ - && wget -q https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm \ - && chmod +x /usr/local/bin/helm - -RUN wget -q https://github.com/helm/chart-testing/releases/download/v3.0.0-beta.1/chart-testing_3.0.0-beta.1_linux_amd64.tar.gz -O /tmp/ct.tar.gz \ - && cd /tmp \ - && tar -xf ct.tar.gz \ - && mv ct /usr/local/bin/ct - -COPY base-requirements.txt ./ - -RUN pip3 install -r base-requirements.txt && rm base-requirements.txt - -RUN apt-get install bash-completion -y - -RUN printf "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d - -# Allows the SSH user to pass environment variables into their SSH session -# For this stage of development this is useful as it allows the TANGO_HOST -# to be overwritten by the user. -RUN echo "PermitUserEnvironment yes" >> /etc/ssh/sshd_config - -RUN echo "X11UseLocalhost no" >> /etc/ssh/sshd_config - -RUN echo "if [[ ! -d ~/skampi ]]; then " >> /home/tango/.bashrc -RUN echo " git clone https://gitlab.com/ska-telescope/skampi.git" >> /home/tango/.bashrc -RUN echo "fi" >> /home/tango/.bashrc - -# SSH login fix. Otherwise user is kicked off after login -RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd - -ENV NOTVISIBLE "in users profile" -RUN echo "export VISIBLE=now" >> /etc/profile - -RUN tar -xvzf vscode-server.tar -C /home/tango/ - -EXPOSE 22 -CMD ["/usr/sbin/sshd", "-D"] diff --git a/docker/tango/tango-vscode/Makefile b/docker/tango/tango-vscode/Makefile deleted file mode 100644 index 9f046a948604496191fe3dcfb695d21018b6435b..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vscode/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../make/Makefile - -pre-build: - @echo do some stuff before the docker build - -post-build: - @echo do some stuff after the docker build \ No newline at end of file diff --git a/docker/tango/tango-vscode/base-requirements.txt b/docker/tango/tango-vscode/base-requirements.txt deleted file mode 100644 index 693856abe08cd3986bde45761ae5967e18feead6..0000000000000000000000000000000000000000 --- a/docker/tango/tango-vscode/base-requirements.txt +++ /dev/null @@ -1,25 +0,0 @@ -pytest -pytest-cov -pytest-json-report -pycodestyle<2.7.0,>=2.6.0a1 -pytest-bdd -elasticsearch -kubernetes -pytest-runner -sphinx -recommonmark -assertpy -astropy -marshmallow -mock -importlib -pyyaml -pytest-ordering -kubernetes -elasticsearch-dsl -aiohttp -aiojobs -pytest-asyncio -ska_logging -aiohttp_cors -flake8 \ No newline at end of file diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index d0c3cbf1020d5c292abdedf27627c6abe25e2293..0000000000000000000000000000000000000000 --- a/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = source -BUILDDIR = build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index d49db9ded07b3dbeb1087b90b99367a465d169fe..0000000000000000000000000000000000000000 --- a/docs/README.md +++ /dev/null @@ -1,9 +0,0 @@ -To build the sphinx documentation, run: - -``` -pip3 install sphinx sphinx-rtd-theme - -make html -``` - -After which the documentation will be available in html format in the `build/html` directory. diff --git a/tangostationcontrol/.coveragerc b/tangostationcontrol/.coveragerc new file mode 100644 index 0000000000000000000000000000000000000000..b2486a872aa8b866bba57b32df09eef1a5944d6e --- /dev/null +++ b/tangostationcontrol/.coveragerc @@ -0,0 +1,6 @@ +[run] +branch = True +source = tangostationcontrol + +[report] +ignore_errors = True diff --git a/tangostationcontrol/docs/README.md b/tangostationcontrol/docs/README.md new file mode 100644 index 0000000000000000000000000000000000000000..9e515e3589db0aba58e511e6cbffa1025677a89e --- /dev/null +++ b/tangostationcontrol/docs/README.md @@ -0,0 +1,8 @@ +The sphinx documentation is build through tox which can be called from +the parent directory using: + +``` +tox -e docs +``` + +After which the documentation will be available in html format in the `build/html` directory. diff --git a/tangostationcontrol/docs/docs-requirements.txt b/tangostationcontrol/docs/docs-requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..689980c4d157bdfe611e0838183adc699c99457c --- /dev/null +++ b/tangostationcontrol/docs/docs-requirements.txt @@ -0,0 +1,2 @@ +sphinx>=4.3.2 # BSD +sphinx-rtd-theme>=1.0.0 # MIT \ No newline at end of file diff --git a/docs/source/conf.py b/tangostationcontrol/docs/source/conf.py similarity index 96% rename from docs/source/conf.py rename to tangostationcontrol/docs/source/conf.py index cf6f1dea2270d3d372ae1fa1d7a5abc136d6d343..9ab504856ca00dbf2c934478ec60bdece9853ad0 100644 --- a/docs/source/conf.py +++ b/tangostationcontrol/docs/source/conf.py @@ -49,4 +49,8 @@ html_theme = 'sphinx_rtd_theme' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ['static'] + +html_css_files = [ + 'css/custom.css', +] diff --git a/docs/source/configure_station.rst b/tangostationcontrol/docs/source/configure_station.rst similarity index 100% rename from docs/source/configure_station.rst rename to tangostationcontrol/docs/source/configure_station.rst diff --git a/docs/source/developer.rst b/tangostationcontrol/docs/source/developer.rst similarity index 96% rename from docs/source/developer.rst rename to tangostationcontrol/docs/source/developer.rst index e2c36f83c2c458628038803506da62765b8f7004..50f798f4569cbd0970f015e6dac18ce45fede7a1 100644 --- a/docs/source/developer.rst +++ b/tangostationcontrol/docs/source/developer.rst @@ -32,7 +32,7 @@ The Docker containers started use a *virtual network* to communicate among each The networks are defined in ``docker-compose/networks.yml``: -.. literalinclude:: ../../docker-compose/networks.yml +.. literalinclude:: ../../../docker-compose/networks.yml The ``$NETWORK_MODE`` defaults to ``tangonet`` in the ``docker-compose/Makefile``. @@ -77,9 +77,9 @@ The ELK stack collects the logs from the containers, as well as any external pro | Beats | 5044/tcp | Use `FileBeat <https://www.elastic.co/beats/filebeat>`_ to watch logs locally, and forward them to ELK. | +-------------+------------+-------------------------------------------------------------------------------------------------------------+ -We recommend making sure the contents of your log lines are parsed correctly, especially if logs are routed to the *Syslog* input. These configurations are stored in ``docker-compose/elk/logstash/conf.d``. An example: +We recommend making sure the contents of your log lines are parsed correctly, especially if logs are routed to the *Syslog* input. These configurations are stored in ``docker-compose/elk/logstash/conf.d``. An example: -.. literalinclude:: ../../docker-compose/elk/logstash/conf.d/22-parse-tango-rest.conf +.. literalinclude:: ../../../docker-compose/elk/logstash/conf.d/22-parse-tango-rest.conf Log from Python ````````````````` @@ -91,7 +91,7 @@ Log from Docker Not all Docker containers run our Python programs, and can forward the logs themselves. For those, we use the ``syslog`` log driver in Docker. Extend the ``docker compose`` files with: -.. literalinclude:: ../../docker-compose/rest.yml +.. literalinclude:: ../../../docker-compose/rest.yml :start-at: logging: :end-before: restart: diff --git a/docs/source/devices/beam.rst b/tangostationcontrol/docs/source/devices/beam.rst similarity index 100% rename from docs/source/devices/beam.rst rename to tangostationcontrol/docs/source/devices/beam.rst diff --git a/docs/source/devices/boot.rst b/tangostationcontrol/docs/source/devices/boot.rst similarity index 100% rename from docs/source/devices/boot.rst rename to tangostationcontrol/docs/source/devices/boot.rst diff --git a/docs/source/devices/configure.rst b/tangostationcontrol/docs/source/devices/configure.rst similarity index 100% rename from docs/source/devices/configure.rst rename to tangostationcontrol/docs/source/devices/configure.rst diff --git a/docs/source/devices/docker.rst b/tangostationcontrol/docs/source/devices/docker.rst similarity index 100% rename from docs/source/devices/docker.rst rename to tangostationcontrol/docs/source/devices/docker.rst diff --git a/docs/source/devices/recv.rst b/tangostationcontrol/docs/source/devices/recv.rst similarity index 100% rename from docs/source/devices/recv.rst rename to tangostationcontrol/docs/source/devices/recv.rst diff --git a/docs/source/devices/sdp.rst b/tangostationcontrol/docs/source/devices/sdp.rst similarity index 100% rename from docs/source/devices/sdp.rst rename to tangostationcontrol/docs/source/devices/sdp.rst diff --git a/docs/source/devices/sst-xst.rst b/tangostationcontrol/docs/source/devices/sst-xst.rst similarity index 100% rename from docs/source/devices/sst-xst.rst rename to tangostationcontrol/docs/source/devices/sst-xst.rst diff --git a/docs/source/devices/using.rst b/tangostationcontrol/docs/source/devices/using.rst similarity index 99% rename from docs/source/devices/using.rst rename to tangostationcontrol/docs/source/devices/using.rst index e328467f6bb01b17577bc8b5e1b99b5caeed7090..d72fee2af770a47a88c8937181115dcc93f189f0 100644 --- a/docs/source/devices/using.rst +++ b/tangostationcontrol/docs/source/devices/using.rst @@ -129,7 +129,7 @@ For example, the ``RCU_mask_RW`` array is the RCU mask in the ``recv`` device. I # recv.RCU_LED0_R should show this, # if you have the RCU hardware installed. - # set mask to only control RCU 3 + # set mask to only control RCU 3 mask = [False] * 32 mask[3] = True recv.RCU_mask_RW = mask diff --git a/docs/source/faq.rst b/tangostationcontrol/docs/source/faq.rst similarity index 99% rename from docs/source/faq.rst rename to tangostationcontrol/docs/source/faq.rst index 05022cd81032316038876a788d4bac0ea8e645c7..d65ecfd767bf1804f838631fb75be755d86a6e03 100644 --- a/docs/source/faq.rst +++ b/tangostationcontrol/docs/source/faq.rst @@ -54,7 +54,7 @@ How do I run X11 applications on Windows? If you need an X11 server on Windows: - Install `VcXsrv <https://sourceforge.net/projects/vcxsrv/>`_ -- Disable access control during its startup, +- Disable access control during its startup, - Use ``export DISPLAY=host.docker.internal:0`` in WSL. You should now be able to run X11 applications from WSL and Docker. Try running ``xterm`` or ``xeyes`` to test. @@ -115,7 +115,7 @@ Let's see where the packets get stuck. Let us assume your MTU=9000 network inter - Check whether the data arrives on ``em2``. Run ``tcpdump -i em2 udp -nn -vvv -c 10`` to capture the first 10 packets. Verify: - - The destination MAC must match that of ``em2``, + - The destination MAC must match that of ``em2``, - The destination IP must match that of ``em2``, - The destination port is correct (5001 for SST, 5002 for XST), - The source IP falls within the netmask of ``em2`` (unless ``net.ipv4.conf.em2.rp_filter=0`` is configured), diff --git a/docs/source/index.rst b/tangostationcontrol/docs/source/index.rst similarity index 100% rename from docs/source/index.rst rename to tangostationcontrol/docs/source/index.rst diff --git a/docs/source/installation.rst b/tangostationcontrol/docs/source/installation.rst similarity index 100% rename from docs/source/installation.rst rename to tangostationcontrol/docs/source/installation.rst diff --git a/docs/source/interfaces/control.rst b/tangostationcontrol/docs/source/interfaces/control.rst similarity index 96% rename from docs/source/interfaces/control.rst rename to tangostationcontrol/docs/source/interfaces/control.rst index adb5775527f554b0ca130afe5c478b165e64ab65..4dac94eb9112e959b664eaa671e2317dc3569ca3 100644 --- a/docs/source/interfaces/control.rst +++ b/tangostationcontrol/docs/source/interfaces/control.rst @@ -12,7 +12,7 @@ The station offers Juypyter notebooks On http://localhost:8888, which allow one The notebooks provide some predefined variables, so you don't have to look them up: -.. literalinclude:: ../../../docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py +.. literalinclude:: ../../../../docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py Note: the Jupyter notebooks use enhancements from the ``itango`` suite, which provide tab completions, but also the ``Device`` alias for ``DeviceProxy`` as was used in the Python examples in the next section. diff --git a/docs/source/interfaces/elk_last_hour.png b/tangostationcontrol/docs/source/interfaces/elk_last_hour.png similarity index 100% rename from docs/source/interfaces/elk_last_hour.png rename to tangostationcontrol/docs/source/interfaces/elk_last_hour.png diff --git a/docs/source/interfaces/elk_log_fields.png b/tangostationcontrol/docs/source/interfaces/elk_log_fields.png similarity index 100% rename from docs/source/interfaces/elk_log_fields.png rename to tangostationcontrol/docs/source/interfaces/elk_log_fields.png diff --git a/docs/source/interfaces/grafana_dashboard_1.png b/tangostationcontrol/docs/source/interfaces/grafana_dashboard_1.png similarity index 100% rename from docs/source/interfaces/grafana_dashboard_1.png rename to tangostationcontrol/docs/source/interfaces/grafana_dashboard_1.png diff --git a/docs/source/interfaces/grafana_dashboard_2.png b/tangostationcontrol/docs/source/interfaces/grafana_dashboard_2.png similarity index 100% rename from docs/source/interfaces/grafana_dashboard_2.png rename to tangostationcontrol/docs/source/interfaces/grafana_dashboard_2.png diff --git a/docs/source/interfaces/jupyter_basic_example.png b/tangostationcontrol/docs/source/interfaces/jupyter_basic_example.png similarity index 100% rename from docs/source/interfaces/jupyter_basic_example.png rename to tangostationcontrol/docs/source/interfaces/jupyter_basic_example.png diff --git a/docs/source/interfaces/logs.rst b/tangostationcontrol/docs/source/interfaces/logs.rst similarity index 100% rename from docs/source/interfaces/logs.rst rename to tangostationcontrol/docs/source/interfaces/logs.rst diff --git a/docs/source/interfaces/monitoring.rst b/tangostationcontrol/docs/source/interfaces/monitoring.rst similarity index 98% rename from docs/source/interfaces/monitoring.rst rename to tangostationcontrol/docs/source/interfaces/monitoring.rst index bb1ef494b320a40cd44aec789a0cf8d88653fa2a..789e06624a394e656ab4dfe055a1674baa892287 100644 --- a/docs/source/interfaces/monitoring.rst +++ b/tangostationcontrol/docs/source/interfaces/monitoring.rst @@ -43,7 +43,7 @@ Prometheus stores attributes in the following format:: label="RCU_temperature_R", name="RCU_temperature_R", type="float", - x="00", y="0"} + x="00", y="0"} The above describes a single data point and its labels. The primary identifying labels are ``device`` and ``name``. Each point furthermore has a value (integer) and a timestamp. The following transformations take place: diff --git a/docs/source/interfaces/overview.rst b/tangostationcontrol/docs/source/interfaces/overview.rst similarity index 100% rename from docs/source/interfaces/overview.rst rename to tangostationcontrol/docs/source/interfaces/overview.rst diff --git a/docs/source/signal_chain.rst b/tangostationcontrol/docs/source/signal_chain.rst similarity index 99% rename from docs/source/signal_chain.rst rename to tangostationcontrol/docs/source/signal_chain.rst index 4dc110c9430214916d068830f71b952551797de4..c0a87cb3976b99b02e3420250f7e4112884c05ff 100644 --- a/docs/source/signal_chain.rst +++ b/tangostationcontrol/docs/source/signal_chain.rst @@ -6,7 +6,7 @@ The station hardware collectively processes the analog signals received by the a RECV: Data reception ------------------------------------ -The RCU boards can receive input from three sources: an LBA, an HBA tile, and a signal or noise generator. +The RCU boards can receive input from three sources: an LBA, an HBA tile, and a signal or noise generator. A typical station has ``rcu == 32`` RCUs, each of which has ``antenna == 3`` inputs. diff --git a/tangostationcontrol/docs/source/static/css/custom.css b/tangostationcontrol/docs/source/static/css/custom.css new file mode 100644 index 0000000000000000000000000000000000000000..74265d28e70a414a3a71d42efe345ec381d6c73d --- /dev/null +++ b/tangostationcontrol/docs/source/static/css/custom.css @@ -0,0 +1,4 @@ + +.rst-content code, .rst-content tt, code { + white-space: break-spaces; +} \ No newline at end of file diff --git a/tangostationcontrol/requirements.txt b/tangostationcontrol/requirements.txt index c30f6b56cf6801226f2740f7ab63414516b0b8e2..f8bad33a66897ce01bfb5084430a9e7af8ce621b 100644 --- a/tangostationcontrol/requirements.txt +++ b/tangostationcontrol/requirements.txt @@ -4,10 +4,10 @@ asyncua >= 0.9.90 # LGPLv3 PyMySQL[rsa] >= 1.0.2 # MIT -psycopg2-binary >= 2.9.2 #LGPL -sqlalchemy >= 1.4.26 #MIT +psycopg2-binary >= 2.9.2 # LGPL +sqlalchemy >= 1.4.26 # MIT snmp >= 0.1.7 # GPL3 -h5py >= 3.5.0 # BSD +h5py >= 3.1.0 # BSD psutil >= 5.8.0 # BSD docker >= 5.0.3 # Apache 2 python-logstash-async >= 2.3.0 # MIT diff --git a/tangostationcontrol/setup.cfg b/tangostationcontrol/setup.cfg index 31662e40d639c2af2de417e734e794dc5679d4a4..ccbd782a1cfacbd44ebef9c3c57446b56dfd293d 100644 --- a/tangostationcontrol/setup.cfg +++ b/tangostationcontrol/setup.cfg @@ -57,3 +57,7 @@ console_scripts = l2ss-random-data = tangostationcontrol.test.devices.random_data:main l2ss-snmp = tangostationcontrol.examples.snmp.snmp:main l2ss-version = tangostationcontrol.common.lofar_version:main + +[options.package_data] +* = *.json + diff --git a/tangostationcontrol/tangostationcontrol/beam/__init__.py b/tangostationcontrol/tangostationcontrol/beam/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tangostationcontrol/tangostationcontrol/beam/delays.py b/tangostationcontrol/tangostationcontrol/beam/delays.py new file mode 100644 index 0000000000000000000000000000000000000000..771fad6c90a59ebe002867fedfc55446ead51000 --- /dev/null +++ b/tangostationcontrol/tangostationcontrol/beam/delays.py @@ -0,0 +1,62 @@ +import casacore.measures +from math import sin, cos +import numpy +import datetime + +def subtract(a, b): + return numpy.array([x - y for x, y in zip(a, b)]) + + +class delay_calculator: + def __init__(self, itrf: list([float])): + + """ Create a measure object, configured for the specified terrestrial location. """ + + measure = casacore.measures.measures() + frame_location = measure.position("ITRF", *[f"{x}m" for x in itrf]) + + result = measure.do_frame(frame_location) + assert result == True + + self.reference_itrf = itrf + self.measure = measure + self.measure_time = None + + def set_measure_time(self, utc_time: datetime.datetime): + """ Configure the measure object for the specified time. """ + frame_time = self.measure.epoch("UTC", utc_time.isoformat(' ')) + + result = self.measure.do_frame(frame_time) + assert result == True + + def get_direction_vector(self, pointing: dict): + """ Compute a direction vector for the given pointing, relative to the measure. """ + angles = self.measure.measure(pointing, "ITRF") + angle0, angle1 = angles["m0"]["value"], angles["m1"]["value"] + + # Convert polar to carthesian coordinates + # see also https://github.com/casacore/casacore/blob/e793b3d5339d828a60339d16476bf688a19df3ec/casa/Quanta/MVDirection.cc#L67 + direction_vector = numpy.array( + (cos(angle0) * cos(angle1), + sin(angle0) * cos(angle1), + sin(angle1))) + + return direction_vector + + def _get_delay(self, reference_direction_vector: numpy.array, relative_itrf: numpy.array) -> float: + """ Compute the delay to apply, in seconds, to align signals for a distance of `relative_itrf` in the + direction of `reference_direction_vector`. """ + speed_of_light = 299792458.0 + + return numpy.dot(reference_direction_vector, relative_itrf) / speed_of_light + + def convert(self, direction, antenna_itrf: list([float])): + # obtain the direction vector for a specific pointing + pointing = self.measure.direction(*direction) + reference_dir_vector = self.get_direction_vector(pointing) + + # # compute the delays for an antennas w.r.t. the reference position + antenna_relative_itrf = [subtract(pos, self.reference_itrf) for pos in antenna_itrf] + delays = [self._get_delay(reference_dir_vector, relative_itrf) for relative_itrf in antenna_relative_itrf] + + return delays diff --git a/tangostationcontrol/tangostationcontrol/beam/test_delays.py b/tangostationcontrol/tangostationcontrol/beam/test_delays.py new file mode 100644 index 0000000000000000000000000000000000000000..1668345163c4f3bff244ede6ff63cf2c2786f9b1 --- /dev/null +++ b/tangostationcontrol/tangostationcontrol/beam/test_delays.py @@ -0,0 +1,65 @@ +from delays import * + +if __name__ == '__main__': + # # create a frame tied to the reference position + reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5 + d = delay_calculator(reference_itrf) + + # # set the timestamp to solve for + timestamp = datetime.datetime(2021,1,1,0,0,5) + d.set_measure_time(timestamp) + + # compute the delays for an antennas w.r.t. the reference position + antenna_itrf = [[3826923.546, 460915.441, 5064643.489]] # CS001LBA, in ITRF2005 epoch 2012.5 + + # # obtain the direction vector for a specific pointing + direction = "J2000","0deg","0deg" + + # calculate the delays based on the set reference position, the set time and now the set direction and antenna positions. + delays = d.convert(direction, antenna_itrf) + + # print the delays + # pprint.pprint(delays) + + + #test changing the time + + print(f"Changing timestamp test\nBase parametres: Direction: {direction}, position: {antenna_itrf}") + for i in range(10): + # # set the timestamp to solve for + timestamp = datetime.datetime(2021,1,1,0,i,5) + d.set_measure_time(timestamp) + + delays = d.convert(direction, antenna_itrf) + + # print the delays + print(f"Timestamp: {timestamp}: {delays}") + + + # reset time + timestamp = datetime.datetime(2021, 1, 1, 0, 0, 5) + d.set_measure_time(timestamp) + + + #test changing the antenna position + print(f"Changing Antenna position test.\nBase parametres: Time: {timestamp} Direction: {direction}") + for i in range(10): + antenna_itrf = [[3826577.066 + i, 461022.948, 5064892.786]] # CS002LBA, in ITRF2005 epoch 2012.5 + + delays = d.convert(direction, antenna_itrf) + + # print the delays + print(f"Antenna position: {antenna_itrf}: {delays}") + + # test changing the direction + + antenna_itrf = [[3826923.546, 460915.441, 5064643.489]] # CS001LBA, in ITRF2005 epoch 2012.5 + print(f"Changing direction test.\nBase parametres: Time: {timestamp} , position: {antenna_itrf}") + + for i in range(10): + direction = "J2000", f"{i}deg", "0deg" + + delays = d.convert(direction, antenna_itrf) + + # print the delays + print(f"Direction: {direction}: {delays}") diff --git a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py index 30432ae3fdedb19d2e8b19743e63320906b7908e..e9239a834a248af32886df651a5f2463b4764489 100644 --- a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py +++ b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py @@ -70,47 +70,32 @@ class attribute_wrapper(attribute): max_dim_y = 0 if access == AttrWriteType.READ_WRITE: - """ if the attribute is of READ_WRITE type, assign the RW and write function to it""" + """ if the attribute is of READ_WRITE type, assign the write function to it""" @only_in_states([DevState.STANDBY, DevState.ON], log=False) @fault_on_error() - def read_RW(device): - # print("read_RW {}, {}x{}, {}, {}".format(me.name, me.dim_x, me.dim_y, me.attr_type, me.value)) + def write_func_wrapper(device, value): """ - read_RW returns the value that was last written to the attribute - """ - try: - return device.value_dict[self] - except Exception as e: - raise Exception(f"Attribute read_RW function error, attempted to read value_dict with key: `{self}`, are you sure this exists?") from e - - @only_in_states([DevState.STANDBY, DevState.ON], log=False) - @fault_on_error() - def write_RW(device, value): - """ - _write_RW writes a value to this attribute + write_func_wrapper writes a value to this attribute """ self.write_function(value) - device.value_dict[self] = value - self.fget = read_RW - self.fset = write_RW + self.fset = write_func_wrapper - else: - """ if the attribute is of READ type, assign the read function to it""" + """ Assign the read function to the attribute""" - @only_in_states([DevState.STANDBY, DevState.ON], log=False) - @fault_on_error() - def read_R(device): - """ - _read_R reads the attribute value, stores it and returns it" - """ - device.value_dict[self] = self.read_function() - return device.value_dict[self] + @only_in_states([DevState.STANDBY, DevState.ON], log=False) + @fault_on_error() + def read_func_wrapper(device): + """ + read_func_wrapper reads the attribute value, stores it and returns it" + """ + device.value_dict[self] = self.read_function() + return device.value_dict[self] - self.fget = read_R + self.fget = read_func_wrapper super().__init__(dtype=datatype, max_dim_y=max_dim_y, max_dim_x=max_dim_x, access=access, **kwargs) diff --git a/tangostationcontrol/tangostationcontrol/clients/tcp_replicator.py b/tangostationcontrol/tangostationcontrol/clients/tcp_replicator.py index ec895fed7bc357bc03f2ade1866066756d23b1ba..f49e7fce2ef814e5a44fc4d58b40e5534d4271cd 100644 --- a/tangostationcontrol/tangostationcontrol/clients/tcp_replicator.py +++ b/tangostationcontrol/tangostationcontrol/clients/tcp_replicator.py @@ -1,10 +1,10 @@ -from queue import Empty -from queue import Queue + from threading import Condition from threading import Semaphore from threading import Thread import asyncio import logging +import sys from tangostationcontrol.clients.statistics_client_thread import StatisticsClientThread @@ -352,4 +352,25 @@ class TCPReplicator(Thread, StatisticsClientThread): def nof_tasks_pending(self): """ Return the number of pending tasks in our event loop. """ - return len(asyncio.all_tasks(self._loop)) + # asyncio.all_tasks is not thread safe, and can fail on a race condition if another + # thread adds a task to a different loop while we're in all_tasks(). + # We thus occasionally need to retry. We try a limited number of times to avoid + # infinite loops. + # + # See https://bugs.python.org/issue36607 and https://support.astron.nl/jira/browse/L2SS-560 + # + # This is fixed (in a similar manner as here) in python 3.7.4+, see + # https://github.com/python/cpython/blob/v3.7.3/Lib/asyncio/tasks.py#L34 + # versus + # https://github.com/python/cpython/blob/v3.7.4/Lib/asyncio/tasks.py#L34 + if sys.version_info >= (3,7,4): + return asyncio.all_tasks(self._loop) + else: + for i in range(100,0,-1): + try: + return len(asyncio.all_tasks(self._loop)) + except RuntimeError as e: + if i == 1: + # ran out of tries, and we want to expose the original exception + raise + diff --git a/tangostationcontrol/tangostationcontrol/devices/abstract_device.py b/tangostationcontrol/tangostationcontrol/devices/abstract_device.py index 8250e4e481dc9d27ec88654b6fef777d0e9bc4e4..c3c6aea23d0af39f80dd733efb4c911847d93635 100644 --- a/tangostationcontrol/tangostationcontrol/devices/abstract_device.py +++ b/tangostationcontrol/tangostationcontrol/devices/abstract_device.py @@ -11,7 +11,6 @@ """ -from abc import ABCMeta import logging from tango.server import DeviceMeta @@ -19,10 +18,15 @@ from tango.server import DeviceMeta logger = logging.getLogger() -class AbstractDeviceMetas(DeviceMeta, ABCMeta): +# TODO(Corne): Fix combining metaclasses by iterating over their variables and +# methods. https://support.astron.nl/jira/browse/L2SS-551 +# class AbstractDeviceMetas(DeviceMeta, ABCMeta): +class AbstractDeviceMetas(DeviceMeta): """Collects meta classes to allow lofar_device to be both a Device and an ABC. """ def __new__(mcs, name, bases, namespace, **kwargs): - cls = ABCMeta.__new__(mcs, name, bases, namespace, **kwargs) - cls = DeviceMeta.__new__(type(cls), name, bases, namespace) + cls = DeviceMeta.__new__(mcs, name, bases, namespace, **kwargs) + # temp_cls = ABCMeta.__new__(mcs, name, bases, namespace) + # setattr(cls, '__abstractmethods__', temp_cls.__abstractmethods__) + # setattr(cls, '_abc_impl', temp_cls._abc_impl) return cls diff --git a/tangostationcontrol/tangostationcontrol/devices/apsct.py b/tangostationcontrol/tangostationcontrol/devices/apsct.py index 476c8306ea7201fc7dfc0e75adf55bfaa5fdca51..1a6fa655c86414d86219ac0cdd43b985bba2c305 100644 --- a/tangostationcontrol/tangostationcontrol/devices/apsct.py +++ b/tangostationcontrol/tangostationcontrol/devices/apsct.py @@ -13,14 +13,14 @@ # PyTango imports from tango import DebugIt -from tango.server import run, command +from tango.server import command from tango import AttrWriteType, DevState import numpy # Additional import from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.common.entrypoint import entry -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import device_logging_to_python from tangostationcontrol.devices.device_decorators import * from tangostationcontrol.devices.opcua_device import opcua_device diff --git a/tangostationcontrol/tangostationcontrol/devices/apspu.py b/tangostationcontrol/tangostationcontrol/devices/apspu.py index 88a677fcb1cd743e1e59f8fe3aecbbb2a0992cba..3a106ba1f7291b538eadb5fa67839652fde3722b 100644 --- a/tangostationcontrol/tangostationcontrol/devices/apspu.py +++ b/tangostationcontrol/tangostationcontrol/devices/apspu.py @@ -16,11 +16,10 @@ from tango import AttrWriteType import numpy # Additional import -from tangostationcontrol.devices.device_decorators import * from tangostationcontrol.common.entrypoint import entry from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.opcua_device import opcua_device -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import device_logging_to_python __all__ = ["APSPU", "main"] diff --git a/tangostationcontrol/tangostationcontrol/devices/beam.py b/tangostationcontrol/tangostationcontrol/devices/beam.py index 203bfeac050142a134f4270d75abba6ffabcb4ef..ad6e31812797501b2d12a86b5c889d5b2db0f6a5 100644 --- a/tangostationcontrol/tangostationcontrol/devices/beam.py +++ b/tangostationcontrol/tangostationcontrol/devices/beam.py @@ -17,9 +17,7 @@ import tarfile import datetime # Additional import -from tangostationcontrol.devices.device_decorators import * from tangostationcontrol.common.entrypoint import entry -from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.lofar_device import lofar_device from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions from tangostationcontrol.common.measures import get_measures_directory, use_measures_directory, download_measures, restart_python, get_available_measures_directories diff --git a/tangostationcontrol/tangostationcontrol/devices/boot.py b/tangostationcontrol/tangostationcontrol/devices/boot.py index 5f2e9b76e47a9ed61207a07fbc0584ec355b6620..2d5054f78789258046296409ece063dadb23103f 100644 --- a/tangostationcontrol/tangostationcontrol/devices/boot.py +++ b/tangostationcontrol/tangostationcontrol/devices/boot.py @@ -15,7 +15,7 @@ Boots the rest of the station software. # PyTango imports from tango import DebugIt -from tango.server import run, command +from tango.server import command from tango.server import device_property, attribute from tango import AttrWriteType, DeviceProxy, DevState # Additional import diff --git a/tangostationcontrol/tangostationcontrol/devices/device_decorators.py b/tangostationcontrol/tangostationcontrol/devices/device_decorators.py index b54b783090e33812b525b77bf2e015a97019b770..26a5c488ba0a4ae219e3bd783691491e9ff2f45c 100644 --- a/tangostationcontrol/tangostationcontrol/devices/device_decorators.py +++ b/tangostationcontrol/tangostationcontrol/devices/device_decorators.py @@ -1,6 +1,5 @@ -from tango import DevState, Except +from tango import DevState from functools import wraps -import traceback import logging logger = logging.getLogger() diff --git a/tangostationcontrol/tangostationcontrol/devices/docker_device.py b/tangostationcontrol/tangostationcontrol/devices/docker_device.py index 00f42ca816e1e8219cde06913ef633961a15366e..e69636e9d1501bb89019f6663069d00b528b53fb 100644 --- a/tangostationcontrol/tangostationcontrol/devices/docker_device.py +++ b/tangostationcontrol/tangostationcontrol/devices/docker_device.py @@ -12,14 +12,10 @@ """ # PyTango imports -from tango.server import run, command -from tango.server import device_property, attribute +from tango.server import device_property from tango import AttrWriteType import numpy import asyncio -# Additional import - -from tangostationcontrol.devices.device_decorators import * # Additional import from tangostationcontrol.common.entrypoint import entry diff --git a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py index 39a1ca4e81bf3953bc975abb0fa5c024b822d87f..690f65104b1ada278b7c09447df47de1817941ce 100644 --- a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py +++ b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py @@ -14,7 +14,7 @@ from abc import abstractmethod # PyTango imports -from tango.server import Device, command, DeviceMeta, attribute +from tango.server import Device, command, attribute from tango import AttrWriteType, DevState, DebugIt, Attribute, DeviceProxy import time import math diff --git a/tangostationcontrol/tangostationcontrol/devices/observation.py b/tangostationcontrol/tangostationcontrol/devices/observation.py index d43ecdf677d33ff942cdfb18d792b5b1a0609a22..7a99b13d3c64e96eaed4568dce169176fd9e78ce 100644 --- a/tangostationcontrol/tangostationcontrol/devices/observation.py +++ b/tangostationcontrol/tangostationcontrol/devices/observation.py @@ -6,8 +6,8 @@ # See LICENSE.txt for more info. # PyTango imports -from tango import server, Except, DevState, AttrWriteType, DevString, DebugIt -from tango.server import Device, run, command, attribute +from tango import DevState, AttrWriteType, DevString +from tango.server import Device, command, attribute import numpy from time import time diff --git a/tangostationcontrol/tangostationcontrol/devices/observation_control.py b/tangostationcontrol/tangostationcontrol/devices/observation_control.py index 2bdae2e850a2b33955fcadc9512e4e6241d0452c..9d1c459a0bc29f50d88d81d37ba7fd040de9a480 100644 --- a/tangostationcontrol/tangostationcontrol/devices/observation_control.py +++ b/tangostationcontrol/tangostationcontrol/devices/observation_control.py @@ -7,7 +7,7 @@ # PyTango imports from tango import Except, DevFailed, DevState, AttrWriteType, DebugIt, DeviceProxy, Util, DevBoolean, DevString -from tango.server import Device, run, command, device_property, attribute +from tango.server import Device, command, attribute from tango import EventType import numpy diff --git a/tangostationcontrol/tangostationcontrol/devices/opcua_device.py b/tangostationcontrol/tangostationcontrol/devices/opcua_device.py index d3668cfae31a23758573db82d29b5cb9ed38d1ba..6da1fdf21d635e4f32cf848cb4c8c81287b896d6 100644 --- a/tangostationcontrol/tangostationcontrol/devices/opcua_device.py +++ b/tangostationcontrol/tangostationcontrol/devices/opcua_device.py @@ -11,23 +11,14 @@ """ -# TODO(Corne): Remove sys.path.append hack once packaging is in place! -import os, sys -currentdir = os.path.dirname(os.path.realpath(__file__)) -parentdir = os.path.dirname(currentdir) -sys.path.append(parentdir) - # PyTango imports -from tango import DebugIt from tango.server import device_property, attribute -from tango import AttrWriteType import numpy import asyncio # Additional import -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import log_exceptions from tangostationcontrol.clients.opcua_client import OPCUAConnection -from tangostationcontrol.devices.device_decorators import * from tangostationcontrol.devices.lofar_device import lofar_device import logging diff --git a/tangostationcontrol/tangostationcontrol/devices/recv.py b/tangostationcontrol/tangostationcontrol/devices/recv.py index e6f0d1f36ed16790f5532b7f9cafce3419ff8579..597c762943ffb31a0ada8a633a6472673f06a6d1 100644 --- a/tangostationcontrol/tangostationcontrol/devices/recv.py +++ b/tangostationcontrol/tangostationcontrol/devices/recv.py @@ -13,14 +13,14 @@ # PyTango imports from tango import DebugIt -from tango.server import run, command +from tango.server import command from tango.server import device_property, attribute from tango import AttrWriteType, DevState import numpy # Additional import from tangostationcontrol.common.entrypoint import entry -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import device_logging_to_python from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.device_decorators import * from tangostationcontrol.devices.opcua_device import opcua_device diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/sdp.py b/tangostationcontrol/tangostationcontrol/devices/sdp/sdp.py index b613a3af451c1e8ecb1ae6d120aff5c042c200d8..5307b17045e7299964475a9051f10ce0e8fb1adb 100644 --- a/tangostationcontrol/tangostationcontrol/devices/sdp/sdp.py +++ b/tangostationcontrol/tangostationcontrol/devices/sdp/sdp.py @@ -12,15 +12,14 @@ """ # PyTango imports -from tango.server import run -from tango.server import device_property, attribute +from tango.server import device_property from tango import AttrWriteType # Additional import from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.opcua_device import opcua_device from tangostationcontrol.common.entrypoint import entry -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import device_logging_to_python import numpy diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/sst.py b/tangostationcontrol/tangostationcontrol/devices/sdp/sst.py index 640ea13015fe712fff54c122efd9ebeeff406957..889f38ba2a6bbbd3bbcf43852c95edc1843d9317 100644 --- a/tangostationcontrol/tangostationcontrol/devices/sdp/sst.py +++ b/tangostationcontrol/tangostationcontrol/devices/sdp/sst.py @@ -12,8 +12,7 @@ """ # PyTango imports -from tango.server import run -from tango.server import device_property, attribute +from tango.server import device_property from tango import AttrWriteType # Additional import diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/statistics.py b/tangostationcontrol/tangostationcontrol/devices/sdp/statistics.py index 4b03f2db7848cf37d1b2d8ccacfcf0ac81e928cc..ae8b663dc61b4eafa17a73acaa4efc548c3d4d95 100644 --- a/tangostationcontrol/tangostationcontrol/devices/sdp/statistics.py +++ b/tangostationcontrol/tangostationcontrol/devices/sdp/statistics.py @@ -11,11 +11,10 @@ """ -from abc import ABCMeta, abstractmethod +from abc import abstractmethod # PyTango imports -from tango.server import device_property, attribute -from tango import AttrWriteType +from tango.server import device_property # Additional import import asyncio @@ -23,7 +22,7 @@ import asyncio from tangostationcontrol.clients.statistics_client import StatisticsClient from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.opcua_device import opcua_device -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import log_exceptions import logging @@ -33,7 +32,9 @@ import numpy __all__ = ["Statistics"] -class Statistics(opcua_device, metaclass=ABCMeta): +# TODO(Corne): Make Statistics use ABCMeta again when L2SS-551 is fixed +# https://support.astron.nl/jira/browse/L2SS-551 +class Statistics(opcua_device): # In derived classes, set this to a subclass of StatisticsCollector @property diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/xst.py b/tangostationcontrol/tangostationcontrol/devices/sdp/xst.py index dcbda73c6570f6db966eaf5518e2129ecea41187..7d921192a3f025f04f580eb5688364dea7dd89ba 100644 --- a/tangostationcontrol/tangostationcontrol/devices/sdp/xst.py +++ b/tangostationcontrol/tangostationcontrol/devices/sdp/xst.py @@ -12,7 +12,6 @@ """ # PyTango imports -from tango.server import run from tango.server import device_property, attribute from tango import AttrWriteType diff --git a/tangostationcontrol/tangostationcontrol/devices/unb2.py b/tangostationcontrol/tangostationcontrol/devices/unb2.py index a937f8d42c1b06e5e2952a33dfd2d5575aaf8eed..cbad7fad14cf7d66371f92767e2aede331bd1fa2 100644 --- a/tangostationcontrol/tangostationcontrol/devices/unb2.py +++ b/tangostationcontrol/tangostationcontrol/devices/unb2.py @@ -12,15 +12,15 @@ """ # PyTango imports -from tango.server import run, command -from tango.server import device_property, attribute +from tango.server import command +from tango.server import device_property from tango import AttrWriteType, DebugIt, DevState # Additional import from tangostationcontrol.common.entrypoint import entry from tangostationcontrol.clients.attribute_wrapper import attribute_wrapper from tangostationcontrol.devices.opcua_device import opcua_device -from tangostationcontrol.common.lofar_logging import device_logging_to_python, log_exceptions +from tangostationcontrol.common.lofar_logging import device_logging_to_python from tangostationcontrol.devices.device_decorators import only_in_states import numpy diff --git a/tangostationcontrol/tangostationcontrol/examples/load_from_disk/ini_client.py b/tangostationcontrol/tangostationcontrol/examples/load_from_disk/ini_client.py index e5fbf03711fe220cfa56fa9327cbede7168b4e86..75fb9ae83bd73a85dba1cc0da6fd77aeb1d1d422 100644 --- a/tangostationcontrol/tangostationcontrol/examples/load_from_disk/ini_client.py +++ b/tangostationcontrol/tangostationcontrol/examples/load_from_disk/ini_client.py @@ -31,7 +31,6 @@ ini_to_numpy_dict = { str: numpy.str } -import os class ini_client(CommClient): """ diff --git a/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py b/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py index ef4854a8241aaee7e6099ae7d417d7b94acfa21e..db9f51eb7b82d081c5b83ebe04dc998a8e5f1506 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/devices/base.py @@ -7,14 +7,13 @@ # Distributed under the terms of the APACHE license. # See LICENSE.txt for more info. -import time -import unittest - from tango._tango import DevState +from tangostationcontrol.devices.opcua_device import opcua_device from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy from tangostationcontrol.integration_test import base + class AbstractTestBases: """ Holder for abstract test base classes. If we define these at the top level, the test runner will execute them. """ @@ -55,6 +54,12 @@ class AbstractTestBases: self.assertEqual(DevState.STANDBY, self.proxy.state()) + def test_device_missing_attributes(self): + """Test if any attributes are missing from opcua devices""" + + if isinstance(self.proxy, opcua_device): + self.self.assertListEqual([], self.proxy.opcua_missing_attributes_R) + def test_device_on(self): """Test if we can transition to on""" diff --git a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_sdp.py b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_sdp.py index 7de27c34b9746c1541c2b7091c977ed32ce9e535..3a075e697c473c9800257b4796f21f7b79e5e430 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_sdp.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_sdp.py @@ -7,7 +7,6 @@ # Distributed under the terms of the APACHE license. # See LICENSE.txt for more info. -from tango._tango import DevState from .base import AbstractTestBases diff --git a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_tango_database.py b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_tango_database.py index b14cc363f24b3ea8e77ecd59e1184500fe40e0d4..c61611723258c4ad74141dcf519820923416537f 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_tango_database.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_tango_database.py @@ -7,10 +7,7 @@ # Distributed under the terms of the APACHE license. # See LICENSE.txt for more info. -import time - from tango import Database -from tango._tango import DevState from tangostationcontrol.integration_test import base diff --git a/tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py b/tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py index eb7fa643bd9c8d74b1e946f468532c4852ecaba5..30710a871e157909aa9e4d42169ac686fc23e889 100644 --- a/tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py +++ b/tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py @@ -11,7 +11,7 @@ import logging # import statistics classes with workaround import sys sys.path.append("..") -from tangostationcontrol.devices.sdp.statistics_packet import SSTPacket, XSTPacket, BSTPacket, StatisticsPacket +from tangostationcontrol.devices.sdp.statistics_packet import SSTPacket, XSTPacket import tangostationcontrol.devices.sdp.statistics_collector as statistics_collector diff --git a/tangostationcontrol/tangostationcontrol/statistics_writer/udp_dev/udp_server.py b/tangostationcontrol/tangostationcontrol/statistics_writer/udp_dev/udp_server.py index 3f114bad951334f76db8c111c710a9771903643b..35ccb6bd92975bcfbd2ea877e5e5b38c3962b0c5 100644 --- a/tangostationcontrol/tangostationcontrol/statistics_writer/udp_dev/udp_server.py +++ b/tangostationcontrol/tangostationcontrol/statistics_writer/udp_dev/udp_server.py @@ -1,9 +1,8 @@ import socket -import sys -import time import netifaces as ni from datetime import datetime + class UDP_Server: def __init__(self, ip:str, port:int, buffer_size:int = 8192): diff --git a/tangostationcontrol/tangostationcontrol/test/clients/test_attr_wrapper.py b/tangostationcontrol/tangostationcontrol/test/clients/test_attr_wrapper.py index 24ba5f506023f4260a35958cba568936cb2ad76f..651fbabe8a47061811fcfa67f68978ff527cec72 100644 --- a/tangostationcontrol/tangostationcontrol/test/clients/test_attr_wrapper.py +++ b/tangostationcontrol/tangostationcontrol/test/clients/test_attr_wrapper.py @@ -308,7 +308,7 @@ class TestAttributeTypes(base.TestCase): if test_type == "scalar": expected = numpy.zeros((1,), dtype=dtype) - val = proxy.scalar_RW + val = proxy.scalar_R elif test_type == "spectrum": expected = numpy.zeros(spectrum_dims, dtype=dtype) val = proxy.spectrum_R diff --git a/tangostationcontrol/tangostationcontrol/test/clients/test_client.py b/tangostationcontrol/tangostationcontrol/test/clients/test_client.py index ea03e850d4021d0d4c40e82a60d4fd1f0a9d67ea..577bab69e469fb26af2252790b22f7f92d2c0ade 100644 --- a/tangostationcontrol/tangostationcontrol/test/clients/test_client.py +++ b/tangostationcontrol/tangostationcontrol/test/clients/test_client.py @@ -73,8 +73,12 @@ class test_client(CommClient): """ takes all gathered data to configure and return the correct read and write functions """ - - self.value = numpy.zeros(dims, dtype) + if dtype == str and dims == (1,): + self.value = '' + elif dims == (1,): + self.value = dtype(0) + else: + self.value = numpy.zeros(dims, dtype) def read_function(): logger.debug("from read_function, reading {} array of type {}".format(dims, dtype)) diff --git a/tangostationcontrol/tangostationcontrol/test/devices/automatic_polling_performance_test/monitoring_performance_test.py b/tangostationcontrol/tangostationcontrol/test/devices/automatic_polling_performance_test/monitoring_performance_test.py index e5360f26d97ab84564116b1eb98a6f5df58a972e..131d1f2bec8368ffebbc7cf45665edde00a67754 100644 --- a/tangostationcontrol/tangostationcontrol/test/devices/automatic_polling_performance_test/monitoring_performance_test.py +++ b/tangostationcontrol/tangostationcontrol/test/devices/automatic_polling_performance_test/monitoring_performance_test.py @@ -18,13 +18,13 @@ import time import numpy from tango import DevState, Util from tango.server import run, Device, attribute -from numpy import random __all__ = ["Monitoring_Performance_Device", "main"] POLLING_THREADS = 100 ARRAY_SIZE = 2000000 + class Monitoring_Performance_Device(Device): global ARRAY_SIZE def read_array(self): diff --git a/tangostationcontrol/tangostationcontrol/test/devices/random_data.py b/tangostationcontrol/tangostationcontrol/test/devices/random_data.py index 51d7b269f99c814cb340dc9f0e8feb44f3393f94..d010a09c06d307af32209bf30275c0366e619644 100644 --- a/tangostationcontrol/tangostationcontrol/test/devices/random_data.py +++ b/tangostationcontrol/tangostationcontrol/test/devices/random_data.py @@ -9,7 +9,7 @@ # PyTango imports from tango import DevState -from tango.server import run, Device, attribute, command +from tango.server import run, Device, attribute from numpy import random, double __all__ = ["Random_Data", "main"] diff --git a/tangostationcontrol/tangostationcontrol/test/devices/test_abstract_device.py b/tangostationcontrol/tangostationcontrol/test/devices/test_abstract_device.py index 469ea19fa970cf48c2de9c4c6b5648bd7b756040..742fa9e405d112444239ae30284e51b8452416e8 100644 --- a/tangostationcontrol/tangostationcontrol/test/devices/test_abstract_device.py +++ b/tangostationcontrol/tangostationcontrol/test/devices/test_abstract_device.py @@ -10,12 +10,9 @@ import abc from unittest import mock -from tango import DevFailed from tango import server from tango.server import attribute -from tango.test_context import DeviceTestContext - from tangostationcontrol.devices.abstract_device import AbstractDeviceMetas from tangostationcontrol.test import base @@ -59,17 +56,17 @@ class TestAbstractDevice(base.TestCase): def setUp(self): super(TestAbstractDevice, self).setUp() - def test_instance_tango(self): - - try: - with DeviceTestContext(self.TestHardwareDevice, process=True) as proxy: - # Calling this method raises the NotImplementedError exception - proxy.call_example_method() - except Exception as e: - self.assertIsInstance(e, DevFailed) - - with DeviceTestContext(self.ConcreteHardwareDevice, process=True) as proxy: - self.assertEqual(12, proxy.call_example_method) + # def test_instance_tango(self): + # + # try: + # with DeviceTestContext(self.TestHardwareDevice, process=True) as proxy: + # # Calling this method raises the NotImplementedError exception + # proxy.call_example_method() + # except Exception as e: + # self.assertIsInstance(e, RuntimeError) + # + # with DeviceTestContext(self.ConcreteHardwareDevice, process=True) as proxy: + # self.assertEqual(12, proxy.call_example_method) @mock.patch.object(server, 'get_worker') @mock.patch.object(server, 'LatestDeviceImpl') @@ -86,4 +83,9 @@ class TestAbstractDevice(base.TestCase): # the expected error. self.assertRaises(TypeError, self.AbstractExample) + @mock.patch.object(server, 'get_worker') + @mock.patch.object(server, 'LatestDeviceImpl') + def test_isinstance(self, m_worker, m_implement): + m_device = self.TestHardwareDevice(mock.Mock(), mock.Mock()) + self.assertFalse(isinstance(m_device, AbstractDeviceMetas)) diff --git a/tangostationcontrol/tangostationcontrol/toolkit/archiver.py b/tangostationcontrol/tangostationcontrol/toolkit/archiver.py index 7562e88620c897bbc09c35fce92f87540d9bb04b..8f3e7a25046764eeedaf9fa2380b2fdbe76b0b6b 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/archiver.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/archiver.py @@ -2,10 +2,11 @@ import logging -from tango import DeviceProxy, AttributeProxy +from tango import DeviceProxy, AttributeProxy, DevState, DevFailed import time -import json, os +import json +import pkg_resources logger = logging.getLogger() @@ -55,53 +56,66 @@ def split_tango_name(tango_fqname:str, tango_type:str): else: raise ValueError(f"Invalid value: {tango_type}. Please provide 'device' or 'attribute'.") + +def warn_if_attribute_not_found(): + """ + Log a warning if an exception is thrown indicating access to an non-existing attribute + was requested, and swallow the exception. + """ + def inner(func): + @wraps(func) + def warn_wrapper(self, *args, **kwargs): + try: + return func(self, *args, **kwargs) + except DevFailed as e: + if e.args[0].reason == 'Attribute not found': + logger.warning(f"Attribute {attribute_name} not found!") + else: + raise + + return warn_wrapper + + return inner + class Archiver(): """ The Archiver class implements the basic operations to perform attributes archiving """ # Global 'DEVELOPMENT' environment variables set by configuration file - dev_polling_time = None - dev_archive_time = None + dev_polling_time = 600 + dev_archive_time = 3600 - def __init__(self, selector_filename:str = None, cm_name: str = 'archiving/hdbppts/confmanager01', context: str = 'RUN'): + def __init__(self, cm_name: str = 'archiving/hdbppts/confmanager01', context: str = 'RUN'): self.cm_name = cm_name self.cm = DeviceProxy(cm_name) try: - cm_state = self.cm.state() # ping the device server - if 'FAULT' in str(cm_state): - raise Exception("Configuration Manager is in FAULT state") + if self.cm.state() == DevState.FAULT: + raise Exception(f"Configuration Manager {cm_name} is in FAULT state") except Exception as e: - raise Exception("Connection failed with Configuration Manager device") from e - self.es_list = [es_name for es_name in self.get_subscribers(from_db=False)] or [] + raise Exception(f"Connection failed with Configuration Manager {cm_name}") from e + self.es_list = [es_name for es_name in self.get_subscribers(from_db=False)] self.cm.write_attribute('Context',context) # Set default Context Archiving for all the subscribers - self.selector = Selector() if selector_filename is None else Selector(selector_filename) # Create selector for customized strategies - try: - self.apply_selector() - except Exception as e: - raise Exception("Error in selecting configuration. Archiving framework will not be updated.") from e - def get_db_config(self, device_name:str): + def get_db_config(self, device_name:str) -> dict: """ Retrieve the DB credentials from the Tango properties of Configuration Manager or EventSubscribers """ device = DeviceProxy(device_name) - config_list = device.get_property('LibConfiguration')['LibConfiguration'] # dictionary {'LibConfiguration': list of strings} - host = str([s for s in config_list if "host" in s][0].split('=')[1]) - libname = str([s for s in config_list if "libname" in s][0].split('=')[1]) - dbname = str([s for s in config_list if "dbname" in s][0].split('=')[1]) - port = str([s for s in config_list if "port" in s][0].split('=')[1]) - user = str([s for s in config_list if "user" in s][0].split('=')[1]) - pw = str([s for s in config_list if "password" in s][0].split('=')[1]) - return [host,libname,dbname,port,user,pw] + # example LibConfiguration property value: + # ['connect_string= user=postgres password=password host=archiver-timescale port=5432 dbname=hdb', 'host=archiver-timescale', 'libname=libhdb++timescale.so', 'dbname=hdb', 'port=5432', 'user=postgres', 'password=password'] + config_strs = device.get_property('LibConfiguration')['LibConfiguration'] + + config = dict(config_str.split("=",1) for config_str in config_strs) + return config def get_hdbpp_libname(self, device_name:str): """ Get the hdbpp library name used by the Configuration Manager or by the EventSubscribers Useful in the case of different DBMS architectures (e.g. MySQL, TimescaleDB) """ - config_list = self.get_db_config(device_name) - return config_list[1] + config = self.get_db_config(device_name) + return config["libname"] def get_subscribers(self, from_db:bool=False): """ @@ -132,13 +146,17 @@ class Archiver(): load_dict[es_name]=float(es.AttributeRecordFreq or 0) # Return the subscriber's name with min load min_es = min(load_dict,key=load_dict.get) - return min_es - - def apply_selector(self): + return min_es + + def get_configuration(self, resource: str = 'lofar2') -> dict: + """ Read an archiver configuration from one of the preinstalled resources in archiver_config. """ + resource = pkg_resources.resource_stream(__name__, f'archiver_config/{resource}.json') + return json.load(resource) + + def apply_configuration(self, config_dict: dict): """ - Apply the customized strategy defined by the selector + Apply the customized strategy defined by the given archiver configuration. """ - config_dict = self.selector.get_dict() # Set global development env variables var_dict = config_dict.get('global_variables') self.dev_polling_time = int(var_dict.get('development_polling_time')) @@ -173,7 +191,6 @@ class Archiver(): logger.warning(f"Device {device} not defined in TangoDB") else: raise Exception from e - return env_dict def add_event_subscriber(self, es_name:str=None): """ @@ -186,15 +203,14 @@ class Archiver(): es_name = last_es_name[:-2]+'0'+str(last_es_idx+1) try: es = DeviceProxy(es_name) - es_state = es.state() # ping the device server - if 'FAULT' in str(es_state): - raise Exception(f"{es_name} is in FAULT state") + if es.state() == DevState.FAULT: + raise Exception(f"Event Subscriber {es_name} is in FAULT state") self.cm.ArchiverAdd(device_name_url(es_name)) - except Exception as e: - if 'already_present' in str(e): - logger.warning(f"Subscriber {es_name} already present in Configuration Manager") + except DevFailed as e: + if e.args[0].reason == "Archiver already present": + logger.warning(f"Event Subscriber {es_name} already present in Configuration Manager") else: - raise Exception from e + raise def add_attribute_to_archiver(self, attribute_name: str, polling_period: int, event_period: int, strategy: str = 'RUN', es_name:str=None): """ @@ -212,11 +228,11 @@ class Archiver(): self.cm.write_attribute('SetPeriodEvent', event_period) self.cm.AttributeAdd() logger.info(f"Attribute {attribute_name} added to archiving list!") - except Exception as e: - if 'already archived' not in str(e).lower(): - raise Exception from e - else: + except DevFailed as e: + if e.args[0].reason == 'Already archived': logger.warning(f"Attribute {attribute_name} already in archiving list!") + else: + raise def add_attributes_by_device(self,device_name,global_archive_period:int = None, es_name:str=None, exclude:list = []): """ @@ -244,21 +260,17 @@ class Archiver(): raise Exception from e else: logger.warning(f"Attribute {attr_fullname} will not be archived because polling is set to FALSE!") - + + @warn_if_attribute_not_found() def remove_attribute_from_archiver(self, attribute_name:str): """ Stops the data archiving of the attribute passed as input, and remove it from the subscriber's list. """ attribute_name = attribute_name_from_url(attribute_name) - try: - self.cm.AttributeStop(attribute_name) - self.cm.AttributeRemove(attribute_name) - logger.warning(f"Attribute {attribute_name} removed!") - except Exception as e: - if 'attribute not found' not in str(e).lower(): - raise Exception from e - else: - logger.warning(f"Attribute {attribute_name} not found in archiving list!") + + self.cm.AttributeStop(attribute_name) + self.cm.AttributeRemove(attribute_name) + logger.warning(f"Attribute {attribute_name} removed!") def remove_attributes_by_device(self,device_name:str,exclude:list=[]): """ @@ -293,33 +305,25 @@ class Archiver(): attr_fullname = attribute_name_from_url(a) self.remove_attribute_from_archiver(attr_fullname) + @warn_if_attribute_not_found() def start_archiving_attribute(self, attribute_name:str): """ Starts the archiving of the attribute passed as input. The attribute must be already present in the subscriber's list """ attribute_name = attribute_name_from_url(attribute_name) - try: - self.cm.AttributeStart(attribute_name) - except Exception as e: - if 'attribute not found' not in str(e).lower(): - raise Exception from e - else: - logger.warning(f"Attribute {attribute_name} not found!") + + self.cm.AttributeStart(attribute_name) + @warn_if_attribute_not_found() def stop_archiving_attribute(self, attribute_name:str): """ Stops the archiving of the attribute passed as input. The attribute must be already present in the subscriber's list """ attribute_name = attribute_name_from_url(attribute_name) - try: - self.cm.AttributeStop(attribute_name) - except Exception as e: - if 'attribute not found' not in str(e).lower(): - raise Exception from e - else: - logger.warning(f"Attribute {attribute_name} not found!") + + self.cm.AttributeStop(attribute_name) def is_attribute_archived(self,attribute_name:str): """ @@ -369,15 +373,13 @@ class Archiver(): """ attrs = [] errs = [] - if es_name is not None: - es_list = [es_name] - else: - es_list = self.get_subscribers() + es_list = [es_name] if es_name else self.get_subscribers() + for es_name in es_list: es = DeviceProxy(es_name) attrs.extend(list(es.AttributeList or [])) errs.extend(list(es.AttributeErrorList or [])) - return dict((a,e) for a,e in zip(attrs,errs) if e) or {} + return {a: e for a,e in zip(attrs,errs) if e} def get_attribute_errors(self,attribute_name:str): """ @@ -387,7 +389,7 @@ class Archiver(): errs_dict = self.get_subscriber_errors() for e in errs_dict: if attribute_name in e: - return errs_dict.get(e) + return errs_dict[e] return None def get_subscriber_load(self,use_freq:bool=True,es_name:str = None): @@ -395,10 +397,7 @@ class Archiver(): Return the estimated load of an archiver, in frequency of records or number of attributes """ - if es_name is not None: - es = DeviceProxy(es_name) - else: - es = DeviceProxy(self.get_next_subscriber()) + es = DeviceProxy(es_name or self.get_next_subscriber()) if use_freq: return str(es.AttributeRecordFreq)+(' events/period' ) else: @@ -426,10 +425,10 @@ class Archiver(): attribute_name = attribute_name_from_url(attribute_name) if self.is_attribute_archived(attribute_name): es = DeviceProxy(self.get_attribute_subscriber(attribute_name)) - freq_dict = dict((a,r) for a,r in zip(es.AttributeList,es.AttributeRecordFreqList)) + freq_dict = {a: r for a,r in zip(es.AttributeList,es.AttributeRecordFreqList)} for f in freq_dict: if attribute_name.lower() in f: - return freq_dict.get(f,0.) + return freq_dict[f] else: logger.warning(f"Attribute {attribute_name} not found!") @@ -440,13 +439,13 @@ class Archiver(): attribute_name = attribute_name_from_url(attribute_name) if self.is_attribute_archived(attribute_name): es = DeviceProxy(self.get_attribute_subscriber(attribute_name)) - fail_dict = dict((a,r) for a,r in zip(es.AttributeList,es.AttributeFailureFreqList)) + fail_dict = {a: r for a,r in zip(es.AttributeList,es.AttributeFailureFreqList)} for f in fail_dict: if attribute_name.lower() in f: - return fail_dict.get(f,0.) + return fail_dict[f] else: logger.warning(f"Attribute {attribute_name} not found!") - + class AttributeFormatException(Exception): """ Exception that handles wrong attribute naming @@ -454,24 +453,3 @@ class AttributeFormatException(Exception): def __init__(self, message="Wrong Tango attribute format! Try: domain/family/member/attribute (e.g. STAT/RECV/1/temperature)"): self.message = message super().__init__(self.message) - -class Selector(): - """ - The Selector class implements operations on select customized retrieval strategies - """ - - def __init__(self, filename='lofar2.json'): - self.filename = filename - - def get_dict(self): - """ - Create a dictionary from the JSON file - """ - try: - filepath = os.path.join(os.path.dirname(__file__),'archiver_config',self.filename) - f = open(filepath) - data = json.load(f) - f.close() - except FileNotFoundError as e: - raise - return data diff --git a/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_mysql.py b/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_mysql.py index 4224b2349e7554d51a0a918fc22f70a01c022cdf..e770cbb42820804ada57dcc3790afd04e2ded842 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_mysql.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_mysql.py @@ -4,9 +4,7 @@ from sqlalchemy.dialects.mysql.types import INTEGER from sqlalchemy.orm import declarative_base from sqlalchemy import Column, Integer, String from sqlalchemy.dialects.mysql import DOUBLE,TIMESTAMP,BLOB, FLOAT, BIGINT -from sqlalchemy.sql.expression import table from typing import List -from itertools import groupby import numpy #Declarative system used to define classes mapped to relational DB tables diff --git a/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_ts.py b/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_ts.py index 0480777234333dc7e8e36e2f0cd6db519a06453c..4629e83dd749c11b04e641816396da38f9cca41e 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_ts.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/archiver_base_ts.py @@ -6,9 +6,7 @@ from sqlalchemy.dialects.postgresql.ranges import INT4RANGE, INT8RANGE from sqlalchemy.sql.sqltypes import INTEGER, TEXT, Boolean from sqlalchemy.orm import declarative_base from sqlalchemy import Column, Integer, String -from sqlalchemy.sql.expression import table from typing import List -from itertools import groupby import numpy #Declarative system used to define classes mapped to relational DB tables diff --git a/tangostationcontrol/tangostationcontrol/toolkit/attribute_polling_stats.py b/tangostationcontrol/tangostationcontrol/toolkit/attribute_polling_stats.py index fcfb502320d4de084f219244289f6ddfa064e996..c9ce452b647da579607bdf362fee00e735ee81de 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/attribute_polling_stats.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/attribute_polling_stats.py @@ -1,14 +1,14 @@ import numpy import tango +from time import sleep + def attribute_polling_stats(dp: tango._tango.DeviceProxy = None, iterations: int = 10, polling_time: float = 1.0, quiet = False): if dp is not None: print('Will sample the device server\'s polling time {} times with a pause of {}s between each sampling.'.format(iterations, polling_time)) else: print('A DeviceProxy object is needed!') return - import numpy - from time import sleep polling_durations = [] polling_delays = [] value = numpy.double(0) diff --git a/tangostationcontrol/tangostationcontrol/toolkit/get_internal_attribute_history.py b/tangostationcontrol/tangostationcontrol/toolkit/get_internal_attribute_history.py index 8b6b4254f6c10dc8207232b16fd5e22d44e7c556..980f350703882f41f1ceec57de8bb7be681b7b26 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/get_internal_attribute_history.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/get_internal_attribute_history.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 from tango import DeviceProxy -from numpy import array, transpose +from numpy import array def get_internal_attribute_history(device: DeviceProxy, attribute_name: str, depth: int = 10): try: diff --git a/tangostationcontrol/tangostationcontrol/toolkit/retriever.py b/tangostationcontrol/tangostationcontrol/toolkit/retriever.py index b84802cde128ca2f256f5f18ffb78dec3b9ea29f..6506ca3c79939ee9fea6c3ab0240938234d83cd4 100644 --- a/tangostationcontrol/tangostationcontrol/toolkit/retriever.py +++ b/tangostationcontrol/tangostationcontrol/toolkit/retriever.py @@ -1,6 +1,6 @@ #! /usr/bin/env python3 -from tango import DeviceProxy, AttributeProxy +from tango import DeviceProxy from tangostationcontrol.toolkit.archiver import split_tango_name from abc import ABC, abstractmethod diff --git a/tangostationcontrol/test-requirements.txt b/tangostationcontrol/test-requirements.txt index 1cd8ccb799fd1dc8b3b25db9051cb12d42d63bb3..16a9033db5279a246609fdc0f9c941d26c74792a 100644 --- a/tangostationcontrol/test-requirements.txt +++ b/tangostationcontrol/test-requirements.txt @@ -12,7 +12,7 @@ flake8-debugger>=4.0.0 #MIT flake8-mock>=0.3 #GPL hacking>=3.2.0,<3.3.0 # Apache-2.0 python-subunit>=1.4.0 # Apache-2.0/BSD -Pygments>=2.6.0 +Pygments>=2.6.0 # BSD stestr>=3.0.0 # Apache-2.0 testscenarios>=0.5.0 # Apache-2.0/BSD testtools>=2.4.0 # MIT diff --git a/tangostationcontrol/tox.ini b/tangostationcontrol/tox.ini index 69782d5e33c1ab14ce9abcd50253e0db9eabdf9a..fc0876dd08ba604c5d112e541ef14f5ea04c96c4 100644 --- a/tangostationcontrol/tox.ini +++ b/tangostationcontrol/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py36,py37,py38,py39,pep8 +envlist = py36,py37,py38,py39,py310,pep8 skipsdist = True [testenv] @@ -14,8 +14,8 @@ setenv = OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 deps = - -r{toxinidir}/test-requirements.txt -r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt + -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:integration] @@ -26,11 +26,36 @@ setenv = TESTS_DIR=./tangostationcontrol/integration_test commands = stestr run --serial {posargs} +; The access to coverage as module is a bit of an ugly hack. This is due to +; cover inheriting testenv which has `sitepackages = True`, meaning that global +; packages can be accessed by the tox environment. Our tango images already have +; coverage system wide installed, however, the system wide installation will +; never look inside tox its virtualenv for packages. So accessing stestr and +; others fail.. We can't remove `sitepackages = True` either as we need access +; to tango and installing this package is non-trivial. The solution is to +; prevent calling binaries directly and utilizing python to resolve the +; requested module. In addition stestr does not natively support generating +; coverage reports which is where the `PYTHON=python -m coverage run....` comes +; from. +[testenv:cover] +setenv = + VIRTUAL_ENV={envdir} + PYTHON=python -m coverage run --source tangostationcontrol --parallel-mode +deps = + -r{toxinidir}/test-requirements.txt + -r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt +commands = + python -m coverage erase + stestr run {posargs} + python -m coverage combine + python -m coverage html -d cover + python -m coverage xml -o coverage.xml + python -m coverage report + ; TODO(Corne): Integrate Hacking to customize pep8 rules [testenv:pep8] commands = -; doc8 is only necessary in combination with Sphinx or ReStructuredText (RST) -; doc8 doc/source/ README.rst + doc8 docs/source/ --ignore D001 flake8 [testenv:bandit]; @@ -41,7 +66,14 @@ commands = commands = bandit -r devices/ -n5 -ll -s B104 +[testenv:docs] +deps = + -r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt + -r{toxinidir}/docs/docs-requirements.txt +commands = + sphinx-build -W -b html docs/source docs/build/html + [flake8] filename = *.py,.stestr.conf,.txt -select = W292,B601,B602,T100,M001 +select = W292,B601,B602,T100,M001,F401 exclude=.tox,.egg-info