Exemple #1
0
 /// <summary>
 /// Normalizes dictionary type.
 /// </summary>
 /// <param name="dictionaryType">The dictionary type.</param>
 /// <returns>Normalized dictionary type.</returns>
 private IType NormalizeDictionaryType(DictionaryType dictionaryType)
 {
     dictionaryType.ValueType = NormalizeTypeReference(dictionaryType.ValueType);
     dictionaryType.NameFormat = "Hash";
     return dictionaryType;
 }
        private static JsonSchema ParseDictionaryType(Property property, DictionaryType dictionaryType, IDictionary<string, JsonSchema> definitions, IEnumerable<CompositeType> modelTypes)
        {
            JsonSchema result = new JsonSchema()
            {
                JsonType = "object",
                AdditionalProperties = ParseType(null, dictionaryType.ValueType, definitions, modelTypes)
            };

            if (property != null)
            {
                result.Description = RemovePossibleValuesFromDescription(property.Documentation);
            }

            return result;
        }
Exemple #3
0
 private IType NormalizeDictionaryType(DictionaryType dictionaryType)
 {
     return new MapType(NormalizeTypeReference(dictionaryType.ValueType));
 }
Exemple #4
0
 private IType NormalizeDictionaryType(DictionaryType dictionaryType)
 {
     dictionaryType.ValueType = WrapPrimitiveType(NormalizeTypeReference(dictionaryType.ValueType));
     dictionaryType.NameFormat = "Map<String, {0}>";
     return dictionaryType;
 }
 public DictionaryTypeModel(DictionaryType dictionaryType)
     : base()
 {
     this.LoadFrom(dictionaryType);
 }
Exemple #6
0
        public override IType BuildServiceType(string serviceTypeName)
        {
            // Check if already generated
            if (serviceTypeName != null && Modeler.GeneratedTypes.ContainsKey(serviceTypeName))
            {
                return Modeler.GeneratedTypes[serviceTypeName];
            }

            _schema = Modeler.Resolver.Unwrap(_schema);

            // If it's a primitive type, let the parent build service handle it
            if (_schema.IsPrimitiveType())
            {
                return _schema.GetBuilder(Modeler).ParentBuildServiceType(serviceTypeName);
            }

            // If it's known primary type, return that type
            var primaryType = _schema.GetSimplePrimaryType();
            if (primaryType != KnownPrimaryType.None)
            {
                return new PrimaryType(primaryType);
            }

            // Otherwise create new object type
            var objectType = new CompositeType
            {
                Name = serviceTypeName,
                SerializedName = serviceTypeName,
                Documentation = _schema.Description,
                ExternalDocsUrl = _schema.ExternalDocs?.Url,
                Summary = _schema.Title
            };

            // Put this in already generated types serializationProperty
            Modeler.GeneratedTypes[serviceTypeName] = objectType;

            if (_schema.Type == DataType.Object && _schema.AdditionalProperties != null)
            {
                // this schema is defining 'additionalProperties' which expects to create an extra
                // property that will catch all the unbound properties during deserialization.
                var name = "additionalProperties";
                var propertyType = new DictionaryType
                {
                    ValueType = _schema.AdditionalProperties.GetBuilder(Modeler).BuildServiceType(
                               _schema.AdditionalProperties.Reference != null
                               ? _schema.AdditionalProperties.Reference.StripDefinitionPath()
                               : serviceTypeName + "Value"),
                    SupportsAdditionalProperties = true
                };

                // now add the extra property to the type.
                objectType.Properties.Add(new Property
                {
                    Name = name,
                    Type = propertyType,
                    Documentation = "Unmatched properties from the message are deserialized this collection"
                });
            }

            if (_schema.Properties != null)
            {
                // Visit each property and recursively build service types
                foreach (var property in _schema.Properties)
                {
                    string name = property.Key;
                    if (name != _schema.Discriminator)
                    {
                        string propertyServiceTypeName;
                        Schema refSchema = null;

                        if (property.Value.ReadOnly && property.Value.IsRequired)
                        {
                            throw new InvalidOperationException(string.Format(CultureInfo.InvariantCulture,
                           Resources.ReadOnlyNotRequired, name, serviceTypeName));
                        }

                        if (property.Value.Reference != null)
                        {
                            propertyServiceTypeName = property.Value.Reference.StripDefinitionPath();
                            var unwrappedSchema = Modeler.Resolver.Unwrap(property.Value);

                            // For Enums use the referenced schema in order to set the correct property Type and Enum values
                            if (unwrappedSchema.Enum != null)
                            {
                                refSchema = new Schema().LoadFrom(unwrappedSchema);
                                if (property.Value.IsRequired)
                                {
                                    refSchema.IsRequired = property.Value.IsRequired;
                                }
                                //Todo: Remove the following when referenced descriptions are correctly ignored (Issue https://github.com/Azure/autorest/issues/1283)
                                refSchema.Description = property.Value.Description;
                            }
                        }
                        else
                        {
                            propertyServiceTypeName = serviceTypeName + "_" + property.Key;
                        }

                        var propertyType = refSchema != null
                                           ? refSchema.GetBuilder(Modeler).BuildServiceType(propertyServiceTypeName)
                                           : property.Value.GetBuilder(Modeler).BuildServiceType(propertyServiceTypeName);

                        var propertyObj = new Property
                        {
                            Name = name,
                            SerializedName = name,
                            Type = propertyType,
                            IsReadOnly = property.Value.ReadOnly,
                            Summary = property.Value.Title
                        };
                        PopulateParameter(propertyObj, refSchema != null ? refSchema : property.Value);
                        var propertyCompositeType = propertyType as CompositeType;
                        if (propertyObj.IsConstant ||
                            (propertyCompositeType != null
                                && propertyCompositeType.ContainsConstantProperties))
                        {
                            objectType.ContainsConstantProperties = true;
                        }

                        objectType.Properties.Add(propertyObj);
                    }
                    else
                    {
                        objectType.PolymorphicDiscriminator = name;
                    }
                }
            }

            // Copy over extensions
            _schema.Extensions.ForEach(e => objectType.Extensions[e.Key] = e.Value);

            if (_schema.Extends != null)
            {
                // Optionally override the discriminator value for polymorphic types. We expect this concept to be
                // added to Swagger at some point, but until it is, we use an extension.
                object discriminatorValueExtension;
                if (objectType.Extensions.TryGetValue(DiscriminatorValueExtension, out discriminatorValueExtension))
                {
                    string discriminatorValue = discriminatorValueExtension as string;
                    if (discriminatorValue != null)
                    {
                        objectType.SerializedName = discriminatorValue;
                    }
                }

                // Put this in the extended type serializationProperty for building method return type in the end
                Modeler.ExtendedTypes[serviceTypeName] = _schema.Extends.StripDefinitionPath();
            }

            return objectType;
        }
 private IType NormalizeDictionaryType(DictionaryType dictionaryType)
 {
     dictionaryType.ValueType = NormalizeTypeReference(dictionaryType.ValueType);
     if (dictionaryType.ValueType.IsValueType())
     {
         dictionaryType.NameFormat = "System.Collections.Generic.IDictionary<string, {0}?>";
     }
     else
     {
         dictionaryType.NameFormat = "System.Collections.Generic.IDictionary<string, {0}>";
     }
     return dictionaryType;
 }