Project

General

Profile

tutorial.rst

Jose Maria Gomez, 20.12.2022 13:23

 
1
.. date: 20/12/2022
2
   author: José M Gómez
3
   copyright: Copyright 2017 F4E | European Joint Undertaking for ITER and
4
   the Development of Fusion Energy ('Fusion for Energy').
5
   Licensed under the EUPL, Version 1.1 or - as soon they will be approved
6
   by the European Commission - subsequent versions of the EUPL (the "Licence")
7
   You may not use this work except in compliance with the Licence.
8
   You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl
9
   warning: Unless required by applicable law or agreed to in writing, 
10
   software distributed under the Licence is distributed on an "AS IS"
11
   basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12
   or implied. See the Licence permissions and limitations under the Licence.
13

    
14
Tutorial
15
===============================
16

    
17
In this tutorial you will be able to use some of the main features of MARTe2.
18
The first step will be to set up the environment using the repository containing 
19
all the demos for MARTe2 Training Session
20

    
21

    
22
Setting up environment 
23
----------------------
24

    
25
It is assumed that a clean CentOS 7 installation is being used (https://www.centos.org/download/).
26
Alternatively, there is also a Dockerfile available (see below).
27

    
28
Download all the needed software
29
--------------------------------
30

    
31
Open a terminal, install epel repository and update the distribution: ::
32
    yum -y install epel-release
33
    yum -y update
34

    
35
Install git: ::
36

    
37
    yum -y install git
38

    
39
Install all the standard development tools, the cmake3 compiler and octave: ::
40

    
41
    yum -y groups install "Development Tools"
42
    yum -y install wget cmake3 octave libxml2 libxml2-devel bc
43

    
44
Solve dependencies for MARTe2 and EPICS:  ::
45

    
46
    yum -y install ncurses-devel readline-devel
47

    
48
Install Python and Perl Parse utilities for open62541: ::
49

    
50
    yum -y install python-dateutil python-six perl-ExtUtils-ParseXS
51

    
52
Install MDSplus ::
53

    
54
    yum -y install http://www.mdsplus.org/dist/el7/stable/RPMS/noarch/mdsplus-repo-7.50-0.el7.noarch.rpm
55
    yum -y install mdsplus-kernel* mdsplus-java* mdsplus-python* mdsplus-devel*
56

    
57
Create a folder named Projects and clone MARTe2 Core,  MARTe2 components and the MARTe2 demos: ::
58

    
59
    mkdir ~/Projects
60
    cd ~/Projects
61
    git clone https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2.git MARTe2-dev
62
    git clone -b \master https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2-components.git
63
    git clone https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2-demos-padova.git
64

    
65
Download EPICS R70.2: ::
66

    
67
    git clone -b R7.0.2 --recursive https://github.com/epics-base/epics-base.git epics-base-7.0.2
68

    
69
Clone open62541 v1.0 library: ::
70

    
71
    git clone -b 1.0 https://github.com/open62541/open62541.git
72

    
73
Download SDN: ::
74

    
75
    wget https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2-demos-padova/raw/develop/Other/SDN_1.0.12_nonCCS.tar.gz
76
    tar zxvf SDN_1.0.12_nonCCS.tar.gz
77

    
78
Building libraries and frameworks
79
---------------------------------
80
Build Open623541:
81
    
82

    
83
    cd ~/Projects/open62541
84

    
85
    Open the CMakeLists.txt file and comment the lines marked with # below
86
        if("${CMAKE_VERSION}" VERSION_GREATER 3.9)
87
            cmake_policy(SET CMP0069 NEW) # needed as long as required cmake < 3.9
88
            #include(CheckIPOSupported)
89
            #check_ipo_supported(RESULT CC_HAS_IPO) # Inter Procedural Optimization / Link Time Optimization (should be same as -flto)
90
            #if(CC_HAS_IPO)
91
            #    set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
92
            #endif()
93
        endif()
94

    
95
    Start building the open62541 library: ::
96

    
97
    mkdir ~/Projects/open62541/build
98
    cd ~/Projects/open62541/build
99
    cmake3 -DUA_ENABLE_AMALGAMATION=ON ..
100
    make
101

    
102
Compile EPICS: ::
103

    
104
    cd ~/Projects/epics-base-7.0.2
105
    echo "OP_SYS_CXXFLAGS += -std=c++11" >> configure/os/CONFIG_SITE.linux-x86_64.Common
106
    make
107

    
108
Compile SDN: ::
109

    
110
    cd ~/Projects/SDN_1.0.12_nonCCS
111
    make
112

    
113
Docker (optional) 
114
-----------------
115

    
116
In the root folder of this project there is a Dockerfile which includes all the demo dependencies. ::
117

    
118
    cd ~/Projects/MARTe2-demos-padova
119
    docker build -t <DOCKER_IMAGE> .
120

    
121
For instance, you can use "docker build -t marte2-demos-padova/centos:7 ."
122
Note that you need to map your local Projects directory with the /root/Projects directory in the container.
123
Also, the docker daemon needs to be running.
124

    
125
To execute the image with your host folder mapped into the container, run: ::
126
    
127
    docker run -it -e DISPLAY=$DISPLAY -w /root/Projects -v ~/Projects:/root/Projects:Z -v /tmp/.X11-unix:/tmp/.X11-unix <DOCKER_IMAGE>
128

    
129
Following the previous example, the command should be "docker run -it -e DISPLAY=$DISPLAY -w /root/Projects -v ~/Projects:/root/Projects:Z -v /tmp/.X11-unix:/tmp/.X11-unix marte2-demos-padova/centos:7"
130
where <DOCKER_IMAGE> is the name of the image in the form [REPOSITORY]:[TAG]. For instance, "docker.io/centos:7"
131

    
132
Compilings the MARTe and the examples
133
-------------------------------------
134

    
135
Make sure that all the environment variables are correctly exported. ::
136
    
137
    export MARTe2_DIR=~/Projects/MARTe2-dev
138
    export MARTe2_Components_DIR=~/Projects/MARTe2-components
139
    export OPEN62541_DIR=~/Projects/open62541
140
    export OPEN62541_LIB=~/Projects/open62541/build/bin
141
    export OPEN62541_INCLUDE=~/Projects/open62541/build
142
    export EPICS_BASE=~/Projects/epics-base-7.0.2
143
    export EPICSPVA=~/Projects/epics-base-7.0.2
144
    export EPICS_HOST_ARCH=linux-x86_64
145
    export PATH=$PATH:$EPICS_BASE/bin/$EPICS_HOST_ARCH
146
    export SDN_CORE_INCLUDE_DIR=~/Projects/SDN_1.0.12_nonCCS/src/main/c++/include/
147
    export SDN_CORE_LIBRARY_DIR=~/Projects/SDN_1.0.12_nonCCS/target/lib/
148
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MARTe2_DIR/Build/x86-linux/Core/:$EPICS_BASE/lib/$EPICS_HOST_ARCH:$SDN_CORE_LIBRARY_DIR
149
    cd ~/Projects/MARTe2-dev
150
    make -f Makefile.linux
151
    cd ~/Projects/MARTe2-components
152
    make -f Makefile.linux
153
    cd ~/Projects/MARTe2-demos-padova
154
    make -f Makefile.x86-linux
155

    
156
Disable firewall rules (otherwise the communication with EPICS may not work): ::
157

    
158
    iptable -F
159

    
160
Export all variables permanently (assumes that the relative paths above were used!). ::
161

    
162
    cp marte2-exports.sh /etc/profile.d/