com.io7m.xstructural.cmdline.XSCommandValidate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.io7m.xstructural.cmdline Show documentation
Show all versions of com.io7m.xstructural.cmdline Show documentation
Structural document format (Command line)
The newest version!
/*
* Copyright © 2021 Mark Raynsford https://www.io7m.com
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package com.io7m.xstructural.cmdline;
import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;
import com.io7m.xstructural.api.XSProcessorRequest;
import com.io7m.xstructural.cmdline.internal.XSServices;
import java.nio.file.Files;
import java.nio.file.Path;
import static com.io7m.xstructural.api.XSProcessorRequestType.Task;
@Parameters(commandDescription = "Validate a structural document")
final class XSCommandValidate extends XSCommandRoot
{
@Parameter(
required = true,
description = "The source document",
names = "--sourceFile"
)
private Path sourceFile;
XSCommandValidate()
{
}
@Override
public Status execute()
throws Exception
{
if (super.execute() == Status.FAILURE) {
return Status.FAILURE;
}
final var directory = Files.createTempDirectory("xstructural-");
Files.deleteIfExists(directory);
final var requestBuilder = XSProcessorRequest.builder();
requestBuilder.setOutputDirectory(directory);
requestBuilder.setSourceFile(this.sourceFile.toAbsolutePath());
requestBuilder.setTask(Task.VALIDATE);
final var request = requestBuilder.build();
final var processors = XSServices.findProcessors();
final var processor = processors.create(request);
processor.execute();
return Status.SUCCESS;
}
}