File: paraviewFunctions

package info (click to toggle)
openfoam 1912.200626-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 238,940 kB
  • sloc: cpp: 1,159,638; sh: 15,902; ansic: 5,195; lex: 660; xml: 387; python: 282; awk: 212; makefile: 103; sed: 88; csh: 3
file content (311 lines) | stat: -rw-r--r-- 8,654 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#----------------------------------*-sh-*--------------------------------------
# =========                 |
# \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
#  \\    /   O peration     |
#   \\  /    A nd           | www.openfoam.com
#    \\/     M anipulation  |
#------------------------------------------------------------------------------
#     Copyright (C) 2018-2020 OpenCFD Ltd.
#------------------------------------------------------------------------------
# License
#     This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
#
# Script
#     paraviewFunctions
#
# Description
#     Helper functions for CMake with ParaView.
#     Setup of variables for creating ParaView plugins
#
# Requires
#     ParaView_DIR   (unless system)
#     PV_PLUGIN_PATH (or rely on automatic mechanism)
#
# Provides Functions
#     get_pvplugin_api, have_pvplugin_support, no_paraview, echo_paraview
#     cmakeVtk, cmakePv, cmakePvInstall
#
# Variables on success
#     HAVE_PVPLUGIN_SUPPORT
#     FOAM_PV_PLUGIN_LIBBIN
#     PARAVIEW_API - the paraview major/minor numbers (eg 5.6)
#     PARAVIEW_INC_DIR
#
# Note
#     The OpenFOAM plugin must be the first in PV_PLUGIN_PATH and have
#     paraview-major.minor encoded in its name.
#
#------------------------------------------------------------------------------
. ${WM_PROJECT_DIR:?}/wmake/scripts/sysFunctions    # General system functions
. ${WM_PROJECT_DIR:?}/wmake/scripts/cmakeFunctions  # Require cmake functions

#------------------------------------------------------------------------------

# Reset variables
no_paraview()
{
    unset HAVE_PVPLUGIN_SUPPORT FOAM_PV_PLUGIN_LIBBIN
    unset PARAVIEW_API PARAVIEW_INC_DIR
}


# Report
echo_paraview()
{
    echo "paraview=${HAVE_PVPLUGIN_SUPPORT:-false}"
    echo "root=$ParaView_DIR"
    echo "include=$PARAVIEW_INC_DIR"
    echo "plugin=$FOAM_PV_PLUGIN_LIBBIN"
    echo "api=$PARAVIEW_API"
}


# CMake into objectsDir with VTK_DIR dependency
# 1 - sourceDir
# 2.. optional cmake defines
cmakeVtk()
{
    cmakeVersioned "VTK_DIR=$VTK_DIR" "$@"
}


# CMake into objectsDir with ParaView_DIR dependency
# 1 - sourceDir
# 2.. optional cmake defines
cmakePv()
{
    cmakeVersioned "ParaView_DIR=$ParaView_DIR" "$@"
}

# CMake into objectsDir with ParaView_DIR dependency
# 1 - sourceDir
# 2.. optional cmake defines
cmakePvInstall()
{
    cmakeVersionedInstall "ParaView_DIR=$ParaView_DIR" "$@"
}


# Build library - use sentinel file(s) to handle paraview version changes
# Some difficulty handling different installation options as well
# as wmake options, so only handle build/configure information for now
#
# 1 - libName
# 2... build/configure information
#
# Similar to wmakeVersioned
wmakeLibPv()
{
    local depend="ParaView_DIR=$ParaView_DIR"
    local libName="$1"
    shift 1
    local sentinel

    sentinel=$(sameDependency "$libName" "$depend" $@) || \
        wclean "$libName"

    wmake $targetType "$libName" \
    && storeDependency "$sentinel" "$depend" $@
}

# Get ParaView API from given path.
# Eg, "/path/paraview-dir/paraview-5.6" -> "5.6"
#
# Or the output from `paraview --version`
# Eg, "paraview version 5.6.3" -> "5.6"
#
# 1 - the input path ending with paraview-x.y, or paraview --version information
#
# On success, return 0 and echo value
#
get_pvapi()
{
    local pv_api

    # Extract paraview major+minor version from the directory name
    # From /path/paraview-5.6 -> 5.6
    pv_api=$(echo "${1:-none}" | \
        sed -ne 's@^.*/@@;s@^[^0-9]*\([0-9][0-9]*\.[0-9][0-9]*\).*$@\1@p')

    if [ -z "$pv_api" ]
    then
        # Extract paraview major+minor version from "paraview --version" information
        pv_api=$(echo "${1:-none}" | \
            sed -ne 's@^.*version *\([0-9][0-9]*\.[0-9][0-9]*\).*$@\1@p')
    fi

    [ -n "$pv_api" ] || return 1

    # OK
    echo "$pv_api"
}


# Extract ParaView plugin api number from PV_PLUGIN_PATH
# On success, return 0 and export variables
# -> FOAM_PV_PLUGIN_LIBBIN, PARAVIEW_API
#
get_pvplugin_api()
{
    # OK
    unset FOAM_PV_PLUGIN_LIBBIN  PARAVIEW_API
    local pv_api targetDir

    # The OpenFOAM plugin must be the first in PV_PLUGIN_PATH
    # and must have the paraview major+minor version encoded in its name!
    # Eg, PV_PLUGIN_PATH="$FOAM_LIBBIN/paraview-5.5"

    # Get the first entry from PV_PLUGIN_PATH=dir1;dir2;...
    targetDir="${PV_PLUGIN_PATH##;}"
    targetDir="${targetDir%%;*}"

    # Extract paraview major+minor version from directory name
    # From /path/paraview-5.6 -> 5.6
    pv_api=$(get_pvapi "$targetDir")

    [ -n "$pv_api" ] || return 1

    # OK
    export FOAM_PV_PLUGIN_LIBBIN="$targetDir"
    export PARAVIEW_API="$pv_api"

    return 0 # success
}


# Test if a ParaView plugin can be built.
# On success, return 0 and export variables
# -> HAVE_PVPLUGIN_SUPPORT, FOAM_PV_PLUGIN_LIBBIN,
#    PARAVIEW_API, PARAVIEW_INC_DIR
#
# There are several prerequisites for building plugins
#
have_pvplugin_support()
{
    local warn="==> skip paraview-plugin"
    local settings pv_api pv_executable installDir binDir includeDir targetDir

    # Trivial check
    command -v cmake >/dev/null || {
        echo "$warn (no cmake)"
        return 1
    }

    if get_pvplugin_api
    then
        targetDir="$FOAM_PV_PLUGIN_LIBBIN"
        pv_api="$PARAVIEW_API"
    fi
    unset FOAM_PV_PLUGIN_LIBBIN PARAVIEW_API

    # Probably not needed...
    # if [ -z "$targetDir" ] || [ -z "$pv_api" ]
    # then
    #     echo "$warn (could not determine target or major.minor version)"
    #     echo "    PV_PLUGIN_PATH=${PV_PLUGIN_PATH:-???}"
    #     return 1
    # fi

    # Include/library names
    local header="pqServerManagerModel.h"

    if [ -n "$ParaView_DIR" ]
    then
        # ParaView_DIR defined. Look for include/

        # Unless already known, get API value from include directory name
        if [ -z "$pv_api" ]
        then
            for settings in $(find "$ParaView_DIR"/include -maxdepth 1 -name 'paraview-*' -type d)
            do
                pv_api=$(get_pvapi "$settings") && break
            done

            if [ -z "$pv_api" ]
            then
                echo "$warn (could not determine paraview major.minor version)"
                return 1
            fi
        fi

        header=$(findFirstFile \
            "$ParaView_DIR/include/paraview-$pv_api/$header" \
            "$ParaView_DIR/include/paraview/$header"
        )

    else
        # No ParaView_DIR defined
        # - use location of 'paraview' to guess an equivalent ParaView_DIR
        # - assume paraview-config works, but might be removed too!

        pv_executable="$(command -v paraview 2>/dev/null)" || {
            echo "$warn (no paraview found?)"
            return 2
        }
        binDir="${pv_executable%/*}"  # Eg, /usr/bin/paraview -> /usr/bin
        installDir="${binDir%/*}"     # Eg, /usr/bin -> /usr

        case "$installDir" in
        (/*)    # An absolute path
            includeDir="$installDir/include"  # Eg, /usr -> /usr/include
        ;;
        esac

        # Unless already known, get API value from `paraview --version` information
        if [ -z "$pv_api" ]
        then
            pv_api=$(get_pvapi "$("$pv_executable" --version)")
            if [ -z "$pv_api" ]
            then
                echo "$warn (could not determine paraview major.minor version)"
                return 1
            fi
        fi

        header=$(findFirstFile \
            "$(paraview-config --include 2>/dev/null |sed -ne 's/^ *-I//p')/$header"\
            "${includeDir:+$includeDir/paraview-$pv_api/$header}" \
            "${includeDir:+$includeDir/paraview/$header}" \
            /usr/local/include/"paraview-$pv_api/$header" \
            /usr/local/include/paraview/"$header" \
            /usr/include/"paraview-$pv_api/$header" \
            /usr/include/paraview/"$header" \
            )
    fi

    # ----------------------------------

    # Header
    [ -n "$header" ] || {
        [ -n "$warn" ] && echo "$warn (no header)"
        return 2
    }

    # ----------------------------------

    # OK
    # Use FOAM_LIBBIN/paraview-maj.min as default
    export HAVE_PVPLUGIN_SUPPORT=true
    export FOAM_PV_PLUGIN_LIBBIN="${targetDir:-$FOAM_LIBBIN/paraview-$pv_api}"
    export PARAVIEW_API="$pv_api"
    export PARAVIEW_INC_DIR="${header%/*}"      # Basename

    return 0 # success
}


# Force reset of old variables
no_paraview

# Test/query
case "$1" in
-test)
    have_pvplugin_support
    echo_paraview
    ;;
-query)
    ## query_paraview
    ;;
esac

#------------------------------------------------------------------------------