Package com.foundationdb.sql.pg

Source Code of com.foundationdb.sql.pg.PostgresDMLStatement

/**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package com.foundationdb.sql.pg;

import java.io.IOException;
import java.util.List;

import com.foundationdb.ais.model.Column;
import com.foundationdb.qp.row.Row;
import com.foundationdb.qp.rowtype.RowType;

/**
* An ordinary SQL statement.
*/
public abstract class PostgresDMLStatement extends PostgresBaseStatement
{
    private RowType resultRowType;
    private List<String> columnNames;
    private List<PostgresType> columnTypes;
    private List<Column> aisColumns;
    private PostgresType[] parameterTypes;

    protected PostgresDMLStatement() {
    }

    protected void init(PostgresType[] parameterTypes) {
        this.parameterTypes = parameterTypes;
    }

    protected void init(RowType resultsRowType,
                        List<String> columnNames,
                        List<PostgresType> columnTypes,
                        List<Column> aisColumns,
                        PostgresType[] parameterTypes) {
        this.resultRowType = resultsRowType;
        this.columnNames = columnNames;
        this.columnTypes = columnTypes;
        this.aisColumns = aisColumns;
        this.parameterTypes = parameterTypes;
    }

    public List<String> getColumnNames() {
        return columnNames;
    }

    public List<PostgresType> getColumnTypes() {
        return columnTypes;
    }

    public RowType getResultRowType() {
        return resultRowType;
    }
    @Override
    public PostgresType[] getParameterTypes() {
        return parameterTypes;
    }

    @Override
    public void sendDescription(PostgresQueryContext context,
                                boolean always, boolean params)
            throws IOException {
        PostgresServerSession server = context.getServer();
        PostgresMessenger messenger = server.getMessenger();
        if (params) {
            PostgresType[] parameterTypes = getParameterTypes();
            messenger.beginMessage(PostgresMessages.PARAMETER_DESCRIPTION_TYPE.code());
            if (parameterTypes == null) {
                messenger.writeShort(0);
            }
            else {
                messenger.writeShort((short)parameterTypes.length);
                for (PostgresType type : parameterTypes) {
                    messenger.writeInt(type.getOid());
                }
            }
            messenger.sendMessage();
        }
        List<PostgresType> columnTypes = getColumnTypes();
        if (columnTypes == null) {
            if (!always) return;
            messenger.beginMessage(PostgresMessages.NO_DATA_TYPE.code());
        }
        else {
            messenger.beginMessage(PostgresMessages.ROW_DESCRIPTION_TYPE.code());
            List<String> columnNames = getColumnNames();
            int ncols = columnTypes.size();
            messenger.writeShort(ncols);
            for (int i = 0; i < ncols; i++) {
                PostgresType type = columnTypes.get(i);
                Column aisColumn = aisColumns.get(i);
                messenger.writeString(columnNames.get(i)); // attname
                messenger.writeInt((aisColumn == null) ? 0 : aisColumn.getTable().getTableId());    // attrelid
                messenger.writeShort((aisColumn == null) ? 0 : aisColumn.getPosition())// attnum
                messenger.writeInt(type.getOid()); // atttypid
                messenger.writeShort(type.getLength()); // attlen
                messenger.writeInt(type.getModifier()); // atttypmod
                messenger.writeShort(context.isColumnBinary(i) ? 1 : 0);
            }
        }
        messenger.sendMessage();
    }
   
    protected PostgresOutputter<Row> getRowOutputter(PostgresQueryContext context) {
        return new PostgresRowOutputter(context, this);
    }
}
TOP

Related Classes of com.foundationdb.sql.pg.PostgresDMLStatement

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.