Search in sources :

Example 1 with TsConstructorModel

use of cz.habarta.typescript.generator.emitter.TsConstructorModel in project typescript-generator by vojtechhabarta.

the class RequiredPropertyConstructorExtension method createConstructor.

private static Optional<TsConstructorModel> createConstructor(TsBeanModel bean, TsModel model, Map<String, TsConstructorModel> generatedConstructors) {
    List<TsParameterModel> parameters = new ArrayList<>();
    List<TsParameterModel> optionalParameters = new ArrayList<>();
    List<TsStatement> body = new ArrayList<>();
    TsType parent = bean.getParent();
    if (parent != null) {
        if (!(parent instanceof TsType.ReferenceType)) {
            throw new IllegalStateException("Generating constructor for non-reference parent types is not currently supported");
        }
        TsType.ReferenceType referenceParent = (TsType.ReferenceType) parent;
        TsConstructorModel parentConstructor = generatedConstructors.get(referenceParent.symbol.getFullName());
        if (parentConstructor == null) {
            throw new IllegalStateException("Generating constructor for class with non-generated constructor is not currently supported");
        }
        List<TsParameterModel> parentParameters = parentConstructor.getParameters();
        TsIdentifierReference[] callParameters = new TsIdentifierReference[parentParameters.size()];
        int i = 0;
        for (TsParameterModel parentParameter : parentParameters) {
            List<TsParameterModel> targetParameterList = parentParameter.tsType instanceof TsType.OptionalType ? optionalParameters : parameters;
            targetParameterList.add(parentParameter);
            callParameters[i] = new TsIdentifierReference(parentParameter.name);
            i++;
        }
        body.add(new TsExpressionStatement(new TsCallExpression(new TsSuperExpression(), callParameters)));
    }
    for (TsPropertyModel property : bean.getProperties()) {
        if (!property.modifiers.isReadonly) {
            continue;
        }
        TsExpression assignmentExpression;
        Optional<TsExpression> predefinedValue = getPredefinedValueForProperty(property, model);
        if (predefinedValue.isPresent()) {
            assignmentExpression = predefinedValue.get();
        } else {
            TsParameterModel parameter = new TsParameterModel(property.name, property.tsType);
            List<TsParameterModel> targetParameterList = property.tsType instanceof TsType.OptionalType ? optionalParameters : parameters;
            targetParameterList.add(parameter);
            assignmentExpression = new TsIdentifierReference(property.name);
        }
        TsMemberExpression leftHandSideExpression = new TsMemberExpression(new TsThisExpression(), property.name);
        TsExpression assignment = new TsAssignmentExpression(leftHandSideExpression, assignmentExpression);
        TsExpressionStatement assignmentStatement = new TsExpressionStatement(assignment);
        body.add(assignmentStatement);
    }
    parameters.addAll(optionalParameters);
    if (parameters.isEmpty() && body.isEmpty()) {
        return Optional.empty();
    }
    TsConstructorModel constructor = new TsConstructorModel(TsModifierFlags.None, parameters, body, null);
    return Optional.of(constructor);
}
Also used : TsStatement(cz.habarta.typescript.generator.emitter.TsStatement) TsMemberExpression(cz.habarta.typescript.generator.emitter.TsMemberExpression) TsThisExpression(cz.habarta.typescript.generator.emitter.TsThisExpression) TsExpression(cz.habarta.typescript.generator.emitter.TsExpression) TsSuperExpression(cz.habarta.typescript.generator.emitter.TsSuperExpression) ArrayList(java.util.ArrayList) TsPropertyModel(cz.habarta.typescript.generator.emitter.TsPropertyModel) TsType(cz.habarta.typescript.generator.TsType) TsCallExpression(cz.habarta.typescript.generator.emitter.TsCallExpression) TsAssignmentExpression(cz.habarta.typescript.generator.emitter.TsAssignmentExpression) TsConstructorModel(cz.habarta.typescript.generator.emitter.TsConstructorModel) TsIdentifierReference(cz.habarta.typescript.generator.emitter.TsIdentifierReference) TsExpressionStatement(cz.habarta.typescript.generator.emitter.TsExpressionStatement) TsParameterModel(cz.habarta.typescript.generator.emitter.TsParameterModel)

Example 2 with TsConstructorModel

use of cz.habarta.typescript.generator.emitter.TsConstructorModel in project typescript-generator by vojtechhabarta.

the class RequiredPropertyConstructorExtension method transformBean.

private TsBeanModel transformBean(TsBeanModel bean, TsModel model, Map<String, TsConstructorModel> generatedConstructors) {
    if (classes != null && !classes.contains(bean.getOrigin().getCanonicalName())) {
        return bean;
    }
    if (!bean.isClass() || bean.getConstructor() != null) {
        return bean;
    }
    Optional<TsConstructorModel> constructorOption = createConstructor(bean, model, generatedConstructors);
    if (!constructorOption.isPresent()) {
        return bean;
    }
    TsConstructorModel constructor = constructorOption.get();
    generatedConstructors.put(bean.getName().getFullName(), constructor);
    return bean.withConstructor(constructor);
}
Also used : TsConstructorModel(cz.habarta.typescript.generator.emitter.TsConstructorModel)

Example 3 with TsConstructorModel

use of cz.habarta.typescript.generator.emitter.TsConstructorModel in project typescript-generator by vojtechhabarta.

the class ModelCompiler method createRestClients.

private void createRestClients(TsModel tsModel, SymbolTable symbolTable, List<RestApplicationModel> restApplications, Symbol responseSymbol, TsType.GenericVariableType optionsGenericVariable, TsType optionsType) {
    final Symbol httpClientSymbol = symbolTable.getSyntheticSymbol("HttpClient");
    final List<TsType.GenericVariableType> typeParameters = Utils.listFromNullable(optionsGenericVariable);
    // HttpClient interface
    final TsType.GenericVariableType returnGenericVariable = new TsType.GenericVariableType("R");
    tsModel.getBeans().add(new TsBeanModel(null, TsBeanCategory.ServicePrerequisite, false, httpClientSymbol, typeParameters, null, null, null, null, null, Arrays.asList(new TsMethodModel("request", TsModifierFlags.None, Arrays.asList(returnGenericVariable), Arrays.asList(new TsParameterModel("requestConfig", new TsType.ObjectType(new TsProperty("method", TsType.String), new TsProperty("url", TsType.String), new TsProperty("queryParams", new TsType.OptionalType(TsType.Any)), new TsProperty("data", new TsType.OptionalType(TsType.Any)), new TsProperty("copyFn", new TsType.OptionalType(new TsType.FunctionType(Arrays.asList(new TsParameter("data", returnGenericVariable)), returnGenericVariable))), optionsType != null ? new TsProperty("options", new TsType.OptionalType(optionsType)) : null))), new TsType.GenericReferenceType(responseSymbol, returnGenericVariable), null, null)), null));
    // application client classes
    final TsType.ReferenceType httpClientType = optionsGenericVariable != null ? new TsType.GenericReferenceType(httpClientSymbol, optionsGenericVariable) : new TsType.ReferenceType(httpClientSymbol);
    final TsConstructorModel constructor = new TsConstructorModel(TsModifierFlags.None, Arrays.asList(new TsParameterModel(TsAccessibilityModifier.Protected, "httpClient", httpClientType)), Collections.<TsStatement>emptyList(), null);
    final boolean bothInterfacesAndClients = settings.generateJaxrsApplicationInterface || settings.generateSpringApplicationInterface;
    final String groupingSuffix = bothInterfacesAndClients ? null : "Client";
    final Map<Symbol, List<TsMethodModel>> groupedMethods = processRestMethods(tsModel, restApplications, symbolTable, groupingSuffix, responseSymbol, optionsType, true);
    for (Map.Entry<Symbol, List<TsMethodModel>> entry : groupedMethods.entrySet()) {
        final Symbol symbol = bothInterfacesAndClients ? symbolTable.addSuffixToSymbol(entry.getKey(), "Client") : entry.getKey();
        final TsType interfaceType = bothInterfacesAndClients ? new TsType.ReferenceType(entry.getKey()) : null;
        final TsBeanModel clientModel = new TsBeanModel(null, TsBeanCategory.Service, true, symbol, typeParameters, null, null, Utils.listFromNullable(interfaceType), null, constructor, entry.getValue(), null);
        tsModel.getBeans().add(clientModel);
    }
    // helper
    tsModel.getHelpers().add(TsHelper.loadFromResource("/helpers/uriEncoding.ts"));
}
Also used : TsType(cz.habarta.typescript.generator.TsType) TsProperty(cz.habarta.typescript.generator.TsProperty) TsParameter(cz.habarta.typescript.generator.TsParameter) TsConstructorModel(cz.habarta.typescript.generator.emitter.TsConstructorModel) List(java.util.List) ArrayList(java.util.ArrayList) TsBeanModel(cz.habarta.typescript.generator.emitter.TsBeanModel) TsMethodModel(cz.habarta.typescript.generator.emitter.TsMethodModel) Map(java.util.Map) LinkedHashMap(java.util.LinkedHashMap) TsParameterModel(cz.habarta.typescript.generator.emitter.TsParameterModel)

Example 4 with TsConstructorModel

use of cz.habarta.typescript.generator.emitter.TsConstructorModel in project typescript-generator by vojtechhabarta.

the class JsonDeserializationExtension method getConstructorParameters.

private static List<TsIdentifierReference> getConstructorParameters(TsBeanModel bean) {
    TsConstructorModel constructor = bean.getConstructor();
    if (constructor == null) {
        return null;
    }
    List<TsIdentifierReference> parameters = new ArrayList<>();
    for (TsParameterModel parameter : constructor.getParameters()) {
        parameters.add(new TsIdentifierReference(parameter.name));
    }
    return parameters;
}
Also used : TsConstructorModel(cz.habarta.typescript.generator.emitter.TsConstructorModel) ArrayList(java.util.ArrayList) TsIdentifierReference(cz.habarta.typescript.generator.emitter.TsIdentifierReference) TsParameterModel(cz.habarta.typescript.generator.emitter.TsParameterModel)

Example 5 with TsConstructorModel

use of cz.habarta.typescript.generator.emitter.TsConstructorModel in project typescript-generator by vojtechhabarta.

the class RequiredPropertyConstructorExtension method getTransformers.

@Override
public List<TransformerDefinition> getTransformers() {
    return Arrays.asList(new TransformerDefinition(ModelCompiler.TransformationPhase.AfterDeclarationSorting, new ModelTransformer() {

        @Override
        public TsModel transformModel(SymbolTable symbolTable, TsModel model) {
            List<TsBeanModel> beans = new ArrayList<>();
            Map<String, TsConstructorModel> generatedConstructors = new HashMap<>();
            for (TsBeanModel bean : model.getBeans()) {
                TsBeanModel newBean = transformBean(bean, model, generatedConstructors);
                beans.add(newBean);
            }
            return model.withBeans(beans);
        }
    }));
}
Also used : ModelTransformer(cz.habarta.typescript.generator.compiler.ModelTransformer) TsModel(cz.habarta.typescript.generator.emitter.TsModel) HashMap(java.util.HashMap) TsConstructorModel(cz.habarta.typescript.generator.emitter.TsConstructorModel) ArrayList(java.util.ArrayList) SymbolTable(cz.habarta.typescript.generator.compiler.SymbolTable) TsBeanModel(cz.habarta.typescript.generator.emitter.TsBeanModel)

Aggregations

TsConstructorModel (cz.habarta.typescript.generator.emitter.TsConstructorModel)8 ArrayList (java.util.ArrayList)7 TsBeanModel (cz.habarta.typescript.generator.emitter.TsBeanModel)4 TsExpressionStatement (cz.habarta.typescript.generator.emitter.TsExpressionStatement)4 TsParameterModel (cz.habarta.typescript.generator.emitter.TsParameterModel)4 TsType (cz.habarta.typescript.generator.TsType)3 TsCallExpression (cz.habarta.typescript.generator.emitter.TsCallExpression)3 TsIdentifierReference (cz.habarta.typescript.generator.emitter.TsIdentifierReference)3 TsPropertyModel (cz.habarta.typescript.generator.emitter.TsPropertyModel)3 TsStatement (cz.habarta.typescript.generator.emitter.TsStatement)3 TsSuperExpression (cz.habarta.typescript.generator.emitter.TsSuperExpression)3 TsAssignmentExpression (cz.habarta.typescript.generator.emitter.TsAssignmentExpression)2 TsExpression (cz.habarta.typescript.generator.emitter.TsExpression)2 TsMemberExpression (cz.habarta.typescript.generator.emitter.TsMemberExpression)2 TsThisExpression (cz.habarta.typescript.generator.emitter.TsThisExpression)2 TsParameter (cz.habarta.typescript.generator.TsParameter)1 TsProperty (cz.habarta.typescript.generator.TsProperty)1 ModelTransformer (cz.habarta.typescript.generator.compiler.ModelTransformer)1 SymbolTable (cz.habarta.typescript.generator.compiler.SymbolTable)1 TsMethodModel (cz.habarta.typescript.generator.emitter.TsMethodModel)1