Files
divkit/client/ios/DivKit/generated_sources/DivShapeDrawableTemplate.swift
booster 1f57803a9f Reduced stack consumption
commit_hash:2ed7ca951d0057f8ef61ba60391bd2da2b068bf8
2026-03-20 19:26:03 +03:00

163 lines
6.7 KiB
Swift

// Generated code. Do not modify.
import Foundation
import Serialization
import VGSL
public final class DivShapeDrawableTemplate: TemplateValue, Sendable {
public static let type: String = "shape_drawable"
public let parent: String?
public let color: Field<Expression<Color>>?
public let shape: Field<DivShapeTemplate>?
public let stroke: Field<DivStrokeTemplate>?
public convenience init(dictionary: [String: Any], templateToType: [TemplateName: String]) throws {
self.init(
parent: dictionary["type"] as? String,
color: dictionary.getOptionalExpressionField("color", transform: Color.color(withHexString:)),
shape: dictionary.getOptionalField("shape", templateToType: templateToType),
stroke: dictionary.getOptionalField("stroke", templateToType: templateToType)
)
}
init(
parent: String?,
color: Field<Expression<Color>>? = nil,
shape: Field<DivShapeTemplate>? = nil,
stroke: Field<DivStrokeTemplate>? = nil
) {
self.parent = parent
self.color = color
self.shape = shape
self.stroke = stroke
}
private static func resolveOnlyLinks(context: TemplatesContext, parent: DivShapeDrawableTemplate?) -> DeserializationResult<DivShapeDrawable> {
let colorValue = { parent?.color?.resolveValue(context: context, transform: Color.color(withHexString:)) ?? .noValue }()
let shapeValue = { parent?.shape?.resolveValue(context: context, useOnlyLinks: true) ?? .noValue }()
let strokeValue = { parent?.stroke?.resolveOptionalValue(context: context, useOnlyLinks: true) ?? .noValue }()
var errors = mergeErrors(
colorValue.errorsOrWarnings?.map { .nestedObjectError(field: "color", error: $0) },
shapeValue.errorsOrWarnings?.map { .nestedObjectError(field: "shape", error: $0) },
strokeValue.errorsOrWarnings?.map { .nestedObjectError(field: "stroke", error: $0) }
)
if case .noValue = colorValue {
errors.append(.requiredFieldIsMissing(field: "color"))
}
if case .noValue = shapeValue {
errors.append(.requiredFieldIsMissing(field: "shape"))
}
guard
let colorNonNil = colorValue.value,
let shapeNonNil = shapeValue.value
else {
return .failure(NonEmptyArray(errors)!)
}
let result = DivShapeDrawable(
color: { colorNonNil }(),
shape: { shapeNonNil }(),
stroke: { strokeValue.value }()
)
return errors.isEmpty ? .success(result) : .partialSuccess(result, warnings: NonEmptyArray(errors)!)
}
public static func resolveValue(context: TemplatesContext, parent: DivShapeDrawableTemplate?, useOnlyLinks: Bool) -> DeserializationResult<DivShapeDrawable> {
if useOnlyLinks {
return resolveOnlyLinks(context: context, parent: parent)
}
var colorValue: DeserializationResult<Expression<Color>> = { parent?.color?.value() ?? .noValue }()
var shapeValue: DeserializationResult<DivShape> = .noValue
var strokeValue: DeserializationResult<DivStroke> = .noValue
_ = {
// Each field is parsed in its own lambda to keep the stack size managable
// Otherwise the compiler will allocate stack for each intermediate variable
// upfront even when we don't actually visit a relevant branch
for (key, __dictValue) in context.templateData {
_ = {
if key == "color" {
colorValue = deserialize(__dictValue, transform: Color.color(withHexString:)).merged(with: colorValue)
}
}()
_ = {
if key == "shape" {
shapeValue = deserialize(__dictValue, templates: context.templates, templateToType: context.templateToType, type: DivShapeTemplate.self).merged(with: shapeValue)
}
}()
_ = {
if key == "stroke" {
strokeValue = deserialize(__dictValue, templates: context.templates, templateToType: context.templateToType, type: DivStrokeTemplate.self).merged(with: strokeValue)
}
}()
_ = {
if key == parent?.color?.link {
colorValue = colorValue.merged(with: { deserialize(__dictValue, transform: Color.color(withHexString:)) })
}
}()
_ = {
if key == parent?.shape?.link {
shapeValue = shapeValue.merged(with: { deserialize(__dictValue, templates: context.templates, templateToType: context.templateToType, type: DivShapeTemplate.self) })
}
}()
_ = {
if key == parent?.stroke?.link {
strokeValue = strokeValue.merged(with: { deserialize(__dictValue, templates: context.templates, templateToType: context.templateToType, type: DivStrokeTemplate.self) })
}
}()
}
}()
if let parent = parent {
_ = { shapeValue = shapeValue.merged(with: { parent.shape?.resolveValue(context: context, useOnlyLinks: true) }) }()
_ = { strokeValue = strokeValue.merged(with: { parent.stroke?.resolveOptionalValue(context: context, useOnlyLinks: true) }) }()
}
var errors = mergeErrors(
colorValue.errorsOrWarnings?.map { .nestedObjectError(field: "color", error: $0) },
shapeValue.errorsOrWarnings?.map { .nestedObjectError(field: "shape", error: $0) },
strokeValue.errorsOrWarnings?.map { .nestedObjectError(field: "stroke", error: $0) }
)
if case .noValue = colorValue {
errors.append(.requiredFieldIsMissing(field: "color"))
}
if case .noValue = shapeValue {
errors.append(.requiredFieldIsMissing(field: "shape"))
}
guard
let colorNonNil = colorValue.value,
let shapeNonNil = shapeValue.value
else {
return .failure(NonEmptyArray(errors)!)
}
let result = DivShapeDrawable(
color: { colorNonNil }(),
shape: { shapeNonNil }(),
stroke: { strokeValue.value }()
)
return errors.isEmpty ? .success(result) : .partialSuccess(result, warnings: NonEmptyArray(errors)!)
}
private func mergedWithParent(templates: [TemplateName: Any]) throws -> DivShapeDrawableTemplate {
guard let parent = parent, parent != Self.type else { return self }
guard let parentTemplate = templates[parent] as? DivShapeDrawableTemplate else {
throw DeserializationError.unknownType(type: parent)
}
let mergedParent = try parentTemplate.mergedWithParent(templates: templates)
return DivShapeDrawableTemplate(
parent: nil,
color: color ?? mergedParent.color,
shape: shape ?? mergedParent.shape,
stroke: stroke ?? mergedParent.stroke
)
}
public func resolveParent(templates: [TemplateName: Any]) throws -> DivShapeDrawableTemplate {
let merged = try mergedWithParent(templates: templates)
return DivShapeDrawableTemplate(
parent: nil,
color: merged.color,
shape: try merged.shape?.resolveParent(templates: templates),
stroke: merged.stroke?.tryResolveParent(templates: templates)
)
}
}