summaryrefslogtreecommitdiff
path: root/dist.sh
blob: 5200d66920123f51334659811f57fea3ec823833 (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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
#! /usr/bin/env bash

# Create ODB source distributions.
#
# -rebuild
# -complete  package/build libcutl and the ODB compiler; implies -rebuild
# -test  build and run tests and examples
# -db <database>  only configure, test, build for <database> [default is all]
# -odb <odb-compiler-path>
# -cc <c-compiler>
# -cxx <c++-compiler>
# -cxxflags <c++-compiler-flags>
# -ccp <gcc-plugin-compiler>
# -cxxp <g++-plugin-compiler>
# -cxxpflags <g++-plugin-compiler-flags>
# -<db>-options <options>
# -<db>-test-options <options>
# -j <jobs> [default is 8]
#
trap 'exit 1' ERR

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

# Find output directory for a project. It is either $1-default or if
# that doesn't exist, it is $1.
#
function find_out_dir ()
{
  # Get the actual directory in case -default is a symlink.
  #
  tmp=`realpath $1-default 2>/dev/null`

  if [ -n "$tmp" -a -d "$tmp" ]; then
    echo "$tmp"
  else
    echo "$1"
  fi
}

wd=`pwd`
out_root=/tmp
src_root=$HOME/work/odb
ver=`sed -e 's/^\([^.]*\)\.\([^.]*\)\..*$/\1.\2/' $src_root/odb/version`

test=n
rebuild=n
complete=n
db=
odb=$src_root/odb/odb/odb
cc=gcc
cxx=g++
ccp=gcc
cxxp=g++
cxxflags="-W -Wall -Wno-unknown-pragmas -O3"
cxxpflags="-W -Wall -O3"
jobs=8

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
      ;;
    -complete)
      rebuild=y
      complete=y
      shift
      ;;
    -test)
      test=y
      shift
      ;;
    -db)
      shift
      db="$db $1"
      shift
      ;;
    -odb)
      shift
      odb=$1
      shift
      ;;
    -cc)
      shift
      cc=$1
      shift
      ;;
    -cxx)
      shift
      cxx=$1
      shift
      ;;
    -cxxflags)
      shift
      cxxflags=$1
      shift
      ;;
    -ccp)
      shift
      ccp=$1
      shift
      ;;
    -cxxp)
      shift
      cxxp=$1
      shift
      ;;
    -cxxpflags)
      shift
      cxxpflags=$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
      ;;
    -j)
      shift
      jobs=$1
      shift
      ;;
    *)
      error "unknown option: $1"
      exit 1
      ;;
  esac
done

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

# Clean everything up if we are rebuilding.
#
if [ $rebuild = y ]; then
  rm -rf $out_root/libodb/*
  rm -rf $out_root/libodb-mssql/*
  rm -rf $out_root/libodb-oracle/*
  rm -rf $out_root/libodb-pgsql/*
  rm -rf $out_root/libodb-sqlite/*
  rm -rf $out_root/libodb-mysql/*
  rm -rf $out_root/libodb-boost/*
  rm -rf $out_root/libodb-qt/*
  rm -rf $out_root/odb-tests/* $out_root/odb-tests-*
  rm -rf $out_root/odb-examples/* $out_root/odb-examples-*

  if [ $complete = y ]; then
    rm -rf $out_root/libcutl/*
    rm -rf $out_root/odb/*
  fi

  rm -rf $out_root/pack
fi

mkdir -p $out_root/libodb
mkdir -p $out_root/libodb-mssql
mkdir -p $out_root/libodb-oracle
mkdir -p $out_root/libodb-pgsql
mkdir -p $out_root/libodb-sqlite
mkdir -p $out_root/libodb-mysql
mkdir -p $out_root/libodb-boost
mkdir -p $out_root/libodb-qt
mkdir -p $out_root/odb-tests
mkdir -p $out_root/odb-examples

if [ $complete = y ]; then
  mkdir -p $out_root/libcutl
  mkdir -p $out_root/odb
fi

mkdir -p $out_root/pack

# Build libcutl
#
if [ $complete = y ]; then
  cd $src_root/../cutl
  ./dist.sh -cc "$ccp" -cxx "$cxxp" -cxxflags "$cxxpflags" \
-out "$out_root/libcutl" -no-check -j $jobs
  cd $wd
fi

# Build ODB compiler
#
if [ $complete = y ]; then
  make -C `find_out_dir $src_root/odb` -f $src_root/odb/makefile \
dist dist_prefix=$out_root/odb

  cd $out_root/odb

  ./bootstrap
  ./configure --with-libcutl=../libcutl CC="$ccp" CXX="$cxxp" \
CXXFLAGS="$cxxpflags"

  make -j $jobs
  make dist

  cd $wd

  cp $out_root/odb/odb-$ver.*.zip $out_root/pack/
  cp $out_root/odb/odb-$ver.*.tar.gz $out_root/pack/
  cp $out_root/odb/odb-$ver.*.tar.bz2 $out_root/pack/

  odb=$out_root/odb/odb/odb
fi

# Build libodb
#
make -C `find_out_dir $src_root/libodb` -f $src_root/libodb/makefile \
dist dist_prefix=$out_root/libodb

cd $out_root/libodb

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure CC="$cc" CXX="$cxx" CXXFLAGS="$cxxflags"
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb/libodb-$ver.*.zip $out_root/pack/
cp $out_root/libodb/libodb-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb/libodb-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-mssql
#
make -C `find_out_dir $src_root/libodb-mssql` \
-f $src_root/libodb-mssql/makefile dist dist_prefix=$out_root/libodb-mssql

cd $out_root/libodb-mssql

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb \
              CC="$cc" CXX="$cxx" \
              CXXFLAGS="$cxxflags" \
              $mssql_options
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-mssql/libodb-mssql-$ver.*.zip $out_root/pack/
cp $out_root/libodb-mssql/libodb-mssql-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-mssql/libodb-mssql-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-oracle
#
make -C `find_out_dir $src_root/libodb-oracle` \
-f $src_root/libodb-oracle/makefile dist dist_prefix=$out_root/libodb-oracle

cd $out_root/libodb-oracle

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb \
              CC="$cc" CXX="$cxx" \
              CXXFLAGS="$cxxflags" \
              $oracle_options
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-oracle/libodb-oracle-$ver.*.zip $out_root/pack/
cp $out_root/libodb-oracle/libodb-oracle-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-oracle/libodb-oracle-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-pgsql
#
make -C `find_out_dir $src_root/libodb-pgsql` \
-f $src_root/libodb-pgsql/makefile dist dist_prefix=$out_root/libodb-pgsql

cd $out_root/libodb-pgsql

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb \
              CC="$cc" CXX="$cxx" \
              CXXFLAGS="$cxxflags" \
              $pgsql_options
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-pgsql/libodb-pgsql-$ver.*.zip $out_root/pack/
cp $out_root/libodb-pgsql/libodb-pgsql-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-pgsql/libodb-pgsql-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-sqlite
#
make -C `find_out_dir $src_root/libodb-sqlite` \
  -f $src_root/libodb-sqlite/makefile dist dist_prefix=$out_root/libodb-sqlite

cd $out_root/libodb-sqlite

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb \
              CC="$cc" CXX="$cxx" \
              CXXFLAGS="$cxxflags" \
              $sqlite_options
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-sqlite/libodb-sqlite-$ver.*.zip $out_root/pack/
cp $out_root/libodb-sqlite/libodb-sqlite-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-sqlite/libodb-sqlite-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-mysql
#
make -C `find_out_dir $src_root/libodb-mysql` \
-f $src_root/libodb-mysql/makefile dist dist_prefix=$out_root/libodb-mysql

cd $out_root/libodb-mysql

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb \
              CC="$cc" CXX="$cxx" \
              CXXFLAGS="$cxxflags" \
              $mysql_options
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-mysql/libodb-mysql-$ver.*.zip $out_root/pack/
cp $out_root/libodb-mysql/libodb-mysql-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-mysql/libodb-mysql-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-boost
#
make -C `find_out_dir $src_root/libodb-boost` \
-f $src_root/libodb-boost/makefile dist dist_prefix=$out_root/libodb-boost

cd $out_root/libodb-boost

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb CC="$cc" CXX="$cxx" CXXFLAGS="$cxxflags"
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-boost/libodb-boost-$ver.*.zip $out_root/pack/
cp $out_root/libodb-boost/libodb-boost-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-boost/libodb-boost-$ver.*.tar.bz2 $out_root/pack/

# Build libodb-qt
#
make -C `find_out_dir $src_root/libodb-qt` \
-f $src_root/libodb-qt/makefile dist dist_prefix=$out_root/libodb-qt

cd $out_root/libodb-qt

if [ $rebuild = y -o ! -f Makefile ]; then
  ./bootstrap
  ./configure --with-libodb=../libodb CC="$cc" CXX="$cxx" CXXFLAGS="$cxxflags"
fi

make -j $jobs
make dist

cd $wd

cp $out_root/libodb-qt/libodb-qt-$ver.*.zip $out_root/pack/
cp $out_root/libodb-qt/libodb-qt-$ver.*.tar.gz $out_root/pack/
cp $out_root/libodb-qt/libodb-qt-$ver.*.tar.bz2 $out_root/pack/

# Build odb-tests
#
make -C `find_out_dir $src_root/tests-mysql` -f $src_root/tests/makefile dist \
dist_prefix=$out_root/odb-tests

cd $out_root/odb-tests

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

cd $wd

dist_tests=

for d in $db; do
  mkdir -p $out_root/odb-tests-$d
  cd $out_root/odb-tests-$d

  optvar=${d}_test_options

  if [ $rebuild = y -o ! -f Makefile ]; then
    ../odb-tests/configure \
--with-database=$d \
--with-libodb=../libodb \
--with-libodb-$d=../libodb-$d \
--with-libodb-boost=../libodb-boost \
--with-libodb-qt=../libodb-qt \
${!optvar} \
CC="$cc" CXX="$cxx" \
CXXFLAGS="$cxxflags" \
ODB=$odb
  fi

  if [ $test = y ]; then
    make -j $jobs
    make check
  fi

  if [ "$dist_tests" = "" ]; then
    dist_tests=$d
    make dist
  fi

  cd $wd
done

cp $out_root/odb-tests-$dist_tests/odb-tests-$ver.*.zip $out_root/pack/
cp $out_root/odb-tests-$dist_tests/odb-tests-$ver.*.tar.gz $out_root/pack/
cp $out_root/odb-tests-$dist_tests/odb-tests-$ver.*.tar.bz2 $out_root/pack/


# Build odb-examples
#
make -C `find_out_dir $src_root/examples-mysql` \
-f $src_root/examples/makefile dist dist_prefix=$out_root/odb-examples

cd $out_root/odb-examples

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

cd $wd

dist_examples=

for d in $db; do
  mkdir -p $out_root/odb-examples-$d
  cd $out_root/odb-examples-$d

  optvar=${d}_test_options

  if [ $rebuild = y -o ! -f Makefile ]; then
    ../odb-examples/configure \
--with-database=$d \
--with-libodb=../libodb \
--with-libodb-$d=../libodb-$d \
--with-libodb-boost=../libodb-boost \
--with-libodb-qt=../libodb-qt \
${!optvar} \
CC="$cc" CXX="$cxx" \
CXXFLAGS="$cxxflags" \
ODB=$odb
  fi

  if [ $test = y ]; then
    make -j $jobs
    make check
  fi

  if [ "$dist_examples" = "" ]; then
    dist_examples=$d
    make dist
  fi

  cd $wd
done

cp $out_root/odb-examples-$dist_examples/odb-examples-$ver.*.zip $out_root/pack/
cp $out_root/odb-examples-$dist_examples/odb-examples-$ver.*.tar.gz $out_root/pack/
cp $out_root/odb-examples-$dist_examples/odb-examples-$ver.*.tar.bz2 $out_root/pack/