Files
divkit/client/ios/DivKitTests/Entities/generated_sources/EntityWithSimplePropertiesTemplate.swift
T
feldspar ce9af20a5b Revert parsing logic update
commit_hash:c9419f063b7f8c5df41675acc9ed49d862850a2c
2026-01-16 23:06:00 +03:00

201 lines
10 KiB
Swift

// Generated code. Do not modify.
@testable import DivKit
import Foundation
import Serialization
import VGSL
import enum DivKit.Expression
public final class EntityWithSimplePropertiesTemplate: TemplateValue, EntityProtocol, Sendable {
public static let type: String = "entity_with_simple_properties"
public let parent: String?
public let boolean: Field<Expression<Bool>>?
public let booleanInt: Field<Expression<Bool>>?
public let color: Field<Expression<Color>>?
public let double: Field<Expression<Double>>?
public let id: Field<Int>? // default value: 0
public let integer: Field<Expression<Int>>? // default value: 0
public let positiveInteger: Field<Expression<Int>>? // constraint: number > 0
public let string: Field<Expression<String>>?
public let url: Field<Expression<URL>>?
public convenience init(dictionary: [String: Any], templateToType: [TemplateName: String]) throws {
self.init(
parent: dictionary["type"] as? String,
boolean: dictionary.getOptionalExpressionField("boolean"),
booleanInt: dictionary.getOptionalExpressionField("boolean_int"),
color: dictionary.getOptionalExpressionField("color", transform: Color.color(withHexString:)),
double: dictionary.getOptionalExpressionField("double"),
id: dictionary.getOptionalField("id"),
integer: dictionary.getOptionalExpressionField("integer"),
positiveInteger: dictionary.getOptionalExpressionField("positive_integer"),
string: dictionary.getOptionalExpressionField("string"),
url: dictionary.getOptionalExpressionField("url", transform: URL.makeFromNonEncodedString)
)
}
init(
parent: String?,
boolean: Field<Expression<Bool>>? = nil,
booleanInt: Field<Expression<Bool>>? = nil,
color: Field<Expression<Color>>? = nil,
double: Field<Expression<Double>>? = nil,
id: Field<Int>? = nil,
integer: Field<Expression<Int>>? = nil,
positiveInteger: Field<Expression<Int>>? = nil,
string: Field<Expression<String>>? = nil,
url: Field<Expression<URL>>? = nil
) {
self.parent = parent
self.boolean = boolean
self.booleanInt = booleanInt
self.color = color
self.double = double
self.id = id
self.integer = integer
self.positiveInteger = positiveInteger
self.string = string
self.url = url
}
private static func resolveOnlyLinks(context: TemplatesContext, parent: EntityWithSimplePropertiesTemplate?) -> DeserializationResult<EntityWithSimpleProperties> {
let booleanValue = parent?.boolean?.resolveOptionalValue(context: context) ?? .noValue
let booleanIntValue = parent?.booleanInt?.resolveOptionalValue(context: context) ?? .noValue
let colorValue = parent?.color?.resolveOptionalValue(context: context, transform: Color.color(withHexString:)) ?? .noValue
let doubleValue = parent?.double?.resolveOptionalValue(context: context) ?? .noValue
let idValue = parent?.id?.resolveOptionalValue(context: context) ?? .noValue
let integerValue = parent?.integer?.resolveOptionalValue(context: context) ?? .noValue
let positiveIntegerValue = parent?.positiveInteger?.resolveOptionalValue(context: context, validator: ResolvedValue.positiveIntegerValidator) ?? .noValue
let stringValue = parent?.string?.resolveOptionalValue(context: context) ?? .noValue
let urlValue = parent?.url?.resolveOptionalValue(context: context, transform: URL.makeFromNonEncodedString) ?? .noValue
let errors = mergeErrors(
booleanValue.errorsOrWarnings?.map { .nestedObjectError(field: "boolean", error: $0) },
booleanIntValue.errorsOrWarnings?.map { .nestedObjectError(field: "boolean_int", error: $0) },
colorValue.errorsOrWarnings?.map { .nestedObjectError(field: "color", error: $0) },
doubleValue.errorsOrWarnings?.map { .nestedObjectError(field: "double", error: $0) },
idValue.errorsOrWarnings?.map { .nestedObjectError(field: "id", error: $0) },
integerValue.errorsOrWarnings?.map { .nestedObjectError(field: "integer", error: $0) },
positiveIntegerValue.errorsOrWarnings?.map { .nestedObjectError(field: "positive_integer", error: $0) },
stringValue.errorsOrWarnings?.map { .nestedObjectError(field: "string", error: $0) },
urlValue.errorsOrWarnings?.map { .nestedObjectError(field: "url", error: $0) }
)
let result = EntityWithSimpleProperties(
boolean: booleanValue.value,
booleanInt: booleanIntValue.value,
color: colorValue.value,
double: doubleValue.value,
id: idValue.value,
integer: integerValue.value,
positiveInteger: positiveIntegerValue.value,
string: stringValue.value,
url: urlValue.value
)
return errors.isEmpty ? .success(result) : .partialSuccess(result, warnings: NonEmptyArray(errors)!)
}
public static func resolveValue(context: TemplatesContext, parent: EntityWithSimplePropertiesTemplate?, useOnlyLinks: Bool) -> DeserializationResult<EntityWithSimpleProperties> {
if useOnlyLinks {
return resolveOnlyLinks(context: context, parent: parent)
}
var booleanValue: DeserializationResult<Expression<Bool>> = parent?.boolean?.value() ?? .noValue
var booleanIntValue: DeserializationResult<Expression<Bool>> = parent?.booleanInt?.value() ?? .noValue
var colorValue: DeserializationResult<Expression<Color>> = parent?.color?.value() ?? .noValue
var doubleValue: DeserializationResult<Expression<Double>> = parent?.double?.value() ?? .noValue
var idValue: DeserializationResult<Int> = parent?.id?.value() ?? .noValue
var integerValue: DeserializationResult<Expression<Int>> = parent?.integer?.value() ?? .noValue
var positiveIntegerValue: DeserializationResult<Expression<Int>> = parent?.positiveInteger?.value() ?? .noValue
var stringValue: DeserializationResult<Expression<String>> = parent?.string?.value() ?? .noValue
var urlValue: DeserializationResult<Expression<URL>> = parent?.url?.value() ?? .noValue
context.templateData.forEach { key, __dictValue in
switch key {
case "boolean":
booleanValue = deserialize(__dictValue).merged(with: booleanValue)
case "boolean_int":
booleanIntValue = deserialize(__dictValue).merged(with: booleanIntValue)
case "color":
colorValue = deserialize(__dictValue, transform: Color.color(withHexString:)).merged(with: colorValue)
case "double":
doubleValue = deserialize(__dictValue).merged(with: doubleValue)
case "id":
idValue = deserialize(__dictValue).merged(with: idValue)
case "integer":
integerValue = deserialize(__dictValue).merged(with: integerValue)
case "positive_integer":
positiveIntegerValue = deserialize(__dictValue, validator: ResolvedValue.positiveIntegerValidator).merged(with: positiveIntegerValue)
case "string":
stringValue = deserialize(__dictValue).merged(with: stringValue)
case "url":
urlValue = deserialize(__dictValue, transform: URL.makeFromNonEncodedString).merged(with: urlValue)
case parent?.boolean?.link:
booleanValue = booleanValue.merged(with: { deserialize(__dictValue) })
case parent?.booleanInt?.link:
booleanIntValue = booleanIntValue.merged(with: { deserialize(__dictValue) })
case parent?.color?.link:
colorValue = colorValue.merged(with: { deserialize(__dictValue, transform: Color.color(withHexString:)) })
case parent?.double?.link:
doubleValue = doubleValue.merged(with: { deserialize(__dictValue) })
case parent?.id?.link:
idValue = idValue.merged(with: { deserialize(__dictValue) })
case parent?.integer?.link:
integerValue = integerValue.merged(with: { deserialize(__dictValue) })
case parent?.positiveInteger?.link:
positiveIntegerValue = positiveIntegerValue.merged(with: { deserialize(__dictValue, validator: ResolvedValue.positiveIntegerValidator) })
case parent?.string?.link:
stringValue = stringValue.merged(with: { deserialize(__dictValue) })
case parent?.url?.link:
urlValue = urlValue.merged(with: { deserialize(__dictValue, transform: URL.makeFromNonEncodedString) })
default: break
}
}
let errors = mergeErrors(
booleanValue.errorsOrWarnings?.map { .nestedObjectError(field: "boolean", error: $0) },
booleanIntValue.errorsOrWarnings?.map { .nestedObjectError(field: "boolean_int", error: $0) },
colorValue.errorsOrWarnings?.map { .nestedObjectError(field: "color", error: $0) },
doubleValue.errorsOrWarnings?.map { .nestedObjectError(field: "double", error: $0) },
idValue.errorsOrWarnings?.map { .nestedObjectError(field: "id", error: $0) },
integerValue.errorsOrWarnings?.map { .nestedObjectError(field: "integer", error: $0) },
positiveIntegerValue.errorsOrWarnings?.map { .nestedObjectError(field: "positive_integer", error: $0) },
stringValue.errorsOrWarnings?.map { .nestedObjectError(field: "string", error: $0) },
urlValue.errorsOrWarnings?.map { .nestedObjectError(field: "url", error: $0) }
)
let result = EntityWithSimpleProperties(
boolean: booleanValue.value,
booleanInt: booleanIntValue.value,
color: colorValue.value,
double: doubleValue.value,
id: idValue.value,
integer: integerValue.value,
positiveInteger: positiveIntegerValue.value,
string: stringValue.value,
url: urlValue.value
)
return errors.isEmpty ? .success(result) : .partialSuccess(result, warnings: NonEmptyArray(errors)!)
}
private func mergedWithParent(templates: [TemplateName: Any]) throws -> EntityWithSimplePropertiesTemplate {
guard let parent = parent, parent != Self.type else { return self }
guard let parentTemplate = templates[parent] as? EntityWithSimplePropertiesTemplate else {
throw DeserializationError.unknownType(type: parent)
}
let mergedParent = try parentTemplate.mergedWithParent(templates: templates)
return EntityWithSimplePropertiesTemplate(
parent: nil,
boolean: boolean ?? mergedParent.boolean,
booleanInt: booleanInt ?? mergedParent.booleanInt,
color: color ?? mergedParent.color,
double: double ?? mergedParent.double,
id: id ?? mergedParent.id,
integer: integer ?? mergedParent.integer,
positiveInteger: positiveInteger ?? mergedParent.positiveInteger,
string: string ?? mergedParent.string,
url: url ?? mergedParent.url
)
}
public func resolveParent(templates: [TemplateName: Any]) throws -> EntityWithSimplePropertiesTemplate {
return try mergedWithParent(templates: templates)
}
}