-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Partial data-extract implementation
- Loading branch information
Showing
41 changed files
with
3,070 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
...in/java/com/fortify/cli/common/data_extract/cli/cmd/AbstractDataExtractCreateCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/******************************************************************************* | ||
* Copyright 2021, 2023 Open Text. | ||
* | ||
* The only warranties for products and services of Open Text | ||
* and its affiliates and licensors ("Open Text") are as may | ||
* be set forth in the express warranty statements accompanying | ||
* such products and services. Nothing herein should be construed | ||
* as constituting an additional warranty. Open Text shall not be | ||
* liable for technical or editorial errors or omissions contained | ||
* herein. The information contained herein is subject to change | ||
* without notice. | ||
*******************************************************************************/ | ||
package com.fortify.cli.common.data_extract.cli.cmd; | ||
|
||
import java.util.List; | ||
|
||
import org.springframework.expression.spel.support.SimpleEvaluationContext; | ||
|
||
import com.fortify.cli.common.cli.cmd.AbstractRunnableCommand; | ||
import com.fortify.cli.common.cli.mixin.CommonOptionMixins.OptionParametersMixin; | ||
import com.fortify.cli.common.cli.mixin.CommonOptionMixins.OptionParametersMixin.OptionParameterHelper; | ||
import com.fortify.cli.common.data_extract.helper.DataExtractTemplateDescriptor; | ||
import com.fortify.cli.common.data_extract.helper.DataExtractTemplateHelper; | ||
import com.fortify.cli.common.data_extract.helper.DataExtractTemplateRunner; | ||
import com.fortify.cli.common.progress.cli.mixin.ProgressWriterFactoryMixin; | ||
import com.fortify.cli.common.progress.helper.IProgressWriterI18n; | ||
import com.fortify.cli.common.util.DisableTest; | ||
import com.fortify.cli.common.util.DisableTest.TestType; | ||
|
||
import picocli.CommandLine.Mixin; | ||
import picocli.CommandLine.Option; | ||
|
||
public abstract class AbstractDataExtractCreateCommand extends AbstractRunnableCommand implements Runnable { | ||
@Option(names={"-t", "--template"}, required=true, descriptionKey="fcli.data-extract.create.template") private String template; | ||
@Option(names="--template-help", required=false, arity = "0", descriptionKey="fcli.data-extract.create.template-help") private boolean isTemplateHelpRequested; | ||
@DisableTest({TestType.MULTI_OPT_SPLIT, TestType.MULTI_OPT_PLURAL_NAME, TestType.OPT_LONG_NAME}) | ||
@Option(names="--<template-parameter>", paramLabel="<value>", descriptionKey="fcli.data-extract.create.template-parameter") | ||
private List<String> dummyForSynopsis; | ||
@Mixin private OptionParametersMixin templateParameters; | ||
@Mixin private ProgressWriterFactoryMixin progressWriterFactory; | ||
|
||
@Override | ||
public final void run() { | ||
initMixins(); | ||
Runnable delayedConsoleWriter = null; | ||
try ( var progressWriter = progressWriterFactory.create() ) { | ||
progressWriter.writeProgress("Loading template %s", template); | ||
var templateDescriptor = DataExtractTemplateHelper.load(getType(), template); | ||
try ( var templateRunner = DataExtractTemplateRunner.builder() | ||
.template(templateDescriptor) | ||
.inputParameters(templateParameters.getOptions()) | ||
.progressWriter(progressWriter).build() ) | ||
{ | ||
delayedConsoleWriter = run(templateDescriptor, templateRunner, progressWriter); | ||
} | ||
} | ||
delayedConsoleWriter.run(); | ||
} | ||
|
||
private Runnable run(DataExtractTemplateDescriptor templateDescriptor, DataExtractTemplateRunner templateRunner, IProgressWriterI18n progressWriter) { | ||
templateRunner.getSpelEvaluator().configure(context->configure(templateRunner, context)); | ||
OptionParameterHelper helper = templateParameters.getHelper(templateRunner::configureOptionParameterHelper); | ||
if ( isTemplateHelpRequested ) { | ||
String templateHelp = getTemplateHelp(templateDescriptor, helper); | ||
return ()->{System.out.println(templateHelp);}; | ||
} else { | ||
helper.validate(); | ||
progressWriter.writeProgress("Executing template %s", template); | ||
return templateRunner.execute(); | ||
} | ||
} | ||
|
||
private final String getTemplateHelp(DataExtractTemplateDescriptor template, OptionParameterHelper helper) { | ||
return String.format( | ||
"\nTemplate: %s\n"+ | ||
"\n%s\n"+ | ||
"\nTemplate options:\n"+ | ||
"%s", | ||
template.getName(), template.getDescription(), helper.getSupportedOptionsTable()); | ||
} | ||
|
||
protected abstract String getType(); | ||
protected abstract void configure(DataExtractTemplateRunner templateRunner, SimpleEvaluationContext context); | ||
} |
30 changes: 30 additions & 0 deletions
30
...va/com/fortify/cli/common/data_extract/cli/cmd/AbstractDataExtractGetTemplateCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/******************************************************************************* | ||
* Copyright 2021, 2023 Open Text. | ||
* | ||
* The only warranties for products and services of Open Text | ||
* and its affiliates and licensors ("Open Text") are as may | ||
* be set forth in the express warranty statements accompanying | ||
* such products and services. Nothing herein should be construed | ||
* as constituting an additional warranty. Open Text shall not be | ||
* liable for technical or editorial errors or omissions contained | ||
* herein. The information contained herein is subject to change | ||
* without notice. | ||
*******************************************************************************/ | ||
package com.fortify.cli.common.data_extract.cli.cmd; | ||
|
||
import com.fortify.cli.common.cli.cmd.AbstractRunnableCommand; | ||
import com.fortify.cli.common.data_extract.helper.DataExtractTemplateHelper; | ||
|
||
import picocli.CommandLine.Option; | ||
|
||
public abstract class AbstractDataExtractGetTemplateCommand extends AbstractRunnableCommand implements Runnable { | ||
@Option(names={"-t", "--template"}, required=true, descriptionKey="fcli.data-extract.create.template") private String template; | ||
|
||
@Override | ||
public final void run() { | ||
initMixins(); | ||
System.out.println(DataExtractTemplateHelper.loadContents(getType(), template)); | ||
} | ||
|
||
protected abstract String getType(); | ||
} |
37 changes: 37 additions & 0 deletions
37
.../com/fortify/cli/common/data_extract/cli/cmd/AbstractDataExtractListTemplatesCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/******************************************************************************* | ||
* Copyright 2021, 2023 Open Text. | ||
* | ||
* The only warranties for products and services of Open Text | ||
* and its affiliates and licensors ("Open Text") are as may | ||
* be set forth in the express warranty statements accompanying | ||
* such products and services. Nothing herein should be construed | ||
* as constituting an additional warranty. Open Text shall not be | ||
* liable for technical or editorial errors or omissions contained | ||
* herein. The information contained herein is subject to change | ||
* without notice. | ||
*******************************************************************************/ | ||
package com.fortify.cli.common.data_extract.cli.cmd; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import com.fortify.cli.common.data_extract.helper.DataExtractTemplateHelper; | ||
import com.fortify.cli.common.json.JsonHelper; | ||
import com.fortify.cli.common.output.cli.cmd.AbstractOutputCommand; | ||
import com.fortify.cli.common.output.cli.cmd.IJsonNodeSupplier; | ||
|
||
public abstract class AbstractDataExtractListTemplatesCommand extends AbstractOutputCommand implements IJsonNodeSupplier { | ||
@Override | ||
public final JsonNode getJsonNode() { | ||
return DataExtractTemplateHelper.list(getType()) | ||
.map(JsonHelper.getObjectMapper()::valueToTree) | ||
.map(ObjectNode.class::cast) | ||
.collect(JsonHelper.arrayNodeCollector()); | ||
} | ||
@Override | ||
public final boolean isSingular() { | ||
return false; | ||
} | ||
protected abstract String getType(); | ||
|
||
|
||
} |
Oops, something went wrong.