summaryrefslogtreecommitdiffstats
path: root/tools/sysrepo_config
blob: ba15afe5a8ad1c9c24f8a82709a08eae58ddbbfe (plain)
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
#!/bin/sh

# Copyright (C) 2018-2019 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

# This is keactrl script responsible for starting up Kea processes.
# This script is used to run Kea from installation directory,
# as well as for running tests.

if [ "$(uname -s)" = "Darwin" ]; then
    DIR=$(stat -f %N "$0" | xargs dirname)
else
    DIR=$(readlink -f "$0" | xargs dirname)
fi

if ! [ -f "${DIR}/sysrepo_config_defines.sh" ] || ! [ -x "${DIR}/sysrepo_config_defines.sh" ]; then
    echo "missing path configuration file for Sysrepo (sysrepo_config_defines.sh)"
    exit 0
fi

# Shellcheck tries to follow this link and gets confused about not being able
# to find the file.
# shellcheck disable=SC1090
. "${DIR}/sysrepo_config_defines.sh"

if [ $# -ne 1 ] && [ $# -ne 2 ]; then
    echo "run: \`$0 --help\` for more help"
    exit 0
fi

if [ "$1" = "--help" ]; then
    echo "sysrepo_config 'option' ['library']"
    echo "options:"
    echo "--help"
    echo "    print this help message"
    echo "--cflags-only-other"
    echo "    get cpp compilation flags"
    echo "--cflags-only-I"
    echo "    get include path"
    echo "--libs"
    echo "    get lib path"
    echo "--modversion"
    echo "    get version"
    echo "--variable=SR_REPOSITORY_LOC"
    echo "    get repo path"
    echo "libraries:"
    echo "    libsysrepo"
    echo "    libSysrepo-cpp"
    exit 0
fi

if [ $# -ne 2 ]; then
    echo "Incorrect number of parameters specified"
    echo "run: \`$0 --help\` for more help"
    exit 0
elif [ "$2" != "libsysrepo" ] && [ "$2" != "libSysrepo-cpp" ]; then
    echo "library $2 not supported"
    echo "run: \`$0 --help\` for more help"
    exit 0
fi

if [ "$1" = "--cflags-only-other" ]; then
    exit 0
fi

if [ "$1" = "--cflags-only-I" ]; then
    echo "-I${SYSREPO_PATH}/include/"
    exit 0
fi

if [ "$1" = "--libs" ]; then
    # Earlier versions also required -lprotobuf, but it is no longer needed.
    echo "-L${LIBYANG_PATH}/lib/ -L${SYSREPO_PATH}/lib/ -lsysrepo -lSysrepo-cpp -lyang -pthread -lpcre -lev -lavl -lprotobuf-c"
    exit 0
fi

if [ "$1" = "--modversion" ]; then
    VERSION=$(sysrepoctl -v | tr -s " " | cut -d " " -f 7)
    echo "${VERSION}"
    exit 0
fi

if [ "$1" = "--variable=SR_REPOSITORY_LOC" ]; then
    echo "${SYSREPO_PATH}/build/repository"
    exit 0
fi

echo "wrong parameter"
echo "run: \`$0 --help\` for more help"

exit 1