Package com.nearinfinity.honeycomb.mysql

Source Code of com.nearinfinity.honeycomb.mysql.QueryKey

/*
* 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.
*
* Copyright 2013 Near Infinity Corporation.
*/


package com.nearinfinity.honeycomb.mysql;

import static com.google.common.base.Preconditions.checkNotNull;
import static java.lang.String.format;

import java.nio.ByteBuffer;
import java.util.Map;

import org.apache.avro.io.DatumReader;
import org.apache.avro.io.DatumWriter;
import org.apache.avro.specific.SpecificDatumReader;
import org.apache.avro.specific.SpecificDatumWriter;

import com.google.common.base.Objects;
import com.nearinfinity.honeycomb.mysql.gen.AvroQueryKey;
import com.nearinfinity.honeycomb.mysql.gen.QueryType;
import com.nearinfinity.honeycomb.util.Verify;

/**
* Represents the information required to execute a {@link QueryType} for an index
* Internal application type used to wrap the serialized {@link AvroQueryKey} type
*/
public class QueryKey {
    private static final DatumWriter<AvroQueryKey> writer =
            new SpecificDatumWriter<AvroQueryKey>(AvroQueryKey.class);
    private static final DatumReader<AvroQueryKey> reader =
            new SpecificDatumReader<AvroQueryKey>(AvroQueryKey.class);
    private final AvroQueryKey avroQueryKey;

    public QueryKey(String indexName, QueryType queryType, Map<String, ByteBuffer> fields) {
        checkNotNull(fields);
        checkNotNull(queryType);
        Verify.isNotNullOrEmpty(indexName);

        avroQueryKey = new AvroQueryKey(indexName, queryType, fields);
    }

    private QueryKey(AvroQueryKey AvroQueryKey) {
        avroQueryKey = AvroQueryKey;
    }

    public static QueryKey deserialize(byte[] serializedIndexKey) {
        checkNotNull(serializedIndexKey);
        return new QueryKey(Util.deserializeAvroObject(serializedIndexKey, reader));
    }

    public byte[] serialize() {
        return Util.serializeAvroObject(avroQueryKey, writer);
    }

    public Map<String, ByteBuffer> getKeys() {
        return avroQueryKey.getRecords();
    }

    public String getIndexName() {
        return avroQueryKey.getIndexName();
    }

    public QueryType getQueryType() {
        return avroQueryKey.getQueryType();
    }

    @Override
    public String toString() {
        final Objects.ToStringHelper toString = Objects.toStringHelper(this.getClass());

        toString.add("Index", avroQueryKey.getIndexName())
                .add("Type", avroQueryKey.getQueryType());

        for (final Map.Entry<String, ByteBuffer> entry : getKeys().entrySet()) {
            toString.add("Key", format("%s: %s", entry.getKey(), entry.getValue()));
        }

        return toString.toString();
    }
}
TOP

Related Classes of com.nearinfinity.honeycomb.mysql.QueryKey

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.