use of com.spectralogic.ds3autogen.python.model.type.TypeDescriptor in project ds3_autogen by SpectraLogic.
the class PythonCodeGenerator_Test method toTypeDescriptorList_FullMap_Test.
@Test
public void toTypeDescriptorList_FullMap_Test() {
final Ds3Type ds3Type = createDs3TypeTestData("com.test.SimpleType", createDs3ElementListTestData("ElementName", "ElementType"));
final ImmutableMap<String, Ds3Type> testTypeMap = ImmutableMap.of(ds3Type.getName(), ds3Type);
final ImmutableList<TypeDescriptor> result = toTypeDescriptorList(testTypeMap);
assertThat(result.size(), is(1));
assertThat(result.get(0).getName(), is("SimpleType"));
}
use of com.spectralogic.ds3autogen.python.model.type.TypeDescriptor in project ds3_autogen by SpectraLogic.
the class PythonCodeGenerator method generateCommands.
/**
* Generates the ds3.py python code which includes: request handlers, response handlers,
* response payload descriptors, and the client
*/
@Override
public void generateCommands(final ImmutableList<Ds3Request> ds3Requests, final ImmutableMap<String, Ds3Type> typeMap, final Ds3DocSpec docSpec) throws IOException, TemplateException {
if (isEmpty(ds3Requests)) {
LOG.info("There are no requests to generate");
return;
}
final ImmutableList<BaseRequest> baseRequests = toRequestModelList(ds3Requests, docSpec);
final ImmutableList<BaseResponse> baseResponses = toResponseModelList(ds3Requests);
final ImmutableList<TypeDescriptor> baseTypes = toTypeDescriptorList(typeMap);
final ImmutableList<BaseClient> clientCommands = toClientCommands(ds3Requests, docSpec);
final CommandSet commandSet = new CommandSet(baseRequests, baseResponses, baseTypes, clientCommands);
final Template tmpl = getCommandTemplate(config);
final Path path = toBaseProjectPath("ds3.py");
LOG.info("Getting OutputStream for file: " + path.toString());
try (final OutputStream outStream = fileUtils.getOutputFile(path);
final Writer writer = new OutputStreamWriter(outStream)) {
tmpl.process(commandSet, writer);
}
}
use of com.spectralogic.ds3autogen.python.model.type.TypeDescriptor in project ds3_autogen by SpectraLogic.
the class PythonCodeGenerator_Test method toTypeDescriptor_Test.
@Test
public void toTypeDescriptor_Test() {
final Ds3Type ds3Type = createDs3TypeTestData("com.test.SimpleType", createDs3ElementListTestData("ElementName", "None"));
final ImmutableMap<String, Ds3Type> testTypeMap = ImmutableMap.of(ds3Type.getName(), ds3Type);
final TypeDescriptor result = toTypeDescriptor(ds3Type, testTypeMap);
assertThat(result.getName(), is("SimpleType"));
assertThat(result.getAttributes().size(), is(0));
assertThat(result.getElementLists().size(), is(0));
assertThat(result.getElements().size(), is(1));
assertThat(result.getElements().get(0), is("'ElementName' : None"));
}
Aggregations