summaryrefslogtreecommitdiff
path: root/test/unix/build
blob: 3dff55581ec8d5f212da156783112b02344d25fd (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
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
312
313
314
315
316
317
318
319
#! /usr/bin/env bash

# Build and install ODB on a UNIX environment using all the default
# settings. Things are installed into /usr/local as they are being
# built.
#
# -rebuild
# -test
# -uninstall
# -db <database>
# -j <jobs>
# -cxx <c++-compiler>
# -cxxp <g++-plugin-compiler>
# -<db>-options <options>
# -<db>-test-options <options>
#
trap 'exit 1' ERR

function error ()
{
  echo "$*" 1>&2
}

# $1 path
# $2 version
#
function unpack ()
{
  bzip2 -dc $1-$2.tar.bz2 | tar xf -
  mv `basename $1`-$2 `basename $1`
}

# $1 module
#
function uninstall ()
{
  if [ -f $1/Makefile ]; then
    sudo make -C $1 uninstall
  fi
}

rebuild=n
test=n
uninstall=n
db=
jobs=1
cxx=g++
cxxp=g++

mysql_options=
mysql_test_options=
sqlite_options=
sqlite_test_options=
pgsql_options=
pgsql_test_option=
oracle_options=
oracle_test_options=
mssql_options=
mssql_test_options=

while [ $# -gt 0 ]; do
  case $1 in
    -rebuild)
      rebuild=y
      shift
      ;;
    -test)
      test=y
      shift
      ;;
    -uninstall)
      uninstall=y
      shift
      ;;
    -db)
      shift
      db="$db $1"
      shift
      ;;
    -j)
      shift
      jobs=$1
      shift
      ;;
    -cxx)
      shift
      cxx=$1
      shift
      ;;
    -cxxp)
      shift
      cxxp=$1
      shift
      ;;
    -mysql-options)
      shift
      mysql_options=$1
      shift
      ;;
    -mysql-test-options)
      shift
      mysql_test_options=$1
      shift
      ;;
    -sqlite-options)
      shift
      sqlite_options=$1
      shift
      ;;
    -sqlite-test-options)
      shift
      sqlite_test_options=$1
      shift
      ;;
    -pgsql-options)
      shift
      pgsql_options=$1
      shift
      ;;
    -pgsql-test-options)
      shift
      pgsql_test_options=$1
      shift
      ;;
    -oracle-options)
      shift
      oracle_options=$1
      shift
      ;;
    -oracle-test-options)
      shift
      oracle_test_options=$1
      shift
      ;;
    -mssql-options)
      shift
      mssql_options=$1
      shift
      ;;
    -mssql-test-options)
      shift
      mssql_test_options=$1
      shift
      ;;
    *)
      error "unknown option: $1"
      exit 1
      ;;
  esac
done

if [ "$db" = "" ]; then
  db="oracle pgsql sqlite mysql"

  if [ "`uname`" = "Linux" ]; then
    db="mssql $db"
  fi
fi

src=/tmp/pack

v=`echo $src/libodb-?.*.tar.bz2 | sed -e "s%$src/libodb-\(.*\).tar.bz2%\1%"`
cutl_v=`echo $src/../libcutl-?.*.tar.bz2 | sed -e "s%$src/\.\./libcutl-\(.*\).tar.bz2%\1%"`

install_packs="libodb libodb-mssql libodb-oracle libodb-pgsql libodb-sqlite \
libodb-mysql libodb-boost libodb-qt odb"

packs=$install_packs

if [ $test = y ]; then
  packs="$packs odb-tests odb-examples"
fi

# Uninstall if requested.
#
if [ $uninstall = y ]; then

  uninstall libcutl

  for p in $install_packs; do
    uninstall $p
  done

  exit 0
fi

# Clean everything up and unpack if we are rebuilding.
#
if [ $rebuild = y ]; then

  rm -rf libcutl
  rm -rf $packs
  for d in $db; do
    rm -rf odb-tests-$d
    rm -rf odb-examples-$d
  done

  unpack $src/../libcutl $cutl_v

  for p in $packs; do
    unpack $src/$p $v
  done
fi

# Build libcutl.
#
cd libcutl

if [ $rebuild = y -o ! -f Makefile ]; then
  ./configure CXX=$cxxp
fi

make -j $jobs
sudo make install
sudo ldconfig
cd ..

# Build ODB compiler.
#
cd odb

if [ $rebuild = y -o ! -f Makefile ]; then
  ./configure CXX=$cxxp
fi

make -j $jobs
sudo make install
cd ..

# Build libodb.
#
cd libodb

if [ $rebuild = y -o ! -f Makefile ]; then
  ./configure CXX=$cxx
fi

make -j $jobs
sudo make install
sudo ldconfig
cd ..

# Build libodb-<db>.
#
for d in $db; do
  cd libodb-$d

  if [ $rebuild = y -o ! -f Makefile ]; then
    optvar=${d}_options
    ./configure ${!optvar} CXX=$cxx
  fi

  make -j $jobs
  sudo make install
  sudo ldconfig
  cd ..
done

# Build libodb-boost.
#
cd libodb-boost

if [ $rebuild = y -o ! -f Makefile ]; then
  ./configure CXX=$cxx
fi

make -j $jobs
sudo make install
sudo ldconfig
cd ..

# Build libodb-qt.
#
cd libodb-qt

if [ $rebuild = y -o ! -f Makefile ]; then
  ./configure CXX=$cxx
fi

make -j $jobs
sudo make install
sudo ldconfig
cd ..

if [ $test = n ]; then
  exit 0
fi

# Build odb-tests.
#
for d in $db; do
  mkdir -p odb-tests-$d
  cd odb-tests-$d

  if [ $rebuild = y -o ! -f Makefile ]; then
    optvar=${d}_test_options
    ../odb-tests/configure --with-database=$d ${!optvar} CXX=$cxx DIFFFLAGS=-ubB
  fi

  make -j $jobs
  make check
  cd ..
done

# Build odb-examples.
#
for d in $db; do
  mkdir -p odb-examples-$d
  cd odb-examples-$d

  if [ $rebuild = y -o ! -f Makefile ]; then
    optvar=${d}_test_options
    ../odb-examples/configure ${!optvar} --with-database=$d CXX=$cxx
  fi

  make -j $jobs
  make check
  cd ..
done