
org.redisson.misc.LogHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* 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 org.redisson.misc;
import io.netty.buffer.ByteBuf;
import org.redisson.client.protocol.CommandData;
import org.redisson.client.protocol.RedisCommand;
import org.redisson.client.protocol.RedisCommands;
import java.lang.reflect.Array;
import java.util.Collection;
/**
* @author Philipp Marx
*/
public final class LogHelper {
private static final int MAX_COLLECTION_LOG_SIZE = Integer.valueOf(System.getProperty("redisson.maxCollectionLogSize", "10"));
private static final int MAX_STRING_LOG_SIZE = Integer.valueOf(System.getProperty("redisson.maxStringLogSize", "1000"));
// private static final int MAX_BYTEBUF_LOG_SIZE = Integer.valueOf(System.getProperty("redisson.maxByteBufLogSize", "1000"));
private LogHelper() {
}
public static String toString(RedisCommand> command, Object... params) {
if (RedisCommands.AUTH.equals(command)) {
return command + ", params: (password masked)";
}
return command + ", params: " + LogHelper.toString(params);
}
public static String toString(Object object) {
if (object == null) {
return "null";
} else if (object instanceof String) {
return toStringString((String) object);
} else if (object.getClass().isArray()) {
return toArrayString(object);
} else if (object instanceof Collection) {
return toCollectionString((Collection>) object);
} else if (object instanceof CommandData) {
CommandData, ?> cd = (CommandData, ?>) object;
if (RedisCommands.AUTH.equals(cd.getCommand())) {
return cd.getCommand() + ", params: (password masked)";
}
return cd.getCommand() + ", promise: " + cd.getPromise() + ", params: " + LogHelper.toString(cd.getParams());
} else if (object instanceof ByteBuf) {
final ByteBuf byteBuf = (ByteBuf) object;
// can't be used due to Buffer Leak error is appeared in log
// if (byteBuf.refCnt() > 0) {
// if (byteBuf.writerIndex() > MAX_BYTEBUF_LOG_SIZE) {
// return new StringBuilder(byteBuf.toString(0, MAX_BYTEBUF_LOG_SIZE, CharsetUtil.UTF_8)).append("...").toString();
// } else {
// return byteBuf.toString(0, byteBuf.writerIndex(), CharsetUtil.UTF_8);
// }
// }
return byteBuf.toString();
} else {
return String.valueOf(object);
}
}
private static String toStringString(String string) {
if (string.length() > MAX_STRING_LOG_SIZE) {
return new StringBuilder(string.substring(0, MAX_STRING_LOG_SIZE)).append("...").toString();
} else {
return string;
}
}
private static String toCollectionString(Collection> collection) {
if (collection.isEmpty()) {
return "[]";
}
StringBuilder b = new StringBuilder(collection.size() * 3);
b.append('[');
int i = 0;
for (Object object : collection) {
b.append(toString(object));
i++;
if (i == collection.size()) {
b.append(']');
break;
}
b.append(", ");
if (i == MAX_COLLECTION_LOG_SIZE) {
b.append("...]");
break;
}
}
return b.toString();
}
private static String toArrayString(Object array) {
int length = Array.getLength(array) - 1;
if (length == -1) {
return "[]";
}
StringBuilder b = new StringBuilder(length * 3);
b.append('[');
for (int i = 0;; ++i) {
b.append(toString(Array.get(array, i)));
if (i == length) {
return b.append(']').toString();
}
b.append(", ");
if (i == MAX_COLLECTION_LOG_SIZE - 1) {
return b.append("...]").toString();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy