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

io.vertx.servicediscovery.backend.redis.RedisBackendService Maven / Gradle / Ivy

/*
 * Copyright (c) 2011-2016 The original author or authors
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 *      The Eclipse Public License is available at
 *      http://www.eclipse.org/legal/epl-v10.html
 *
 *      The Apache License v2.0 is available at
 *      http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */

package io.vertx.servicediscovery.backend.redis;

import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.json.JsonObject;
import io.vertx.redis.client.*;
import io.vertx.servicediscovery.Record;
import io.vertx.servicediscovery.spi.ServiceDiscoveryBackend;

import java.util.List;
import java.util.Objects;
import java.util.UUID;
import java.util.stream.Collectors;

import static io.vertx.redis.client.Request.cmd;
import static io.vertx.redis.client.Command.*;

/**
 * An implementation of the discovery backend based on Redis.
 *
 * @author Clement Escoffier
 */
public class RedisBackendService implements ServiceDiscoveryBackend {

  private Redis redis;
  private String key;

  @Override
  public void init(Vertx vertx, JsonObject configuration) {
    key = configuration.getString("key", "records");
    redis = Redis.createClient(vertx, new RedisOptions(configuration));
  }

  @Override
  public void store(Record record, Handler> resultHandler) {
    if (record.getRegistration() != null) {
      resultHandler.handle(Future.failedFuture("The record has already been registered"));
      return;
    }
    String uuid = UUID.randomUUID().toString();
    record.setRegistration(uuid);

    redis.send(cmd(HSET).arg(key).arg(uuid).arg(record.toJson().encode())).onComplete(ar -> {
      if (ar.succeeded()) {
        resultHandler.handle(Future.succeededFuture(record));
      } else {
        resultHandler.handle(Future.failedFuture(ar.cause()));
      }
    });
  }

  @Override
  public void remove(Record record, Handler> resultHandler) {
    Objects.requireNonNull(record.getRegistration(), "No registration id in the record");
    remove(record.getRegistration(), resultHandler);
  }

  @Override
  public void remove(String uuid, Handler> resultHandler) {
    Objects.requireNonNull(uuid, "No registration id in the record");

    redis.send(cmd(HGET).arg(key).arg(uuid)).onComplete(ar -> {
      if (ar.succeeded()) {
        if (ar.result() != null) {
          redis.send(cmd(HDEL).arg(key).arg(uuid)).onComplete(deletion -> {
            if (deletion.succeeded()) {
              resultHandler.handle(Future.succeededFuture(new Record(new JsonObject(ar.result().toBuffer()))));
            } else {
              resultHandler.handle(Future.failedFuture(deletion.cause()));
            }
          });
        } else {
          resultHandler.handle(Future.failedFuture("Record '" + uuid + "' not found"));
        }
      } else {
        resultHandler.handle(Future.failedFuture(ar.cause()));
      }
    });
  }

  @Override
  public void update(Record record, Handler> resultHandler) {
    Objects.requireNonNull(record.getRegistration(), "No registration id in the record");
    redis.send(cmd(HSET).arg(key).arg(record.getRegistration()).arg(record.toJson().encode())).onComplete(ar -> {
      if (ar.succeeded()) {
        resultHandler.handle(Future.succeededFuture());
      } else {
        resultHandler.handle(Future.failedFuture(ar.cause()));
      }
    });
  }

  @Override
  public void getRecords(Handler>> resultHandler) {
    redis.send(cmd(HGETALL).arg(key)).onComplete(ar -> {
      if (ar.succeeded()) {
        Response entries = ar.result();
        resultHandler.handle(Future.succeededFuture(entries.getKeys().stream()
          .map(key -> new Record(new JsonObject(entries.get(key).toBuffer())))
          .collect(Collectors.toList())));
      } else {
        resultHandler.handle(Future.failedFuture(ar.cause()));
      }
    });
  }

  @Override
  public void getRecord(String uuid, Handler> resultHandler) {
    redis.send(cmd(HGET).arg(key).arg(uuid)).onComplete(ar -> {
      if (ar.succeeded()) {
        if (ar.result() != null) {
          resultHandler.handle(Future.succeededFuture(new Record(new JsonObject(ar.result().toBuffer()))));
        } else {
          resultHandler.handle(Future.succeededFuture(null));
        }
      } else {
        resultHandler.handle(Future.failedFuture(ar.cause()));
      }
    });
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy