use of com.spectralogic.ds3autogen.api.CodeGenerator in project ds3_autogen by SpectraLogic.
the class GoTestCodeUtil method generateCode.
/**
* Generates the Go code associated with an input file containing a contract.
*/
public void generateCode(final FileUtils fileUtils, final String inputFileName) throws IOException, TemplateModelException {
final Ds3SpecParser parser = new Ds3SpecParserImpl();
final Ds3ApiSpec spec = parser.getSpec(GoTestCodeUtil.class.getResourceAsStream(inputFileName));
final CodeGenerator codeGenerator = new GoCodeGenerator();
final Ds3DocSpec docSpec = new Ds3DocSpecEmptyImpl();
// Generate the Go Code from the input file
codeGenerator.generate(spec, fileUtils, Paths.get("."), docSpec);
// Capture the generated command files
requestCode = new String(requestOutputStream.toByteArray());
responseCode = new String(responseOutputStream.toByteArray());
// Capture the generate response payload type if one exists
if (typeOutputStream != null) {
typeCode = new String(typeOutputStream.toByteArray());
}
// Capture the generated client files and associate them with the HttpVerb of
// the commands contained within the file
final ImmutableMap.Builder<HttpVerb, String> builder = ImmutableMap.builder();
for (final Map.Entry<HttpVerb, ByteArrayOutputStream> entry : clientOutputStreams.entrySet()) {
builder.put(entry.getKey(), new String(entry.getValue().toByteArray()));
}
clientCode = builder.build();
}
use of com.spectralogic.ds3autogen.api.CodeGenerator in project ds3_autogen by SpectraLogic.
the class JavaFunctionalTests method wholeXmlDoc.
@Test
public void wholeXmlDoc() throws IOException, TemplateModelException {
final FileUtils fileUtils = new TestFileUtilsImpl();
final Ds3SpecParser parser = new Ds3SpecParserImpl();
final Ds3ApiSpec spec = parser.getSpec(JavaFunctionalTests.class.getResourceAsStream("/input/fullXml.xml"));
final CodeGenerator codeGenerator = new JavaCodeGenerator();
codeGenerator.generate(spec, fileUtils, Paths.get("."), new Ds3DocSpecEmptyImpl());
}
use of com.spectralogic.ds3autogen.api.CodeGenerator in project ds3_autogen by SpectraLogic.
the class TestPythonGeneratedCode method generateCode.
/**
* Generates the python code associated with an input file. This allows
* for a Ds3DocSpec to be specified
* Captured code: ds3.py
*/
public void generateCode(final FileUtils fileUtils, final String inputFileName, final Ds3DocSpec docSpec) throws IOException, TemplateModelException {
final Ds3SpecParser parser = new Ds3SpecParserImpl();
final Ds3ApiSpec spec = parser.getSpec(TestPythonGeneratedCode.class.getResourceAsStream(inputFileName));
final CodeGenerator codeGenerator = new PythonCodeGenerator();
codeGenerator.generate(spec, fileUtils, Paths.get("."), docSpec);
ds3Code = new String(ds3OutputStream.toByteArray());
}
use of com.spectralogic.ds3autogen.api.CodeGenerator in project ds3_autogen by SpectraLogic.
the class TestPython3GeneratedCode method generateCode.
/**
* Generates the Python 3 code associated with an input file. This allows
* for a Ds3DocSpec to be specified
* Captured code: ds3.py
*/
public void generateCode(final FileUtils fileUtils, final String inputFileName, final Ds3DocSpec docSpec) throws IOException, TemplateModelException {
final Ds3SpecParser parser = new Ds3SpecParserImpl();
final Ds3ApiSpec spec = parser.getSpec(TestPython3GeneratedCode.class.getResourceAsStream(inputFileName));
final CodeGenerator codeGenerator = new Python3CodeGenerator();
codeGenerator.generate(spec, fileUtils, Paths.get("."), docSpec);
ds3Code = new String(ds3OutputStream.toByteArray());
}
use of com.spectralogic.ds3autogen.api.CodeGenerator in project ds3_autogen by SpectraLogic.
the class Main method run.
public void run() throws Exception {
final Ds3SpecParser parser = new Ds3SpecParserImpl();
System.out.println("Generating " + args.getType().toString() + " ds3 sdk code for the spec " + args.getInputSpec());
//TODO make the input file also accept a url that we can read from
final Ds3ApiSpec spec = parser.getSpec(Files.newInputStream(Paths.get(args.getInputSpec())), args.generateInternal());
final CodeGenerator generator;
switch(args.getType()) {
case C:
generator = new CCodeGenerator();
break;
case JAVA:
generator = new JavaCodeGenerator();
break;
case NET:
generator = new NetCodeGenerator();
break;
case PYTHON:
generator = new PythonCodeGenerator();
break;
case PYTHON3:
generator = new Python3CodeGenerator();
break;
case GO:
generator = new GoCodeGenerator();
break;
default:
throw new IllegalArgumentException("Unknown generator typeName " + args.getType().toString());
}
final FileUtils fileUtils = new FileUtilsImpl();
final Ds3DocSpec docSpec;
if (args.isNoDoc()) {
docSpec = new Ds3DocSpecEmptyImpl();
} else {
final Ds3DocSpecParser docSpecParser = new Ds3DocSpecParserImpl(new NameMapper());
docSpec = docSpecParser.getDocSpec();
}
generator.generate(spec, fileUtils, Paths.get(args.getTargetDir()), docSpec);
}
Aggregations