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

com.github.netty.protocol.mysql.server.ServerColumnDefinitionPacket Maven / Gradle / Ivy

/*
 * Copyright 2016 The Netty Project
 *
 * The Netty Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package com.github.netty.protocol.mysql.server;

import com.github.netty.protocol.mysql.AbstractMySqlPacket;
import com.github.netty.protocol.mysql.ColumnFlag;
import com.github.netty.protocol.mysql.ColumnType;
import com.github.netty.protocol.mysql.MysqlCharacterSet;

import java.util.Collection;
import java.util.Collections;
import java.util.EnumSet;
import java.util.Set;

/**
 *
 */
public class ServerColumnDefinitionPacket extends AbstractMySqlPacket implements ServerPacket {
    private final String catalog;
    private final String schema;
    private final String table;
    private final String orgTable;
    private final String name;
    private final String orgName;
    private final MysqlCharacterSet characterSet;
    private final long columnLength;
    private final ColumnType type;
    private final Set flags = EnumSet.noneOf(ColumnFlag.class);
    private final int decimals;

    private ServerColumnDefinitionPacket(Builder builder) {
        super(builder.sequenceId);
        this.catalog = builder.catalog;
        this.schema = builder.schema;
        this.table = builder.table;
        this.orgTable = builder.orgTable;
        this.name = builder.name;
        this.orgName = builder.orgName;
        this.characterSet = builder.characterSet;
        this.columnLength = builder.columnLength;
        this.type = builder.type;
        this.flags.addAll(builder.flags);
        this.decimals = builder.decimals;
    }

    public static Builder builder() {
        return new Builder();
    }

    @Override
    public String toString() {
        if (table.isEmpty()) {
            return super.toString() + "," + name;
        } else {
            return super.toString() + "," + table + "." + name;
        }
    }

    public String getCatalog() {
        return catalog;
    }

    public String getSchema() {
        return schema;
    }

    public String getTable() {
        return table;
    }

    public String getOrgTable() {
        return orgTable;
    }

    public String getName() {
        return name;
    }

    public String getOrgName() {
        return orgName;
    }

    public MysqlCharacterSet getCharacterSet() {
        return characterSet;
    }

    public long getColumnLength() {
        return columnLength;
    }

    public ColumnType getType() {
        return type;
    }

    public Set getFlags() {
        return flags;
    }

    public int getDecimals() {
        return decimals;
    }

    public static class Builder {
        private final Set flags = EnumSet.noneOf(ColumnFlag.class);
        private int sequenceId;
        private String catalog = "def";
        private String schema;
        private String table;
        private String orgTable;
        private String name;
        private String orgName;
        private MysqlCharacterSet characterSet = MysqlCharacterSet.DEFAULT;
        private long columnLength;
        private ColumnType type;
        private int decimals;

        public Builder sequenceId(int sequenceId) {
            this.sequenceId = sequenceId;
            return this;
        }

        public Builder catalog(String catalog) {
            this.catalog = catalog;
            return this;
        }

        public Builder schema(String schema) {
            this.schema = schema;
            return this;
        }

        public Builder table(String table) {
            this.table = table;
            return this;
        }

        public Builder orgTable(String orgTable) {
            this.orgTable = orgTable;
            return this;
        }

        public Builder name(String name) {
            this.name = name;
            return this;
        }

        public Builder orgName(String orgName) {
            this.orgName = orgName;
            return this;
        }

        public Builder characterSet(MysqlCharacterSet characterSet) {
            this.characterSet = characterSet;
            return this;
        }

        public Builder columnLength(long columnLength) {
            this.columnLength = columnLength;
            return this;
        }

        public Builder type(ColumnType type) {
            this.type = type;
            return this;
        }

        public Builder addFlags(ColumnFlag... flags) {
            Collections.addAll(this.flags, flags);
            return this;
        }

        public Builder addFlags(Collection flags) {
            flags.addAll(flags);
            return this;
        }

        public Builder decimals(int decimals) {
            this.decimals = decimals;
            return this;
        }

        public ServerColumnDefinitionPacket build() {
            return new ServerColumnDefinitionPacket(this);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy