| OLD | NEW | 
| (Empty) |  | 
 |   1 /* | 
 |   2  * This file is part of Adblock Plus <http://adblockplus.org/>, | 
 |   3  * Copyright (C) 2006-2014 Eyeo GmbH | 
 |   4  * | 
 |   5  * Adblock Plus is free software: you can redistribute it and/or modify | 
 |   6  * it under the terms of the GNU General Public License version 3 as | 
 |   7  * published by the Free Software Foundation. | 
 |   8  * | 
 |   9  * Adblock Plus is distributed in the hope that it will be useful, | 
 |  10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |  11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |  12  * GNU General Public License for more details. | 
 |  13  * | 
 |  14  * You should have received a copy of the GNU General Public License | 
 |  15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
 |  16  */ | 
 |  17 package org.adblockplus.libadblockplus; | 
 |  18  | 
 |  19 import com.github.rjeschke.neetutils.dispose.Disposable; | 
 |  20 import com.github.rjeschke.neetutils.dispose.Disposer; | 
 |  21  | 
 |  22 public abstract class LogSystem implements Disposable | 
 |  23 { | 
 |  24   private final Disposer disposer; | 
 |  25   protected final long ptr; | 
 |  26  | 
 |  27   static | 
 |  28   { | 
 |  29     System.loadLibrary("abpEngine"); | 
 |  30     registerNatives(); | 
 |  31   } | 
 |  32  | 
 |  33   public LogSystem() | 
 |  34   { | 
 |  35     this.ptr = ctor(this); | 
 |  36     this.disposer = new Disposer(this, new DisposeWrapper(this.ptr)); | 
 |  37   } | 
 |  38  | 
 |  39   public static enum LogLevel | 
 |  40   { | 
 |  41     TRACE, LOG, INFO, WARN, ERROR; | 
 |  42   } | 
 |  43  | 
 |  44   public abstract void logCallback(LogLevel level, String message, String source
    ); | 
 |  45  | 
 |  46   @Override | 
 |  47   public void dispose() | 
 |  48   { | 
 |  49     this.disposer.dispose(); | 
 |  50   } | 
 |  51  | 
 |  52   private final static class DisposeWrapper implements Disposable | 
 |  53   { | 
 |  54     private final long ptr; | 
 |  55  | 
 |  56     public DisposeWrapper(final long ptr) | 
 |  57     { | 
 |  58       this.ptr = ptr; | 
 |  59     } | 
 |  60  | 
 |  61     @Override | 
 |  62     public void dispose() | 
 |  63     { | 
 |  64       dtor(this.ptr); | 
 |  65     } | 
 |  66   } | 
 |  67  | 
 |  68   private final static native void registerNatives(); | 
 |  69  | 
 |  70   private final static native long ctor(Object callbackObject); | 
 |  71  | 
 |  72   private final static native void dtor(long ptr); | 
 |  73 } | 
| OLD | NEW |