1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2010 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
import os |
16 |
Import('*') |
17 |
|
18 |
|
19 |
haveGMSH=(os.system("gmsh -version")/256==0) #Do we have gmsh installed? |
20 |
haveMPL=False #Do we have matplotlib? |
21 |
haveGD=False #Does the matplotlib have griddata? |
22 |
|
23 |
mplmagicversion='0.98.5' |
24 |
|
25 |
try: |
26 |
import matplotlib |
27 |
haveMPL=True |
28 |
mplversion=matplotlib.__version__ |
29 |
from matplotlib.mlab import griddata |
30 |
haveGD=True |
31 |
except ImportError: |
32 |
pass |
33 |
|
34 |
if not haveMPL: |
35 |
print "matplotlib not found skipping some tests" |
36 |
else: |
37 |
if mplversion<mplmagicversion: |
38 |
print "matplotlib found but version too early. Some tests skipped." |
39 |
|
40 |
if not haveGMSH: |
41 |
print "gmsh not found" |
42 |
|
43 |
example_files_allow_mpi = [ ] |
44 |
example_files_no_mpi = [ ] |
45 |
example_deps = [ ] |
46 |
|
47 |
def sortOutExample(name, needsGMSH=False, needsMPL=False, needsMagicMPL=False, needsGD=False, allowsMPI=True): |
48 |
if needsMagicMPL: needsMPL=True |
49 |
if needsGD: needsMPL=True |
50 |
if needsGMSH: allowsMPI=False |
51 |
|
52 |
if (not needsGMSH or haveGMSH) and (not needsMPL or haveMPL) and (not needsMagicMPL or mplversion>=mplmagicversion) and (not needsGD or haveGD): |
53 |
if allowsMPI: |
54 |
example_files_allow_mpi.append(name) |
55 |
else: |
56 |
example_files_no_mpi.append(name) |
57 |
else: |
58 |
example_deps.append(name) |
59 |
# |
60 |
# these are the release examples in example sub directory: |
61 |
# |
62 |
#_deps is for files which end in .py and are required for |
63 |
# testing but should not be invoked directly themselves |
64 |
|
65 |
sortOutExample( 'usersguide/lit_driven_cavity.py') |
66 |
sortOutExample( 'usersguide/mount.py') |
67 |
sortOutExample( 'usersguide/heatedblock.py') |
68 |
sortOutExample( 'usersguide/helmholtz.py') |
69 |
sortOutExample( 'usersguide/fluid.py') |
70 |
sortOutExample( 'usersguide/poisson.py') |
71 |
sortOutExample( 'usersguide/diffusion.py') |
72 |
sortOutExample( 'usersguide/poisson_vtk.py') |
73 |
sortOutExample( 'usersguide/slip.py') |
74 |
sortOutExample( 'usersguide/int_save.py') |
75 |
sortOutExample( 'usersguide/wave.py', needsMPL=True) |
76 |
sortOutExample( 'usersguide/trapezoid.py', needsGMSH=True) |
77 |
sortOutExample( 'usersguide/quad.py', needsGMSH=True) |
78 |
sortOutExample( 'usersguide/brick.py', needsGMSH=True) |
79 |
sortOutExample( 'usersguide/refine.py', needsGMSH=True) |
80 |
sortOutExample( 'usersguide/poisson_matplotlib.py', needsGD=True, allowsMPI=False) |
81 |
|
82 |
sortOutExample( 'geotutorial/steadystate_variablek.py') |
83 |
sortOutExample( 'geotutorial/steadystate.py') |
84 |
sortOutExample( 'geotutorial/forward_euler.py') |
85 |
sortOutExample( 'geotutorial/myfirstscript.py') |
86 |
sortOutExample( 'geotutorial/backward_euler.py') |
87 |
|
88 |
example_deps.append('cookbook/cblib.py') |
89 |
sortOutExample('cookbook/example01a.py') |
90 |
sortOutExample('cookbook/example01b.py', needsMPL=True) |
91 |
sortOutExample('cookbook/example01c.py', needsMPL=True, allowsMPI=False) |
92 |
sortOutExample('cookbook/example02.py', needsMPL=True, allowsMPI=False) |
93 |
sortOutExample('cookbook/example03a.py', needsGD=True, allowsMPI=False) |
94 |
sortOutExample('cookbook/example03b.py') |
95 |
sortOutExample('cookbook/example04a.py', needsGMSH=True) |
96 |
sortOutExample('cookbook/example04b.py', needsGMSH=True, needsGD=True) |
97 |
|
98 |
print example_deps |
99 |
print example_files_allow_mpi |
100 |
print example_files_no_mpi |
101 |
|
102 |
# sortOutExample('cookbook/wavesolver2d001.py', allowsMPI=True) |
103 |
# sortOutExample('cookbook/wavesolver2d002.py', allowsMPI=True) |
104 |
|
105 |
|
106 |
# if mplversion>=mplmagicversion: |
107 |
#sortOutExample('cookbook/run_heatrefraction.py', needsMagicMPL=True) |
108 |
# example_files_no_mpi.append('cookbook/twodheatdiff001.py') |
109 |
|
110 |
# we want to make sure these are still added to the examples bundle even if we can't run them |
111 |
#if not haveGMSH: |
112 |
# example_deps.append('cookbook/twodheatdiff001.py') |
113 |
#if not haveGD: |
114 |
# example_deps.append('cookbook/twodheatdiff001.py') |
115 |
|
116 |
|
117 |
example_files= example_files_allow_mpi + example_files_no_mpi + example_deps |
118 |
|
119 |
|
120 |
ex2=[ os.path.join("examples",str(x)) for x in example_files] |
121 |
|
122 |
#========================================================================================== |
123 |
|
124 |
local_env = clone_env(env) |
125 |
src_dir = local_env.Dir('.').srcnode().abspath |
126 |
release_dir=local_env.Dir('#/release/doc/').srcnode().abspath |
127 |
|
128 |
dir_cmd = "cd "+src_dir+" && " |
129 |
|
130 |
tmp1 = local_env.Command("#/release/doc/escript_examples.zip", None, |
131 |
dir_cmd+"zip "+os.path.join(release_dir,"escript_examples.zip ") +" ".join(ex2), |
132 |
#chdir=src_dir |
133 |
) |
134 |
env.Alias('examples_zipfile', tmp1) |
135 |
|
136 |
|
137 |
#Need to use explicit tar rather than the tar builder due to problems getting it not to put |
138 |
#unwanted path components in the tar file |
139 |
#--transform on tar is not supported on savanna |
140 |
tmp2 = local_env.Command("#/release/doc/escript_examples.tar.gz", None, dir_cmd+"tar -czf "+os.path.join(release_dir,"escript_examples.tar.gz ")+" ".join(ex2), |
141 |
# chdir=src_dir |
142 |
) |
143 |
env.Alias('examples_tarfile',tmp2) |
144 |
|
145 |
#env=Environment(TARFLAGS = "-c -z",chdir=src_dir) |
146 |
#if 'Tar' in dir(env): env.Tar('#/release/doc/escript_examples.tar.gz', example_files,chdir=src_dir) |
147 |
#env.Alias('examples_tarfile', '#release/doc/escript_examples.tar.gz') |
148 |
|
149 |
local_env.SConscript(dirs = ['#/doc/cookbook'], build_dir='#/build/$PLATFORM/doc/cookbook', duplicate=1) |
150 |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
151 |
local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1) |
152 |
local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1) |
153 |
local_env.SConscript(dirs = ['#/doc/install'], build_dir='#/build/$PLATFORM/doc/install', duplicate=1) |
154 |
local_env.SConscript(dirs = ['#/doc/examples'], build_dir='#/build/$PLATFORM/doc/examples', duplicate=1, exports=[ 'example_files_allow_mpi' , 'example_files_no_mpi', 'example_deps' ]) |
155 |
|
156 |
|