ImpsLog.java
上传用户:szyujian
上传日期:2016-09-20
资源大小:320k
文件大小:3k
源码类别:

android开发

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) 2007-2008 Esmertec AG.
  3.  * Copyright (C) 2007-2008 The Android Open Source Project
  4.  *
  5.  * Licensed under the Apache License, Version 2.0 (the "License");
  6.  * you may not use this file except in compliance with the License.
  7.  * You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package com.android.im.imps;
  18. import com.android.internal.util.HexDump;
  19. import java.io.ByteArrayOutputStream;
  20. import java.io.IOException;
  21. import android.util.Log;
  22. public class ImpsLog {
  23.     public static final String TAG = "IMPS";
  24.     public static final String PACKET_TAG = "IMPS/Packet";
  25.     public static final boolean DEBUG = true;
  26.     private static PrimitiveSerializer mSerialzier;
  27.     private ImpsLog() {
  28.     }
  29.     static {
  30.         // we don't really care about the namespace values in the log
  31.         mSerialzier = new XmlPrimitiveSerializer("", "");
  32.     }
  33.     public static void dumpRawPacket(byte[] bytes) {
  34.         Log.d(PACKET_TAG, HexDump.dumpHexString(bytes));
  35.     }
  36.     public static void dumpPrimitive(Primitive p) {
  37.         ByteArrayOutputStream out = new ByteArrayOutputStream();
  38.         try {
  39.             mSerialzier.serialize(p, out);
  40.         } catch (IOException e) {
  41.             Log.e(PACKET_TAG, "Bad Primitive");
  42.         } catch (SerializerException e) {
  43.             Log.e(PACKET_TAG, "Bad Primitive");
  44.         }
  45.         Log.d(PACKET_TAG, out.toString());
  46.     }
  47.     public static void log(Primitive primitive) {
  48.         if(DEBUG) {
  49.             ByteArrayOutputStream out = new ByteArrayOutputStream();
  50.             try {
  51.                 mSerialzier.serialize(primitive, out);
  52.             } catch (IOException e) {
  53.                 Log.e(TAG, e.getMessage(), e);
  54.             } catch (SerializerException e) {
  55.                 Log.e(TAG, e.getMessage(), e);
  56.             }
  57.             Log.i(TAG, out.toString());
  58.         }
  59.     }
  60.     public static void log(String info) {
  61.         if(DEBUG) {
  62.             Log.d(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info);
  63.         }
  64.     }
  65.     public static void logError(Throwable t) {
  66.         Log.e(TAG, /* DateFormat.format("kk:mm:ss", new Date()).toString() */ "", t);
  67.     }
  68.     public static void logError(String info, Throwable t) {
  69.         Log.e(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info, t);
  70.     }
  71.     public static void logError(String info) {
  72.         Log.e(TAG, /* DateFormat.format("kk:mm:ss ", new Date()) + */ info);
  73.     }
  74. }