/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.binding.data.codec.gen.impl; import org.opendaylight.yangtools.binding.data.codec.util.AugmentableDispatchSerializer; import org.opendaylight.yangtools.binding.data.codec.util.ChoiceDispatchSerializer; import org.opendaylight.yangtools.sal.binding.generator.util.JavassistUtils; import org.opendaylight.yangtools.sal.binding.model.api.GeneratedType; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.DataObjectSerializerImplementation; import org.opendaylight.yangtools.yang.model.api.AugmentationSchema; import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode; import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode; import org.opendaylight.yangtools.yang.model.api.DataNodeContainer; import org.opendaylight.yangtools.yang.model.api.ListSchemaNode; /** * Concrete implementation of {@link AbstractStreamWriterGenerator} * which in runtime generates classes implementing {@link DataObjectSerializerImplementation} * interface and are used to serialize Binding {@link DataObject}. * * Actual implementation of codecs is done via static methods, which allows * for static wiring of codecs. Choice codec and Augmentable codecs * are static properties of parent codec and stateless implementations * are used ( {@link ChoiceDispatchSerializer}, {@link AugmentableDispatchSerializer}, * which uses registry to dispatch to concrete item codec. * */ public class StreamWriterGenerator extends AbstractStreamWriterGenerator { private StreamWriterGenerator(final JavassistUtils utils, final Void ignore) { super(utils); } /** * Deprecated, use {@link #create(JavassistUtils)} instead. * @param utils */ @Deprecated public StreamWriterGenerator(final JavassistUtils utils) { this(utils, null); } /** * Create a new instance backed by a specific {@link JavassistUtils} instance. * * @param utils JavassistUtils instance to use * @return A new generator */ public static DataObjectSerializerGenerator create(final JavassistUtils utils) { return new StreamWriterGenerator(utils, null); } private static CharSequence getChildSizeFromSchema(final DataNodeContainer node) { return Integer.toString(node.getChildNodes().size()); } @Override protected DataObjectSerializerSource generateContainerSerializer(final GeneratedType type, final ContainerSchemaNode node) { return new DataNodeContainerSerializerSource(this, type, node) { @Override public CharSequence emitStartEvent() { return startContainerNode(classReference(type), getChildSizeFromSchema(node)); } }; } @Override protected DataObjectSerializerSource generateCaseSerializer(final GeneratedType type, final ChoiceCaseNode node) { return new AugmentableDataNodeContainerEmmiterSource(this, type, node) { @Override public CharSequence emitStartEvent() { return startCaseNode(classReference(type),getChildSizeFromSchema(node)); } }; } @Override protected DataObjectSerializerSource generateUnkeyedListEntrySerializer(final GeneratedType type, final ListSchemaNode node) { return new AugmentableDataNodeContainerEmmiterSource(this, type, node) { @Override public CharSequence emitStartEvent() { return startUnkeyedListItem(getChildSizeFromSchema(schemaNode)); } }; } @Override protected DataObjectSerializerSource generateSerializer(final GeneratedType type, final AugmentationSchema schema) { return new DataNodeContainerSerializerSource(this, type, schema) { @Override public CharSequence emitStartEvent() { return startAugmentationNode(classReference(type)); } }; } @Override protected DataObjectSerializerSource generateMapEntrySerializer(final GeneratedType type, final ListSchemaNode node) { return new AugmentableDataNodeContainerEmmiterSource(this, type, node) { @Override public CharSequence emitStartEvent() { return startMapEntryNode(invoke(INPUT, "getKey"), getChildSizeFromSchema(node)); } }; } }