forked from openmrs/openmrs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
liquibase.build.xml
264 lines (231 loc) · 11.3 KB
/
liquibase.build.xml
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
<?xml version="1.0"?>
<!--
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/. OpenMRS is also distributed under
the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
graphic logo is a trademark of OpenMRS Inc.
-->
<!-- *********************************************************** -->
<!-- ** Ant build script for OpenMRS for Liquibase tasks ** -->
<!-- ** ** -->
<!-- *********************************************************** -->
<project name="OpenMRS-liquibase-targets">
<!-- Library versions and JARs -->
<property name="lib.dir" location="lib" />
<property file="${lib.dir}/lib.properties" />
<fileset id="lib.files" dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
<path id="lib.path">
<fileset refid="lib.files" />
</path>
<!-- import default properties -->
<property file="build.properties" />
<import file="properties.xml" />
<!-- setup the path and properties for liquibase targets -->
<mkdir dir="build" />
<mkdir dir="dist" />
<path id="classpath">
<fileset dir="${liquibase.dir}">
<include name="*.jar"/>
</fileset>
<fileset dir="${database.dir}">
<include name="*.jar"/>
</fileset>
<path refid="api.compile.classpath"/>
<pathelement location="${build.dir}" />
</path>
<property name="db.changelog.file" value="root.changelog.xml"/>
<property name="database.url" value="jdbc:mysql://localhost:3306"/>
<property name="database.username" value="root"/>
<property name="database.password" value="password"/>
<property name="database.driver" value="com.mysql.jdbc.Driver"/>
<property name="prompt.user.if.not.local.database" value="true"/>
<property name="openmrs.version" value="${openmrs.version.major}.${openmrs.version.minor}.${openmrs.version.maintenance}-${openmrs.version.suffix}"/>
<taskdef resource="liquibasetasks.properties">
<classpath refid="classpath"/>
</taskdef>
<target name="generate-offline-sql-diff-mysql" description="Create the /dist/update-to-latest-mysql-diff.sql file for running on systems that don't use the openmrs webapp">
<antcall target="-run-changelog-with-output">
<param name="changelog" value="${metadata.dir}/model/liquibase-update-to-latest.xml"/>
<param name="dburl" value="${database.url}" />
<param name="outputfile" value="dist/update-to-latest-mysql-diff.sql"/>
</antcall>
<echo message="Created dist/update-to-latest.sql"/>
</target>
<target name="generate-offline-sql-create-mysql" description="Create the /dist/1-x-x-schema-and-core.sql file for running on systems that don't use the openmrs webapp">
<mkdir dir="${build.dir}/liquibase"/>
<unzip src="${metadata.dir}/model/liquibase-demo-data.zip" dest="${build.dir}/liquibase"></unzip>
<property name="dbname" value="openmrs-ant-${openmrs.version}" />
<antcall target="-recreate-db"><param name="db" value="${dbname}"/></antcall>
<antcall target="-run-changelog-with-output">
<param name="changelog" value="${build.dir}/liquibase/liquibase-schema-only.xml"/>
<param name="dburl" value="${database.url}/${dbname}"/>
<param name="outputfile" value="dist/${openmrs.version}-schema-only.sql"/>
</antcall>
<antcall target="-run-changelog-with-output">
<param name="changelog" value="${build.dir}/liquibase/liquibase-core-data.xml"/>
<param name="dburl" value="${database.url}/${dbname}"/>
<param name="outputfile" value="dist/${openmrs.version}-core-data.sql"/>
</antcall>
<concat destfile="dist/${openmrs.version}-schema-and-core.sql">
<fileset dir="dist" includes="${openmrs.version}-schema-only.sql" />
<fileset dir="dist" includes="${openmrs.version}-core-data.sql" />
</concat>
<echo message="Created dist/${openmrs.version}-schema-and-core.sql"/>
</target>
<!-- This target is broken since schema-only and core-data are no longer in the zip file. Rewrite it from scratch. -->
<target name="generate-data.zip-for-release" description="Create a new /metadata/model/liquibase-data.zip file using the latest liquibase-update-to-latest.sql file">
<mkdir dir="${build.dir}/liquibase"/>
<unzip src="${metadata.dir}/model/liquibase-data.zip" dest="${build.dir}/liquibase"></unzip>
<!--
Create the liquibase-schema-only.xml file
-->
<property name="database.empty" value="openmrs-ant-one-${openmrs.version}" />
<property name="database.schema-only" value="openmrs-ant-two-${openmrs.version}" />
<antcall target="-recreate-db"><param name="db" value="${database.empty}"/></antcall>
<antcall target="-recreate-db"><param name="db" value="${database.schema-only}"/></antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-schema-only.xml"/>
<param name="dburl" value="${database.url}/${database.schema-only}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${metadata.dir}/model/liquibase-update-to-latest.xml"/>
<param name="dburl" value="${database.url}/${database.schema-only}"/>
</antcall>
<antcall target="-diffDatabase">
<param name="olddbname" value="${database.empty}"/>
<param name="dbname" value="${database.schema-only}"/>
<param name="outputfile" value="${build.dir}/liquibase/new-liquibase-schema-only.xml"/>
</antcall>
<!--
Create the liquibase-core-data.xml file
-->
<property name="database.schema-and-core" value="${database.empty}"/>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-schema-only.xml"/>
<param name="dburl" value="${database.url}/${database.schema-and-core}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-core-data.xml"/>
<param name="dburl" value="${database.url}/${database.schema-and-core}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${metadata.dir}/model/liquibase-update-to-latest.xml"/>
<param name="dburl" value="${database.url}/${database.schema-and-core}"/>
</antcall>
<antcall target="-diffDatabase">
<param name="olddbname" value="${database.schema-only}"/>
<param name="dbname" value="${database.schema-and-core}"/>
<param name="outputfile" value="${build.dir}/liquibase/new-liquibase-core-data.xml"/>
</antcall>
<!--
Create the liquibase-demo-data.xml file
-->
<property name="database.demo" value="${database.schema-only}"/>
<antcall target="-recreate-db"><param name="db" value="${database.demo}"/></antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-schema-only.xml"/>
<param name="dburl" value="${database.url}/${database.demo}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-core-data.xml"/>
<param name="dburl" value="${database.url}/${database.demo}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${build.dir}/liquibase/liquibase-demo-data.xml"/>
<param name="dburl" value="${database.url}/${database.demo}"/>
</antcall>
<antcall target="-run-changelog">
<param name="changelog" value="${metadata.dir}/model/liquibase-update-to-latest.xml"/>
<param name="dburl" value="${database.url}/${database.demo}"/>
</antcall>
<antcall target="-diffDatabase">
<param name="olddbname" value="${database.schema-and-core}"/>
<param name="dbname" value="${database.demo}"/>
<param name="outputfile" value="${build.dir}/liquibase/new-liquibase-demo-data.xml"/>
</antcall>
<move file="${build.dir}/liquibase/new-liquibase-schema-only.xml" tofile="${build.dir}/liquibase/liquibase-schema-only.xml" overwrite="true"/>
<move file="${build.dir}/liquibase/new-liquibase-core-data.xml" tofile="${build.dir}/liquibase/liquibase-core-data.xml" overwrite="true"/>
<move file="${build.dir}/liquibase/new-liquibase-demo-data.xml" tofile="${build.dir}/liquibase/liquibase-demo-data.xml" overwrite="true"/>
<zip destfile="metadata/model/new-liquibase-data.zip">
<zipfileset dir="${build.dir}/liquibase">
<include name="liquibase-schema-only.xml"/>
<include name="liquibase-core-data.xml"/>
<include name="liquibase-demo-data.xml"/>
</zipfileset>
</zip>
<echo message="All done. Created metadata/model/new-liquibase-data.zip"/>
</target>
<target name="tmp">
<property name="database.schema-and-core" value="openmrs-ant-one-${openmrs.version}" />
<property name="database.schema-only" value="openmrs-ant-two-${openmrs.version}" />
<antcall target="-diffDatabase">
<param name="olddbname" value="${database.schema-only}"/>
<param name="dbname" value="${database.schema-and-core}"/>
<param name="outputfile" value="${build.dir}/liquibase/new2-liquibase-demo-data.xml"/>
</antcall>
</target>
<!-- Drop and recreate the database in the ${db} property -->
<target name="-recreate-db">
<sql
driver="${database.driver}"
userid="${database.username}"
password="${database.password}"
url="${database.url}"
classpathref="classpath">
drop database if exists `${db}`;
create database `${db}` default character set utf8;
</sql>
</target>
<!-- Execute the given ${changelog} property on the given ${dburl} to ${outputfile} -->
<target name="-run-changelog-with-output">
<updateDatabase
changelogfile="${changelog}"
driver="${database.driver}"
url="${dburl}"
username="${database.username}"
password="${database.password}"
promptOnNonLocalDatabase="${prompt.user.if.not.local.database}"
classpathref="classpath"
databaseChangeLogTableName="liquibasechangelog"
databaseChangeLogLockTableName="liquibasechangeloglock"
outputfile="${outputfile}"
/>
</target>
<!-- Execute the given ${changelog} property on the given ${dburl} -->
<target name="-run-changelog">
<updateDatabase
changelogfile="${changelog}"
driver="${database.driver}"
url="${dburl}"
username="${database.username}"
password="${database.password}"
promptOnNonLocalDatabase="${prompt.user.if.not.local.database}"
classpathref="classpath"
databaseChangeLogTableName="liquibasechangelog"
databaseChangeLogLockTableName="liquibasechangeloglock"
/>
</target>
<!-- Compare the database in ${dbname} with ${olddbname} and put the output in ${outputfile} -->
<target name="-diffDatabase">
<diffDatabaseToChangeLog
driver="${database.driver}"
url="${database.url}/${olddbname}"
username="${database.username}"
password="${database.password}"
basedriver="${database.driver}"
baseurl="${database.url}/${dbname}"
baseusername="${database.username}"
basepassword="${database.password}"
diffTypes="tables,columns,views,primaryKeys,uniqueConstraints,indexes,foreignKeys,sequences,data"
promptOnNonLocalDatabase="${prompt.user.if.not.local.database}"
classpathref="classpath"
databaseChangeLogTableName="liquibasechangelog"
databaseChangeLogLockTableName="liquibasechangeloglock"
outputfile="${outputfile}" />
<echo message="Dumped data in the ${dbname} database to ${outputfile} file"/>
</target>
</project>