All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.firebirdsql.gds.impl.DatabaseParameterBufferImp Maven / Gradle / Ivy

There is a newer version: 4.0.10.java7
Show newest version
/*
 * Firebird Open Source JavaEE Connector - JDBC Driver
 *
 * Distributable under LGPL license.
 * You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * LGPL License for more details.
 *
 * This file was created by members of the firebird development team.
 * All individual contributions remain the Copyright (C) of those
 * individuals.  Contributors to this file are either listed here or
 * can be obtained from a source control history command.
 *
 * All rights reserved.
 */
package org.firebirdsql.gds.impl;

import org.firebirdsql.encodings.Encoding;
import org.firebirdsql.gds.DatabaseParameterBuffer;
import org.firebirdsql.gds.ISCConstants;
import org.firebirdsql.gds.ParameterBuffer;
import org.firebirdsql.gds.ParameterTagMapping;
import org.firebirdsql.gds.impl.argument.ArgumentType;

/**
 * Implementation for DatabaseParameterBuffer.
 */
public final class DatabaseParameterBufferImp extends ParameterBufferBase implements DatabaseParameterBufferExtension {

    public DatabaseParameterBufferImp(DpbMetaData dpbMetaData, Encoding defaultEncoding) {
        super(dpbMetaData, defaultEncoding);
    }

    @Override
    public DatabaseParameterBuffer deepCopy() {
        final DatabaseParameterBufferImp copy =
                new DatabaseParameterBufferImp((DpbMetaData) getParameterBufferMetaData(), getDefaultEncoding());

        // All the Argument sub classes are immutable so to make a 'deep' copy this is all we have to do.
        copy.getArgumentsList().addAll(this.getArgumentsList());

        return copy;
    }

    @Override
    public DatabaseParameterBuffer removeExtensionParams() {
        final DatabaseParameterBuffer copy = deepCopy();

        for (int i = 0; i < DatabaseParameterBufferExtension.EXTENSION_PARAMETERS.length; i++) {
            copy.removeArgument(DatabaseParameterBufferExtension.EXTENSION_PARAMETERS[i]);
        }

        return copy;
    }

    @Override
    public ParameterTagMapping getTagMapping() {
        return ParameterTagMapping.DPB;
    }

    public enum DpbMetaData implements ParameterBufferMetaData {
        DPB_VERSION_1(ISCConstants.isc_dpb_version1, ArgumentType.TraditionalDpb),
        DPB_VERSION_2(ISCConstants.isc_dpb_version2, ArgumentType.Wide);

        private final int dpbVersion;
        private final ArgumentType argumentType;

        DpbMetaData(int dpbVersion, ArgumentType argumentType) {
            this.dpbVersion = dpbVersion;
            this.argumentType = argumentType;
        }

        @Override
        public final int getType() {
            return dpbVersion;
        }

        @Override
        public final void addPreamble(ParameterBuffer parameterBuffer) {
            // Do nothing
        }

        @Override
        public final ArgumentType getStringArgumentType(int tag) {
            return argumentType;
        }

        @Override
        public final ArgumentType getByteArrayArgumentType(int tag) {
            return argumentType;
        }

        @Override
        public final ArgumentType getIntegerArgumentType(int tag) {
            return argumentType;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy