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

io.r2dbc.postgresql.client.ConnectionContext Maven / Gradle / Ivy

There is a newer version: 0.8.13.RELEASE
Show newest version
/*
 * Copyright 2019 the original author or authors.
 *
 * 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
 *
 *      https://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 io.r2dbc.postgresql.client;

import reactor.util.Logger;
import reactor.util.Loggers;

import javax.annotation.Nullable;
import java.util.concurrent.atomic.AtomicLong;

/**
 * Value object capturing diagnostic connection context. Allows for log-message post-processing with {@link #getMessage(String) if the logger category for
 * {@code ConnectionContext} is enabled for DEBUG/TRACE logs.
 * 

* Captures also the Postgres process Id. * * @since 0.8.6 */ public final class ConnectionContext { private final static Logger LOGGER = Loggers.getLogger(ConnectionContext.class.getName() + ".context"); private final static boolean CONTEXT_ENABLED = LOGGER.isDebugEnabled(); private final static boolean CHANNEL_ID_ENABLED = LOGGER.isTraceEnabled(); private static final AtomicLong CONN_ID = new AtomicLong(); @Nullable private final Integer processId; @Nullable private final String channelId; private final String connectionCounter; private final String connectionIdPrefix; /** * Create a new {@link ConnectionContext} with a unique connection Id. */ public ConnectionContext() { this.processId = null; this.connectionCounter = incrementConnectionCounter(); this.connectionIdPrefix = getConnectionIdPrefix(); this.channelId = null; } private ConnectionContext(@Nullable Integer processId, @Nullable String channelId, String connectionCounter) { this.processId = processId; this.channelId = channelId; this.connectionCounter = connectionCounter; this.connectionIdPrefix = getConnectionIdPrefix(); } private String incrementConnectionCounter() { return Long.toHexString(CONN_ID.incrementAndGet()); } private String getConnectionIdPrefix() { String prefix = String.format("[cid: 0x%s]", this.connectionCounter); if (this.processId != null) { prefix += String.format("[pid: %d]", this.processId); } if (CHANNEL_ID_ENABLED && this.channelId != null) { prefix += String.format("%s", this.channelId); } return prefix + " "; } /** * Process the {@code original} message to inject potentially debug information such as the channel Id or the process Id. * * @param original the original message * @return the post-processed log message */ public String getMessage(String original) { if (CONTEXT_ENABLED) { return this.connectionIdPrefix + original; } return original; } /** * Create a new {@link ConnectionContext} by associating the {@code channelId}. * * @param channelId the channel identifier. * @return a new {@link ConnectionContext} with all previously set values and the associated {@code channelId}. */ public ConnectionContext withChannelId(String channelId) { return new ConnectionContext(this.processId, channelId, this.connectionCounter); } /** * Create a new {@link ConnectionContext} by associating the {@code processId}. * * @param processId the Postgres processId. * @return a new {@link ConnectionContext} with all previously set values and the associated {@code processId}. */ public ConnectionContext withProcessId(int processId) { return new ConnectionContext(processId, this.channelId, this.connectionCounter); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy