makeclient.sh 6.4 KB
Newer Older
L
lihui 已提交
1 2
#!/bin/bash
#
L
lihui 已提交
3
# Generate tar.gz package for linux client in all os system
L
lihui 已提交
4
set -e
L
lihui 已提交
5
#set -x
L
lihui 已提交
6 7 8 9 10

curr_dir=$(pwd)
compile_dir=$1
version=$2
build_time=$3
L
lihui 已提交
11 12 13 14
cpuType=$4
osType=$5
verMode=$6
verType=$7
L
lihui 已提交
15
pagMode=$8
L
lihui 已提交
16

Z
change  
zyyang 已提交
17 18 19 20 21
clientName="taos"
configFile="taos.cfg"
tarName="taos.tar.gz"
productName="TDengine"

S
slguan 已提交
22 23 24 25 26 27 28 29 30
if [ "$osType" != "Darwin" ]; then
    script_dir="$(dirname $(readlink -f $0))"
    top_dir="$(readlink -f ${script_dir}/../..)"
else
    script_dir=`dirname $0`
    cd ${script_dir}
    script_dir="$(pwd)"
    top_dir=${script_dir}/../..
fi
L
lihui 已提交
31 32 33 34 35 36

# create compressed install file.
build_dir="${compile_dir}/build"
code_dir="${top_dir}/src"
release_dir="${top_dir}/release"

L
lihui 已提交
37
#package_name='linux'
S
slguan 已提交
38 39

if [ "$verMode" == "cluster" ]; then
Z
change  
zyyang 已提交
40
    install_dir="${release_dir}/${productName}-enterprise-client-${version}"
S
slguan 已提交
41
else
Z
change  
zyyang 已提交
42
    install_dir="${release_dir}/${productName}-client-${version}"
S
slguan 已提交
43
fi
L
lihui 已提交
44 45

# Directories and files.
S
slguan 已提交
46 47

if [ "$osType" != "Darwin" ]; then
L
lihui 已提交
48
  if [ "$pagMode" == "lite" ]; then
Z
change  
zyyang 已提交
49 50
    strip ${build_dir}/bin/${clientName}
    bin_files="${build_dir}/bin/${clientName} \
51
        ${script_dir}/remove_client.sh"
52
  else
Z
change  
zyyang 已提交
53
    bin_files="${build_dir}/bin/${clientName} \
54
        ${script_dir}/remove_client.sh \
55
        ${script_dir}/set_core.sh \
56
        ${script_dir}/get_client.sh"
L
lihui 已提交
57 58
  fi
  lib_files="${build_dir}/lib/libtaos.so.${version}"
S
slguan 已提交
59
else
Z
change  
zyyang 已提交
60
  bin_files="${build_dir}/bin/${clientName} ${script_dir}/remove_client.sh"
L
lihui 已提交
61
  lib_files="${build_dir}/lib/libtaos.${version}.dylib"
S
slguan 已提交
62 63
fi

64
header_files="${code_dir}/inc/taos.h ${code_dir}/inc/taosdef.h ${code_dir}/inc/taoserror.h"
65 66 67 68 69
if [ "$verMode" == "cluster" ]; then
  cfg_dir="${top_dir}/../enterprise/packaging/cfg"
else
  cfg_dir="${top_dir}/packaging/cfg"
fi
S
slguan 已提交
70

L
lihui 已提交
71 72 73 74 75
install_files="${script_dir}/install_client.sh"

# make directories.
mkdir -p ${install_dir}
mkdir -p ${install_dir}/inc && cp ${header_files} ${install_dir}/inc
Z
change  
zyyang 已提交
76
mkdir -p ${install_dir}/cfg && cp ${cfg_dir}/${configFile} ${install_dir}/cfg/${configFile}
L
lihui 已提交
77 78
mkdir -p ${install_dir}/bin && cp ${bin_files} ${install_dir}/bin && chmod a+x ${install_dir}/bin/*

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
if [ -f ${build_dir}/bin/jemalloc-config ]; then
    mkdir -p ${install_dir}/jemalloc/{bin,lib,lib/pkgconfig,include/jemalloc,share/doc/jemalloc,share/man/man3}
    cp ${build_dir}/bin/jemalloc-config ${install_dir}/jemalloc/bin
    if [ -f ${build_dir}/bin/jemalloc.sh ]; then
        cp ${build_dir}/bin/jemalloc.sh ${install_dir}/jemalloc/bin
    fi
    if [ -f ${build_dir}/bin/jeprof ]; then
        cp ${build_dir}/bin/jeprof ${install_dir}/jemalloc/bin
    fi
    if [ -f ${build_dir}/include/jemalloc/jemalloc.h ]; then
        cp ${build_dir}/include/jemalloc/jemalloc.h ${install_dir}/jemalloc/include/jemalloc
    fi
    if [ -f ${build_dir}/lib/libjemalloc.so.2 ]; then
        cp ${build_dir}/lib/libjemalloc.so.2 ${install_dir}/jemalloc/lib
        ln -sf libjemalloc.so.2 ${install_dir}/jemalloc/lib/libjemalloc.so
    fi
    if [ -f ${build_dir}/lib/libjemalloc.a ]; then
        cp ${build_dir}/lib/libjemalloc.a ${install_dir}/jemalloc/lib
    fi
    if [ -f ${build_dir}/lib/libjemalloc_pic.a ]; then
        cp ${build_dir}/lib/libjemalloc_pic.a ${install_dir}/jemalloc/lib
    fi
    if [ -f ${build_dir}/lib/pkgconfig/jemalloc.pc ]; then
        cp ${build_dir}/lib/pkgconfig/jemalloc.pc ${install_dir}/jemalloc/lib/pkgconfig
    fi
    if [ -f ${build_dir}/share/doc/jemalloc/jemalloc.html ]; then
        cp ${build_dir}/share/doc/jemalloc/jemalloc.html ${install_dir}/jemalloc/share/doc/jemalloc
    fi
    if [ -f ${build_dir}/share/man/man3/jemalloc.3 ]; then
        cp ${build_dir}/share/man/man3/jemalloc.3 ${install_dir}/jemalloc/share/man/man3
    fi
fi

L
lihui 已提交
112
cd ${install_dir}
S
slguan 已提交
113 114

if [ "$osType" != "Darwin" ]; then
Z
change  
zyyang 已提交
115
    tar -zcv -f ${tarName} * --remove-files || :
S
slguan 已提交
116
else
Z
change  
zyyang 已提交
117 118
    tar -zcv -f ${tarName} * || :
    mv ${tarName} ..
S
slguan 已提交
119
    rm -rf ./*
Z
change  
zyyang 已提交
120
    mv ../${tarName} .
S
slguan 已提交
121
fi
L
lihui 已提交
122 123

cd ${curr_dir}
S
slguan 已提交
124 125 126 127 128
cp ${install_files} ${install_dir}
if [ "$osType" == "Darwin" ]; then
    sed 's/osType=Linux/osType=Darwin/g' ${install_dir}/install_client.sh >> install_client_temp.sh
    mv install_client_temp.sh ${install_dir}/install_client.sh
fi
L
lihui 已提交
129 130 131 132
if [ "$pagMode" == "lite" ]; then
    sed 's/pagMode=full/pagMode=lite/g' ${install_dir}/install_client.sh >> install_client_temp.sh
    mv install_client_temp.sh ${install_dir}/install_client.sh
fi
S
slguan 已提交
133
chmod a+x ${install_dir}/install_client.sh
L
lihui 已提交
134 135 136

# Copy example code
mkdir -p ${install_dir}/examples
L
lihui 已提交
137 138
examples_dir="${top_dir}/tests/examples"
cp -r ${examples_dir}/c      ${install_dir}/examples
L
lihui 已提交
139 140 141 142 143 144
if [[ "$pagMode" != "lite" ]] && [[ "$cpuType" != "aarch32" ]]; then
  cp -r ${examples_dir}/JDBC   ${install_dir}/examples
  cp -r ${examples_dir}/matlab ${install_dir}/examples
  cp -r ${examples_dir}/python ${install_dir}/examples
  cp -r ${examples_dir}/R      ${install_dir}/examples
  cp -r ${examples_dir}/go     ${install_dir}/examples
H
Hui Li 已提交
145 146
  cp -r ${examples_dir}/nodejs ${install_dir}/examples
  cp -r ${examples_dir}/C#     ${install_dir}/examples
L
lihui 已提交
147
fi
L
lihui 已提交
148
# Copy driver
149
mkdir -p ${install_dir}/driver
L
lihui 已提交
150 151 152
cp ${lib_files} ${install_dir}/driver

# Copy connector
L
lihui 已提交
153
connector_dir="${code_dir}/connector"
L
lihui 已提交
154
mkdir -p ${install_dir}/connector
S
slguan 已提交
155

L
lihui 已提交
156 157
if [[ "$pagMode" != "lite" ]] && [[ "$cpuType" != "aarch32" ]]; then
  if [ "$osType" != "Darwin" ]; then
P
plum-lihui 已提交
158
    cp ${build_dir}/lib/*.jar      ${install_dir}/connector ||:
L
lihui 已提交
159
  fi
160 161 162 163 164 165
  if find ${connector_dir}/go -mindepth 1 -maxdepth 1 | read; then
    cp -r ${connector_dir}/go ${install_dir}/connector
  else
    echo "WARNING: go connector not found, please check if want to use it!"
  fi
  cp -r ${connector_dir}/python             ${install_dir}/connector
166
  cp -r ${connector_dir}/nodejs             ${install_dir}/connector
S
slguan 已提交
167
fi
L
lihui 已提交
168 169 170
# Copy release note
# cp ${script_dir}/release_note ${install_dir}

171
cd ${release_dir}
L
lihui 已提交
172

173 174 175
#  install_dir has been distinguishes  cluster from  edege, so comments this code
pkg_name=${install_dir}-${osType}-${cpuType}

haoranc's avatar
haoranc 已提交
176
if [[ "$verType" == "beta" ]] || [[ "$verType" == "preRelease" ]]; then
177
  pkg_name=${install_dir}-${verType}-${osType}-${cpuType}
178 179
elif [ "$verType" == "stable" ]; then
  pkg_name=${pkg_name}
L
lihui 已提交
180
else
181
  echo "unknow verType, nor stabel or beta"
L
lihui 已提交
182 183 184
  exit 1
fi

L
lihui 已提交
185 186 187 188
if [ "$pagMode" == "lite" ]; then
  pkg_name=${pkg_name}-Lite
fi

S
slguan 已提交
189 190 191 192 193 194 195 196
if [ "$osType" != "Darwin" ]; then
    tar -zcv -f "$(basename ${pkg_name}).tar.gz" $(basename ${install_dir}) --remove-files || :
else
    tar -zcv -f "$(basename ${pkg_name}).tar.gz" $(basename ${install_dir}) || :
    mv "$(basename ${pkg_name}).tar.gz" ..
    rm -rf ./*
    mv ../"$(basename ${pkg_name}).tar.gz" .
fi
L
lihui 已提交
197

L
lihui 已提交
198
cd ${curr_dir}