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

com.basho.riak.client.api.commands.indexes.BigIntIndexQuery Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
/*
 * Copyright 2014 Brian Roach .
 *
 * Licensed 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.basho.riak.client.api.commands.indexes;

import com.basho.riak.client.core.RiakCluster;
import com.basho.riak.client.core.RiakFuture;
import com.basho.riak.client.core.operations.SecondaryIndexQueryOperation;
import com.basho.riak.client.api.commands.CoreFutureAdapter;
import com.basho.riak.client.core.query.Location;
import com.basho.riak.client.core.query.Namespace;
import com.basho.riak.client.core.util.BinaryValue;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author Brian Roach 
 */
public class BigIntIndexQuery extends SecondaryIndexQuery
{
    private final IndexConverter converter;

    @Override
    protected IndexConverter getConverter()
    {
        return converter;
    }
    
    protected BigIntIndexQuery(Init builder)
    {
        super(builder);
        this.converter = new IndexConverter()
        {
            @Override
            public BigInteger convert(BinaryValue input)
            {
                // Riak. US_ASCII string instead of integer
                return new BigInteger(input.toStringUtf8());
            }

            @Override
            public BinaryValue convert(BigInteger input)
            {
                return BinaryValue.createFromUtf8(input.toString());
            }
        };
    }
    
    @Override
    protected RiakFuture executeAsync(RiakCluster cluster)
    {
        RiakFuture coreFuture =
            executeCoreAsync(cluster);
        
        BigIntQueryFuture future = new BigIntQueryFuture(coreFuture);
        coreFuture.addListener(future);
        return future;
            
    }
    
    protected final class BigIntQueryFuture extends CoreFutureAdapter
    {
        public BigIntQueryFuture(RiakFuture coreFuture)
        {
            super(coreFuture);
        }

        @Override
        protected Response convertResponse(SecondaryIndexQueryOperation.Response coreResponse)
        {
            return new Response(namespace, coreResponse, converter);
        }

        @Override
        protected BigIntIndexQuery convertQueryInfo(SecondaryIndexQueryOperation.Query coreQueryInfo)
        {
            return BigIntIndexQuery.this;
        }
    }
    
    protected static abstract class Init> extends SecondaryIndexQuery.Init
    {

        public Init(Namespace namespace, String indexName, S start, S end)
        {
            super(namespace, indexName + Type._INT, start, end);
        }

        public Init(Namespace namespace, String indexName, S match)
        {
            super(namespace, indexName + Type._INT, match);
        }
        
        @Override
        public T withRegexTermFilter(String filter)
        {
            throw new IllegalArgumentException("Cannot use term filter with _int query");
        }
    }
    
    public static class Builder extends Init
    {

        public Builder(Namespace namespace, String indexName, BigInteger start, BigInteger end)
        {
            super(namespace, indexName, start, end);
        }

        public Builder(Namespace namespace, String indexName, BigInteger match)
        {
            super(namespace, indexName, match);
        }

        @Override
        protected Builder self()
        {
            return this;
        }

        public BigIntIndexQuery build()
        {
            return new BigIntIndexQuery(this);
        }
    }
    
    public static class Response extends SecondaryIndexQuery.Response
    {
        protected Response(Namespace queryLocation, SecondaryIndexQueryOperation.Response coreResponse, IndexConverter converter)
        {
            super(queryLocation, coreResponse, converter);
        }
        
        @Override
        public List getEntries()
        {
            List convertedList = new ArrayList();
            for (SecondaryIndexQueryOperation.Response.Entry e : coreResponse.getEntryList())
            {
                Location loc = getLocationFromCoreEntry(e);
                Entry ce = new Entry(loc, e.getIndexKey(), converter);
                convertedList.add(ce);
            }
            return convertedList;
        }

        public class Entry extends SecondaryIndexQuery.Response.Entry
        {
            protected Entry(Location riakObjectLocation, BinaryValue indexKey, IndexConverter converter)
            {
                super(riakObjectLocation, indexKey, converter);
            }

        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy