org.apache.cassandra.db.SliceByNamesReadCommand.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.cassandra.db.SliceByNamesReadCommand.java

Source

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF 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 org.apache.cassandra.db;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.*;

import org.apache.commons.lang.StringUtils;

import org.apache.cassandra.service.ColumnParent;
import org.apache.cassandra.db.filter.QueryPath;
import org.apache.cassandra.db.filter.NamesQueryFilter;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.cassandra.config.DatabaseDescriptor;

public class SliceByNamesReadCommand extends ReadCommand {
    public final QueryPath columnParent;
    public final SortedSet<byte[]> columnNames;

    public SliceByNamesReadCommand(String table, String key, ColumnParent column_parent,
            Collection<byte[]> columnNames) {
        this(table, key, new QueryPath(column_parent), columnNames);
    }

    public SliceByNamesReadCommand(String table, String key, QueryPath path, Collection<byte[]> columnNames) {
        super(table, key, CMD_TYPE_GET_SLICE_BY_NAMES);
        this.columnParent = path;
        this.columnNames = new TreeSet<byte[]>(getComparator());
        this.columnNames.addAll(columnNames);
    }

    @Override
    public String getColumnFamilyName() {
        return columnParent.columnFamilyName;
    }

    @Override
    public ReadCommand copy() {
        ReadCommand readCommand = new SliceByNamesReadCommand(table, key, columnParent, columnNames);
        readCommand.setDigestQuery(isDigestQuery());
        return readCommand;
    }

    @Override
    public Row getRow(Table table) throws IOException {
        return table.getRow(new NamesQueryFilter(key, columnParent, columnNames));
    }

    @Override
    public String toString() {
        return "SliceByNamesReadCommand(" + "table='" + table + '\'' + ", key='" + key + '\'' + ", columnParent='"
                + columnParent + '\'' + ", columns=[" + getComparator().getString(columnNames) + "]" + ')';
    }

}

class SliceByNamesReadCommandSerializer extends ReadCommandSerializer {
    @Override
    public void serialize(ReadCommand rm, DataOutputStream dos) throws IOException {
        SliceByNamesReadCommand realRM = (SliceByNamesReadCommand) rm;
        dos.writeBoolean(realRM.isDigestQuery());
        dos.writeUTF(realRM.table);
        dos.writeUTF(realRM.key);
        realRM.columnParent.serialize(dos);
        dos.writeInt(realRM.columnNames.size());
        if (realRM.columnNames.size() > 0) {
            for (byte[] cName : realRM.columnNames) {
                ColumnSerializer.writeName(cName, dos);
            }
        }
    }

    @Override
    public ReadCommand deserialize(DataInputStream dis) throws IOException {
        boolean isDigest = dis.readBoolean();
        String table = dis.readUTF();
        String key = dis.readUTF();
        QueryPath columnParent = QueryPath.deserialize(dis);

        int size = dis.readInt();
        List<byte[]> columns = new ArrayList<byte[]>();
        for (int i = 0; i < size; ++i) {
            columns.add(ColumnSerializer.readName(dis));
        }
        SliceByNamesReadCommand rm = new SliceByNamesReadCommand(table, key, columnParent, columns);
        rm.setDigestQuery(isDigest);
        return rm;
    }
}