com.esotericsoftware.kryo.util.Util.log()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(13.7k)|赞(0)|评价(0)|浏览(177)

本文整理了Java中com.esotericsoftware.kryo.util.Util.log()方法的一些代码示例,展示了Util.log()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.log()方法的具体详情如下:
包路径:com.esotericsoftware.kryo.util.Util
类名称:Util
方法名:log

Util.log介绍

[英]Logs a message about an object. The log level and the string format of the object depend on the object type.
[中]记录有关对象的消息。对象的日志级别和字符串格式取决于对象类型。

代码示例

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. /** Writes an object using the specified serializer. The registered serializer is ignored. */
  2. public void writeObject (Output output, Object object, Serializer serializer) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. if (serializer == null) throw new IllegalArgumentException("serializer cannot be null.");
  6. beginObject();
  7. try {
  8. if (references && writeReferenceOrNull(output, object, false)) {
  9. serializer.setGenerics(this, null);
  10. return;
  11. }
  12. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  13. serializer.write(this, output, object);
  14. } finally {
  15. if (--depth == 0 && autoReset) reset();
  16. }
  17. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. /** Writes an object using the specified serializer. The registered serializer is ignored. */
  2. public void writeObject (Output output, Object object, Serializer serializer) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. if (serializer == null) throw new IllegalArgumentException("serializer cannot be null.");
  6. beginObject();
  7. try {
  8. if (references && writeReferenceOrNull(output, object, false)) {
  9. serializer.setGenerics(this, null);
  10. return;
  11. }
  12. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  13. serializer.write(this, output, object);
  14. } finally {
  15. if (--depth == 0 && autoReset) reset();
  16. }
  17. }

代码示例来源:origin: com.esotericsoftware/kryo-shaded

  1. /** Writes an object using the specified serializer. The registered serializer is ignored. */
  2. public void writeObject (Output output, Object object, Serializer serializer) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. if (serializer == null) throw new IllegalArgumentException("serializer cannot be null.");
  6. beginObject();
  7. try {
  8. if (references && writeReferenceOrNull(output, object, false)) {
  9. serializer.setGenerics(this, null);
  10. return;
  11. }
  12. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  13. serializer.write(this, output, object);
  14. } finally {
  15. if (--depth == 0 && autoReset) reset();
  16. }
  17. }

代码示例来源:origin: svn2github/kryo

  1. /** Writes an object using the specified serializer. The registered serializer is ignored. */
  2. public void writeObject (Output output, Object object, Serializer serializer) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. if (serializer == null) throw new IllegalArgumentException("serializer cannot be null.");
  6. beginObject();
  7. try {
  8. if (references && writeReferenceOrNull(output, object, false)) {
  9. serializer.setGenerics(this, null);
  10. return;
  11. }
  12. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  13. serializer.write(this, output, object);
  14. } finally {
  15. if (--depth == 0 && autoReset) reset();
  16. }
  17. }

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. /** Reads an object using the specified serializer. The registered serializer is ignored. */
  2. public <T> T readObject (Input input, Class<T> type, Serializer serializer) {
  3. if (input == null) throw new IllegalArgumentException("input cannot be null.");
  4. if (type == null) throw new IllegalArgumentException("type cannot be null.");
  5. if (serializer == null) throw new IllegalArgumentException("serializer cannot be null.");
  6. beginObject();
  7. try {
  8. T object;
  9. if (references) {
  10. int stackSize = readReferenceOrNull(input, type, false);
  11. if (stackSize == REF) return (T)readObject;
  12. object = (T)serializer.read(this, input, type);
  13. if (stackSize == readReferenceIds.size) reference(object);
  14. } else
  15. object = (T)serializer.read(this, input, type);
  16. if (TRACE || (DEBUG && depth == 1)) log("Read", object);
  17. return object;
  18. } finally {
  19. if (--depth == 0 && autoReset) reset();
  20. }
  21. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. /** Writes an object using the registered serializer. */
  2. public void writeObject (Output output, Object object) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. beginObject();
  6. try {
  7. if (references && writeReferenceOrNull(output, object, false)) {
  8. getRegistration(object.getClass()).getSerializer().setGenerics(this, null);
  9. return;
  10. }
  11. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  12. getRegistration(object.getClass()).getSerializer().write(this, output, object);
  13. } finally {
  14. if (--depth == 0 && autoReset) reset();
  15. }
  16. }

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. /** Writes an object using the registered serializer. */
  2. public void writeObject (Output output, Object object) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. beginObject();
  6. try {
  7. if (references && writeReferenceOrNull(output, object, false)) {
  8. getRegistration(object.getClass()).getSerializer().setGenerics(this, null);
  9. return;
  10. }
  11. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  12. getRegistration(object.getClass()).getSerializer().write(this, output, object);
  13. } finally {
  14. if (--depth == 0 && autoReset) reset();
  15. }
  16. }

代码示例来源:origin: svn2github/kryo

  1. /** Writes an object using the registered serializer. */
  2. public void writeObject (Output output, Object object) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. beginObject();
  6. try {
  7. if (references && writeReferenceOrNull(output, object, false)) {
  8. getRegistration(object.getClass()).getSerializer().setGenerics(this, null);
  9. return;
  10. }
  11. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  12. getRegistration(object.getClass()).getSerializer().write(this, output, object);
  13. } finally {
  14. if (--depth == 0 && autoReset) reset();
  15. }
  16. }

代码示例来源:origin: com.esotericsoftware/kryo-shaded

  1. /** Writes an object using the registered serializer. */
  2. public void writeObject (Output output, Object object) {
  3. if (output == null) throw new IllegalArgumentException("output cannot be null.");
  4. if (object == null) throw new IllegalArgumentException("object cannot be null.");
  5. beginObject();
  6. try {
  7. if (references && writeReferenceOrNull(output, object, false)) {
  8. getRegistration(object.getClass()).getSerializer().setGenerics(this, null);
  9. return;
  10. }
  11. if (TRACE || (DEBUG && depth == 1)) log("Write", object);
  12. getRegistration(object.getClass()).getSerializer().write(this, output, object);
  13. } finally {
  14. if (--depth == 0 && autoReset) reset();
  15. }
  16. }

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. /** Reads an object using the registered serializer. */
  2. public <T> T readObject (Input input, Class<T> type) {
  3. if (input == null) throw new IllegalArgumentException("input cannot be null.");
  4. if (type == null) throw new IllegalArgumentException("type cannot be null.");
  5. beginObject();
  6. try {
  7. T object;
  8. if (references) {
  9. int stackSize = readReferenceOrNull(input, type, false);
  10. if (stackSize == REF) return (T)readObject;
  11. object = (T)getRegistration(type).getSerializer().read(this, input, type);
  12. if (stackSize == readReferenceIds.size) reference(object);
  13. } else
  14. object = (T)getRegistration(type).getSerializer().read(this, input, type);
  15. if (TRACE || (DEBUG && depth == 1)) log("Read", object);
  16. return object;
  17. } finally {
  18. if (--depth == 0 && autoReset) reset();
  19. }
  20. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. /** Reads an object using the registered serializer. */
  2. public <T> T readObject (Input input, Class<T> type) {
  3. if (input == null) throw new IllegalArgumentException("input cannot be null.");
  4. if (type == null) throw new IllegalArgumentException("type cannot be null.");
  5. beginObject();
  6. try {
  7. T object;
  8. if (references) {
  9. int stackSize = readReferenceOrNull(input, type, false);
  10. if (stackSize == REF) return (T)readObject;
  11. object = (T)getRegistration(type).getSerializer().read(this, input, type);
  12. if (stackSize == readReferenceIds.size) reference(object);
  13. } else
  14. object = (T)getRegistration(type).getSerializer().read(this, input, type);
  15. if (TRACE || (DEBUG && depth == 1)) log("Read", object);
  16. return object;
  17. } finally {
  18. if (--depth == 0 && autoReset) reset();
  19. }
  20. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. public Registration readClass (Input input) {
  2. int classID = input.readVarInt(true);
  3. switch (classID) {
  4. case Kryo.NULL:
  5. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Read", null);
  6. return null;
  7. case NAME + 2: // Offset for NAME and NULL.
  8. return readName(input);
  9. }
  10. if (classID == memoizedClassId) return memoizedClassIdValue;
  11. Registration registration = idToRegistration.get(classID - 2);
  12. if (registration == null) throw new KryoException("Encountered unregistered class ID: " + (classID - 2));
  13. if (TRACE) trace("kryo", "Read class " + (classID - 2) + ": " + className(registration.getType()));
  14. memoizedClassId = classID;
  15. memoizedClassIdValue = registration;
  16. return registration;
  17. }

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. public Registration readClass (Input input) {
  2. int classID = input.readVarInt(true);
  3. switch (classID) {
  4. case Kryo.NULL:
  5. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Read", null);
  6. return null;
  7. case NAME + 2: // Offset for NAME and NULL.
  8. return readName(input);
  9. }
  10. if (classID == memoizedClassId) return memoizedClassIdValue;
  11. Registration registration = idToRegistration.get(classID - 2);
  12. if (registration == null) throw new KryoException("Encountered unregistered class ID: " + (classID - 2));
  13. if (TRACE) trace("kryo", "Read class " + (classID - 2) + ": " + className(registration.getType()));
  14. memoizedClassId = classID;
  15. memoizedClassIdValue = registration;
  16. return registration;
  17. }

代码示例来源:origin: com.esotericsoftware/kryo-shaded

  1. public Registration readClass (Input input) {
  2. int classID = input.readVarInt(true);
  3. switch (classID) {
  4. case Kryo.NULL:
  5. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Read", null);
  6. return null;
  7. case NAME + 2: // Offset for NAME and NULL.
  8. return readName(input);
  9. }
  10. if (classID == memoizedClassId) return memoizedClassIdValue;
  11. Registration registration = idToRegistration.get(classID - 2);
  12. if (registration == null) throw new KryoException("Encountered unregistered class ID: " + (classID - 2));
  13. if (TRACE) trace("kryo", "Read class " + (classID - 2) + ": " + className(registration.getType()));
  14. memoizedClassId = classID;
  15. memoizedClassIdValue = registration;
  16. return registration;
  17. }

代码示例来源:origin: svn2github/kryo

  1. public Registration readClass (Input input) {
  2. int classID = input.readVarInt(true);
  3. switch (classID) {
  4. case Kryo.NULL:
  5. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Read", null);
  6. return null;
  7. case NAME + 2: // Offset for NAME and NULL.
  8. return readName(input);
  9. }
  10. if (classID == memoizedClassId) return memoizedClassIdValue;
  11. Registration registration = idToRegistration.get(classID - 2);
  12. if (registration == null) throw new KryoException("Encountered unregistered class ID: " + (classID - 2));
  13. if (TRACE) trace("kryo", "Read class " + (classID - 2) + ": " + className(registration.getType()));
  14. memoizedClassId = classID;
  15. memoizedClassIdValue = registration;
  16. return registration;
  17. }

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. public Registration writeClass (Output output, Class type) {
  2. if (type == null) {
  3. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Write", null);
  4. output.writeVarInt(Kryo.NULL, true);
  5. return null;
  6. }
  7. Registration registration = kryo.getRegistration(type);
  8. if (registration.getId() == NAME)
  9. writeName(output, type, registration);
  10. else {
  11. if (TRACE) trace("kryo", "Write class " + registration.getId() + ": " + className(type));
  12. output.writeVarInt(registration.getId() + 2, true);
  13. }
  14. return registration;
  15. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. public Registration writeClass (Output output, Class type) {
  2. if (type == null) {
  3. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Write", null);
  4. output.writeVarInt(Kryo.NULL, true);
  5. return null;
  6. }
  7. Registration registration = kryo.getRegistration(type);
  8. if (registration.getId() == NAME)
  9. writeName(output, type, registration);
  10. else {
  11. if (TRACE) trace("kryo", "Write class " + registration.getId() + ": " + className(type));
  12. output.writeVarInt(registration.getId() + 2, true);
  13. }
  14. return registration;
  15. }

代码示例来源:origin: com.esotericsoftware/kryo-shaded

  1. public Registration writeClass (Output output, Class type) {
  2. if (type == null) {
  3. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Write", null);
  4. output.writeVarInt(Kryo.NULL, true);
  5. return null;
  6. }
  7. Registration registration = kryo.getRegistration(type);
  8. if (registration.getId() == NAME)
  9. writeName(output, type, registration);
  10. else {
  11. if (TRACE) trace("kryo", "Write class " + registration.getId() + ": " + className(type));
  12. output.writeVarInt(registration.getId() + 2, true);
  13. }
  14. return registration;
  15. }

代码示例来源:origin: svn2github/kryo

  1. public Registration writeClass (Output output, Class type) {
  2. if (type == null) {
  3. if (TRACE || (DEBUG && kryo.getDepth() == 1)) log("Write", null);
  4. output.writeVarInt(Kryo.NULL, true);
  5. return null;
  6. }
  7. Registration registration = kryo.getRegistration(type);
  8. if (registration.getId() == NAME)
  9. writeName(output, type, registration);
  10. else {
  11. if (TRACE) trace("kryo", "Write class " + registration.getId() + ": " + className(type));
  12. output.writeVarInt(registration.getId() + 2, true);
  13. }
  14. return registration;
  15. }

代码示例来源:origin: hank-whu/turbo-rpc

  1. public Registration writeClass(Output output, Class type) {
  2. if (type == null) {
  3. if (TRACE || (DEBUG && kryo.getDepth() == 1))
  4. log("Write", null);
  5. output.writeVarInt(Kryo.NULL, true);
  6. return null;
  7. }
  8. Registration registration = kryo.getRegistration(type);
  9. if (registration.getId() == NAME)
  10. writeName(output, type, registration);
  11. else {
  12. if (TRACE)
  13. trace("kryo", "Write class " + registration.getId() + ": " + className(type));
  14. output.writeVarInt(registration.getId() + 2, true);
  15. }
  16. return registration;
  17. }

相关文章