9. [Código fuente de Redisson] Bloqueo distribuido RCountDownLatch

Tabla de contenido

1. El uso de RCountDownLatch

Dos, trySetCount () establecer el contador

Tres, cuenta regresiva () código fuente

Cuatro, esperar () código fuente


[Este artículo se basa en el análisis del código fuente de la versión redisson-3.17.6]

1. El uso de RCountDownLatch

La función de RCountDownLatch es la misma que CountDownLatch, que se usa para darse cuenta de que un subproceso debe esperar a que se completen otros subprocesos antes de ejecutarlo. En este escenario, se puede usar CountDownLatch.

@Test
public void testRCountDownLatch() {
    Config config = new Config();
    config.useSingleServer().setAddress("redis://127.0.0.1:6379");
    RedissonClient redissonClient = Redisson.create(config);
    RCountDownLatch rCountDownLatch = redissonClient.getCountDownLatch("anyCountDownLatch");
    rCountDownLatch.trySetCount(5);

    for (int i = 1; i <= 5; i++) {
        new Thread(() -> {
            System.out.println(Thread.currentThread().getName() + "离开教师...");
            rCountDownLatch.countDown();
        }, "A" + i).start();
    }

    try {
        rCountDownLatch.await();
    } catch (InterruptedException e) {
        throw new RuntimeException(e);
    }
    System.out.println("班长锁门...");
}
A1离开教师...
A2离开教师...
A4离开教师...
A3离开教师...
A5离开教师...
班长锁门...

Dos, trySetCount () establecer el contador

/**
 * 仅当先前的计数已达到零或根本未设置时才设置新的计数值。
 */
boolean trySetCount(long count);
public RFuture<Boolean> trySetCountAsync(long count) {
    return commandExecutor.evalWriteAsync(getRawName(), LongCodec.INSTANCE, RedisCommands.EVAL_BOOLEAN,
            // 往redis中写入一个String类型的数据    anyCountDownLatch:5
            "if redis.call('exists', KEYS[1]) == 0 then "
                + "redis.call('set', KEYS[1], ARGV[2]); "
                + "redis.call('publish', KEYS[2], ARGV[1]); "
                + "return 1 "
            + "else "
                + "return 0 "
            + "end",
            Arrays.asList(getRawName(), getChannelName()), CountDownLatchPubSub.NEW_COUNT_MESSAGE, count);
}

De manera similar, un dato de tipo de cadena de {clave}:{contador total} se escribe en redis.

Tres, cuenta regresiva () código fuente

Decrementar el contador del pestillo. Notifique a todos los subprocesos en espera cuando el recuento llegue a cero.

public RFuture<Void> countDownAsync() {
    return commandExecutor.evalWriteNoRetryAsync(getRawName(), LongCodec.INSTANCE, RedisCommands.EVAL_BOOLEAN,
                    // 减少redis中计数器的值
                    "local v = redis.call('decr', KEYS[1]);" +
                    // 计数器减为0后,删除对应的key        
                    "if v <= 0 then redis.call('del', KEYS[1]) end;" +
                    "if v == 0 then redis.call('publish', KEYS[2], ARGV[1]) end;",
                Arrays.<Object>asList(getRawName(), getChannelName()), CountDownLatchPubSub.ZERO_COUNT_MESSAGE);
}

Cuatro, esperar () código fuente

Espere hasta que el contador llegue a cero.

public void await() throws InterruptedException {
    // 如果计数器为0,直接返回
    if (getCount() == 0) {
        return;
    }

    // 订阅redisson_countdownlatch__channel__{anyCountDownLatch}的消息
    CompletableFuture<RedissonCountDownLatchEntry> future = subscribe();
    RedissonCountDownLatchEntry entry = commandExecutor.getInterrupted(future);
    try {
        // 不断循环判断计数器的值是否大于0,大于0说明还有线程没执行完成,在这里阻塞:LockSupport.park(this)
        while (getCount() > 0) {
            // waiting for open state
            entry.getLatch().await();
        }
    } finally {
        unsubscribe(entry);
    }
}

Supongo que te gusta

Origin blog.csdn.net/Weixiaohuai/article/details/128723924
Recomendado
Clasificación