com.marklogic.gradle.task.datamovement.ExportModulesTask.groovy Maven / Gradle / Ivy
/*
* Copyright (c) 2023 MarkLogic Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.marklogic.gradle.task.datamovement
import com.marklogic.client.DatabaseClient
import com.marklogic.client.ext.datamovement.consumer.WriteDocumentToFileConsumer
import com.marklogic.client.ext.datamovement.job.SimpleExportJob
import org.gradle.api.tasks.TaskAction
class ExportModulesTask extends DataMovementTask {
@TaskAction
void exportModules() {
String exportPath
String uriPattern = "**"
String databaseName = getAppConfig().getModulesDatabaseName()
boolean logErrors = true
if (project.hasProperty("exportPath")) {
exportPath = project.property("exportPath")
} else {
List modulePaths = getAppConfig().getModulePaths()
if (modulePaths == null || modulePaths.isEmpty()) {
println "Cannot export modules, no module paths are defined; can use -PexportPath= to define a path to export to"
return
}
// Use the last path; if there are multiple, the ones at the beginning may be from dependencies
exportPath = modulePaths.get(modulePaths.size() - 1) + "/root"
}
if (project.hasProperty("uriPattern")) {
uriPattern = project.property("uriPattern")
}
if (project.hasProperty("databaseName")) {
databaseName = project.property("databaseName")
}
if (project.hasProperty("logErrors")) {
logErrors = Boolean.parseBoolean(project.property("logErrors"))
}
File out = new File(exportPath)
out.mkdirs()
println "Will export modules from database '" + databaseName + "' matching pattern '" + uriPattern + "' to path: " + out.getAbsolutePath()
DatabaseClient client = getAppConfig().newAppServicesDatabaseClient(databaseName)
try {
WriteDocumentToFileConsumer consumer = new WriteDocumentToFileConsumer(out)
consumer.setLogErrors(logErrors)
new SimpleExportJob(consumer).setWhereUriPattern("**").run(client)
} finally {
client.release()
}
}
}