com.spotify.folsom.FakeRawMemcacheClient.java Source code

Java tutorial

Introduction

Here is the source code for com.spotify.folsom.FakeRawMemcacheClient.java

Source

/*
 * Copyright (c) 2014-2015 Spotify AB
 *
 * 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.spotify.folsom;

import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.spotify.folsom.client.GetRequest;
import com.spotify.folsom.client.MultiRequest;
import com.spotify.folsom.client.NoopMetrics;
import com.spotify.folsom.client.Request;
import com.spotify.folsom.client.SetRequest;
import com.spotify.folsom.client.ascii.DeleteRequest;
import com.spotify.folsom.client.ascii.IncrRequest;
import com.spotify.folsom.client.ascii.TouchRequest;

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

public class FakeRawMemcacheClient extends AbstractRawMemcacheClient {

    private boolean connected = true;
    private final Map<ByteBuffer, byte[]> map = Maps.newHashMap();
    private int outstanding = 0;

    public FakeRawMemcacheClient() {
        this(new NoopMetrics());
    }

    public FakeRawMemcacheClient(Metrics metrics) {
        metrics.registerOutstandingRequestsGauge(new Metrics.OutstandingRequestsGauge() {
            @Override
            public int getOutstandingRequests() {
                return outstanding;
            }
        });
    }

    @Override
    public <T> ListenableFuture<T> send(Request<T> request) {
        if (!connected) {
            return Futures.immediateFailedFuture(new MemcacheClosedException("Disconnected"));
        }

        if (request instanceof SetRequest) {
            map.put(ByteBuffer.wrap(request.getKey()), ((SetRequest) request).getValue());
            return (ListenableFuture<T>) Futures.<MemcacheStatus>immediateFuture(MemcacheStatus.OK);
        }

        if (request instanceof GetRequest) {
            byte[] value = map.get(ByteBuffer.wrap(request.getKey()));
            if (value == null) {
                return (ListenableFuture<T>) Futures.immediateFuture(null);
            }
            return (ListenableFuture<T>) Futures.immediateFuture(GetResult.success(value, 0L));
        }

        if (request instanceof MultiRequest) {
            List<GetResult<byte[]>> result = Lists.newArrayList();
            MultiRequest<?> multiRequest = (MultiRequest<?>) request;
            for (byte[] key : multiRequest.getKeys()) {
                byte[] value = map.get(ByteBuffer.wrap(key));
                if (value != null) {
                    result.add(GetResult.success(value, 0));
                } else {
                    result.add(null);
                }
            }
            return (ListenableFuture<T>) Futures.<List<GetResult<byte[]>>>immediateFuture(result);
        }

        // Don't actually do anything here
        if (request instanceof TouchRequest) {
            return (ListenableFuture<T>) Futures.<MemcacheStatus>immediateFuture(MemcacheStatus.OK);
        }

        if (request instanceof IncrRequest) {
            IncrRequest incrRequest = (IncrRequest) request;
            byte[] key = request.getKey();
            byte[] value = map.get(ByteBuffer.wrap(key));
            if (value == null) {
                return (ListenableFuture<T>) Futures.<Long>immediateFuture(null);
            }
            long longValue = Long.parseLong(new String(value));
            long newValue = longValue + incrRequest.multiplier() * incrRequest.getBy();
            map.put(ByteBuffer.wrap(key), Long.toString(newValue).getBytes());
            return (ListenableFuture<T>) Futures.<Long>immediateFuture(newValue);
        }

        if (request instanceof DeleteRequest) {
            map.remove(ByteBuffer.wrap(request.getKey()));
            return (ListenableFuture<T>) Futures.<MemcacheStatus>immediateFuture(MemcacheStatus.OK);
        }

        throw new RuntimeException("Unsupported operation: " + request.getClass());
    }

    @Override
    public void shutdown() {
        connected = false;
        notifyConnectionChange();
    }

    @Override
    public boolean isConnected() {
        return connected;
    }

    @Override
    public int numTotalConnections() {
        return 1;
    }

    @Override
    public int numActiveConnections() {
        return connected ? 1 : 0;
    }

    public Map<ByteBuffer, byte[]> getMap() {
        return map;
    }

    public void setOutstandingRequests(int outstanding) {
        this.outstanding = outstanding;
    }
}