public class org.glassfish.grizzly.http.server.filecache.FileCache implements org.glassfish.grizzly.monitoring.MonitoringAware<org.glassfish.grizzly.http.server.filecache.FileCacheProbe>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.http.server.filecache.FileCache
  super_class: java.lang.Object
{
  private static final java.io.File TMP_DIR;
    descriptor: Ljava/io/File;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final java.lang.String[] COMPRESSION_ALIASES;
    descriptor: [Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private static final java.util.logging.Logger LOGGER;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicInteger cacheSize;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.ConcurrentMap<org.glassfish.grizzly.http.server.filecache.FileCacheKey, org.glassfish.grizzly.http.server.filecache.FileCacheEntry> fileCacheMap;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<Lorg/glassfish/grizzly/http/server/filecache/FileCacheKey;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;>;

  private final org.glassfish.grizzly.http.server.filecache.FileCacheEntry NULL_CACHE_ENTRY;
    descriptor: Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int secondsMaxAge;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private volatile int maxCacheEntries;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private long minEntrySize;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long maxEntrySize;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private volatile long maxLargeFileCacheSize;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile long maxSmallFileCacheSize;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final java.util.concurrent.atomic.AtomicLong mappedMemorySize;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicLong heapSize;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean enabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.glassfish.grizzly.utils.DelayedExecutor$DelayQueue<org.glassfish.grizzly.http.server.filecache.FileCacheEntry> delayQueue;
    descriptor: Lorg/glassfish/grizzly/utils/DelayedExecutor$DelayQueue;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/glassfish/grizzly/utils/DelayedExecutor$DelayQueue<Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;>;

  private volatile java.io.File compressedFilesFolder;
    descriptor: Ljava/io/File;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final org.glassfish.grizzly.http.CompressionConfig compressionConfig;
    descriptor: Lorg/glassfish/grizzly/http/CompressionConfig;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean fileSendEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  protected final org.glassfish.grizzly.monitoring.DefaultMonitoringConfig<org.glassfish.grizzly.http.server.filecache.FileCacheProbe> monitoringConfig;
    descriptor: Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig<Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;>;

  private static volatile int[] $SWITCH_TABLE$org$glassfish$grizzly$http$CompressionConfig$CompressionMode;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  private static volatile int[] $SWITCH_TABLE$org$glassfish$grizzly$http$server$filecache$FileCache$CacheType;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 64
            new java.io.File
            dup
            ldc "java.io.tmpdir"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
         1: .line 63
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.TMP_DIR:Ljava/io/File;
         2: .line 66
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "gzip"
            aastore
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.COMPRESSION_ALIASES:[Ljava/lang/String;
         3: .line 80
            ldc Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            invokestatic org.glassfish.grizzly.Grizzly.logger:(Ljava/lang/Class;)Ljava/util/logging/Logger;
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.LOGGER:Ljava/util/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 85
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.cacheSize:Ljava/util/concurrent/atomic/AtomicInteger;
         2: .line 90
            aload 0 /* this */
         3: .line 91
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
         4: .line 93
            aload 0 /* this */
            new org.glassfish.grizzly.http.server.filecache.FileCacheEntry
            dup
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCacheEntry.<init>:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;)V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.NULL_CACHE_ENTRY:Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
         5: .line 98
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.secondsMaxAge:I
         6: .line 103
            aload 0 /* this */
            sipush 1024
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxCacheEntries:I
         7: .line 108
            aload 0 /* this */
            ldc -9223372036854775808
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.minEntrySize:J
         8: .line 113
            aload 0 /* this */
            ldc 9223372036854775807
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxEntrySize:J
         9: .line 118
            aload 0 /* this */
            ldc 9223372036854775807
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxLargeFileCacheSize:J
        10: .line 123
            aload 0 /* this */
            ldc 1048576
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxSmallFileCacheSize:J
        11: .line 128
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.mappedMemorySize:Ljava/util/concurrent/atomic/AtomicLong;
        12: .line 133
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.heapSize:Ljava/util/concurrent/atomic/AtomicLong;
        13: .line 138
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.enabled:Z
        14: .line 145
            aload 0 /* this */
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.TMP_DIR:Ljava/io/File;
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
        15: .line 150
            aload 0 /* this */
            new org.glassfish.grizzly.http.CompressionConfig
            dup
            invokespecial org.glassfish.grizzly.http.CompressionConfig.<init>:()V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.compressionConfig:Lorg/glassfish/grizzly/http/CompressionConfig;
        16: .line 161
            aload 0 /* this */
        17: .line 162
            new org.glassfish.grizzly.http.server.filecache.FileCache$1
            dup
            aload 0 /* this */
            ldc Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCache$1.<init>:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Class;)V
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
        18: .line 62
            return
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void initialize(org.glassfish.grizzly.utils.DelayedExecutor);
    descriptor: (Lorg/glassfish/grizzly/utils/DelayedExecutor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.utils.DelayedExecutor delayedExecutor
         0: .line 175
            aload 0 /* this */
            aload 1 /* delayedExecutor */
            new org.glassfish.grizzly.http.server.filecache.FileCache$EntryWorker
            dup
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCache$EntryWorker.<init>:()V
         1: .line 176
            new org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver
            dup
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver.<init>:()V
         2: .line 175
            invokevirtual org.glassfish.grizzly.utils.DelayedExecutor.createDelayQueue:(Lorg/glassfish/grizzly/utils/DelayedExecutor$Worker;Lorg/glassfish/grizzly/utils/DelayedExecutor$Resolver;)Lorg/glassfish/grizzly/utils/DelayedExecutor$DelayQueue;
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.delayQueue:Lorg/glassfish/grizzly/utils/DelayedExecutor$DelayQueue;
         3: .line 177
            return
        end local 1 // org.glassfish.grizzly.utils.DelayedExecutor delayedExecutor
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    4     1  delayedExecutor  Lorg/glassfish/grizzly/utils/DelayedExecutor;
    MethodParameters:
                 Name  Flags
      delayedExecutor  final

  public org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult add(org.glassfish.grizzly.http.HttpRequestPacket, long);
    descriptor: (Lorg/glassfish/grizzly/http/HttpRequestPacket;J)Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        start local 2 // long lastModified
         0: .line 188
            aload 0 /* this */
            aload 1 /* request */
            aconst_null
            lload 2 /* lastModified */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.add:(Lorg/glassfish/grizzly/http/HttpRequestPacket;Ljava/io/File;J)Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
        end local 2 // long lastModified
        end local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1       request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            0    1     2  lastModified  J
    MethodParameters:
              Name  Flags
      request       final
      lastModified  final

  public org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult add(org.glassfish.grizzly.http.HttpRequestPacket, java.io.File);
    descriptor: (Lorg/glassfish/grizzly/http/HttpRequestPacket;Ljava/io/File;)Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        start local 2 // java.io.File cacheFile
         0: .line 198
            aload 0 /* this */
            aload 1 /* request */
            aload 2 /* cacheFile */
            aload 2 /* cacheFile */
            invokevirtual java.io.File.lastModified:()J
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.add:(Lorg/glassfish/grizzly/http/HttpRequestPacket;Ljava/io/File;J)Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
        end local 2 // java.io.File cacheFile
        end local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1    request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            0    1     2  cacheFile  Ljava/io/File;
    MethodParameters:
           Name  Flags
      request    final
      cacheFile  final

  protected org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult add(org.glassfish.grizzly.http.HttpRequestPacket, java.io.File, long);
    descriptor: (Lorg/glassfish/grizzly/http/HttpRequestPacket;Ljava/io/File;J)Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=14, args_size=4
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        start local 2 // java.io.File cacheFile
        start local 3 // long lastModified
         0: .line 207
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getRequestURI:()Ljava/lang/String;
            astore 5 /* requestURI */
        start local 5 // java.lang.String requestURI
         1: .line 209
            aload 5 /* requestURI */
            ifnonnull 3
         2: .line 210
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
         3: .line 213
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.Host:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            astore 6 /* host */
        start local 6 // java.lang.String host
         4: .line 214
            new org.glassfish.grizzly.http.server.filecache.FileCacheKey
            dup
            aload 6 /* host */
            aload 5 /* requestURI */
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCacheKey.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 7 /* key */
        start local 7 // org.glassfish.grizzly.http.server.filecache.FileCacheKey key
         5: .line 215
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
            aload 7 /* key */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.NULL_CACHE_ENTRY:Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 8
         6: .line 216
            aload 7 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCacheKey.recycle:()V
         7: .line 217
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED_ENTRY_EXISTS:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
         8: .line 220
      StackMap locals: java.lang.String org.glassfish.grizzly.http.server.filecache.FileCacheKey
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.cacheSize:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            istore 8 /* size */
        start local 8 // int size
         9: .line 222
            iload 8 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxCacheEntries:()I
            if_icmple 14
        10: .line 223
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.cacheSize:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            pop
        11: .line 224
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
            aload 7 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        12: .line 225
            aload 7 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCacheKey.recycle:()V
        13: .line 226
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED_CACHE_FULL:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
        14: .line 229
      StackMap locals: int
      StackMap stack:
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getResponse:()Lorg/glassfish/grizzly/http/HttpResponsePacket;
            astore 9 /* response */
        start local 9 // org.glassfish.grizzly.http.HttpResponsePacket response
        15: .line 230
            aload 9 /* response */
            invokevirtual org.glassfish.grizzly.http.HttpResponsePacket.getHeaders:()Lorg/glassfish/grizzly/http/util/MimeHeaders;
            astore 10 /* headers */
        start local 10 // org.glassfish.grizzly.http.util.MimeHeaders headers
        16: .line 232
            aload 9 /* response */
            invokevirtual org.glassfish.grizzly.http.HttpResponsePacket.getContentType:()Ljava/lang/String;
            astore 11 /* contentType */
        start local 11 // java.lang.String contentType
        17: .line 235
            aload 2 /* cacheFile */
            ifnull 21
        18: .line 236
            aload 0 /* this */
            aload 2 /* cacheFile */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.createEntry:(Ljava/io/File;)Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            astore 12 /* entry */
        start local 12 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        19: .line 237
            aload 12 /* entry */
            aload 0 /* this */
            aload 2 /* cacheFile */
            aload 11 /* contentType */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.canBeCompressed:(Ljava/io/File;Ljava/lang/String;)Z
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCacheEntry.setCanBeCompressed:(Z)V
        20: .line 238
            goto 23
        end local 12 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        21: .line 239
      StackMap locals: org.glassfish.grizzly.http.HttpResponsePacket org.glassfish.grizzly.http.util.MimeHeaders java.lang.String
      StackMap stack:
            new org.glassfish.grizzly.http.server.filecache.FileCacheEntry
            dup
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCacheEntry.<init>:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;)V
            astore 12 /* entry */
        start local 12 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        22: .line 240
            aload 12 /* entry */
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
        23: .line 243
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCacheEntry
      StackMap stack:
            aload 12 /* entry */
            aload 7 /* key */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.key:Lorg/glassfish/grizzly/http/server/filecache/FileCacheKey;
        24: .line 244
            aload 12 /* entry */
            aload 5 /* requestURI */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.requestURI:Ljava/lang/String;
        25: .line 246
            aload 12 /* entry */
            lload 3 /* lastModified */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
        26: .line 247
            aload 12 /* entry */
            aload 11 /* contentType */
            invokestatic org.glassfish.grizzly.http.util.ContentType.newContentType:(Ljava/lang/String;)Lorg/glassfish/grizzly/http/util/ContentType;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.contentType:Lorg/glassfish/grizzly/http/util/ContentType;
        27: .line 248
            aload 12 /* entry */
            aload 10 /* headers */
            getstatic org.glassfish.grizzly.http.util.Header.XPoweredBy:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.util.MimeHeaders.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.xPoweredBy:Ljava/lang/String;
        28: .line 249
            aload 12 /* entry */
            aload 10 /* headers */
            getstatic org.glassfish.grizzly.http.util.Header.Date:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.util.MimeHeaders.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.date:Ljava/lang/String;
        29: .line 250
            aload 12 /* entry */
            aload 10 /* headers */
            getstatic org.glassfish.grizzly.http.util.Header.LastModified:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.util.MimeHeaders.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModifiedHeader:Ljava/lang/String;
        30: .line 251
            aload 12 /* entry */
            aload 6 /* host */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.host:Ljava/lang/String;
        31: .line 252
            aload 12 /* entry */
            aload 10 /* headers */
            getstatic org.glassfish.grizzly.http.util.Header.ETag:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.util.MimeHeaders.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.Etag:Ljava/lang/String;
        32: .line 253
            aload 12 /* entry */
            aload 10 /* headers */
            getstatic org.glassfish.grizzly.http.util.Header.Server:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.util.MimeHeaders.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.server:Ljava/lang/String;
        33: .line 255
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
            aload 7 /* key */
            aload 12 /* entry */
            invokeinterface java.util.concurrent.ConcurrentMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        34: .line 257
            aload 0 /* this */
            aload 12 /* entry */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesEntryAdded:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
        35: .line 259
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getSecondsMaxAge:()I
            istore 13 /* secondsMaxAgeLocal */
        start local 13 // int secondsMaxAgeLocal
        36: .line 260
            iload 13 /* secondsMaxAgeLocal */
            ifle 38
        37: .line 261
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.delayQueue:Lorg/glassfish/grizzly/utils/DelayedExecutor$DelayQueue;
            aload 12 /* entry */
            iload 13 /* secondsMaxAgeLocal */
            i2l
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual org.glassfish.grizzly.utils.DelayedExecutor$DelayQueue.add:(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)V
        38: .line 264
      StackMap locals: int
      StackMap stack:
            aload 12 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 40
        39: .line 265
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.OK_CACHED_TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            goto 41
        40: .line 266
      StackMap locals:
      StackMap stack:
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.OK_CACHED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
        41: .line 264
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult
            areturn
        end local 13 // int secondsMaxAgeLocal
        end local 12 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 11 // java.lang.String contentType
        end local 10 // org.glassfish.grizzly.http.util.MimeHeaders headers
        end local 9 // org.glassfish.grizzly.http.HttpResponsePacket response
        end local 8 // int size
        end local 7 // org.glassfish.grizzly.http.server.filecache.FileCacheKey key
        end local 6 // java.lang.String host
        end local 5 // java.lang.String requestURI
        end local 3 // long lastModified
        end local 2 // java.io.File cacheFile
        end local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   42     0                this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   42     1             request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            0   42     2           cacheFile  Ljava/io/File;
            0   42     3        lastModified  J
            1   42     5          requestURI  Ljava/lang/String;
            4   42     6                host  Ljava/lang/String;
            5   42     7                 key  Lorg/glassfish/grizzly/http/server/filecache/FileCacheKey;
            9   42     8                size  I
           15   42     9            response  Lorg/glassfish/grizzly/http/HttpResponsePacket;
           16   42    10             headers  Lorg/glassfish/grizzly/http/util/MimeHeaders;
           17   42    11         contentType  Ljava/lang/String;
           19   21    12               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
           22   42    12               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
           36   42    13  secondsMaxAgeLocal  I
    MethodParameters:
              Name  Flags
      request       final
      cacheFile     final
      lastModified  final

  public org.glassfish.grizzly.http.server.filecache.FileCacheEntry get(org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 276
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.cacheSize:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            ifne 1
            aconst_null
            areturn
         1: .line 278
      StackMap locals:
      StackMap stack:
            aload 1 /* request */
            invokestatic org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey.create:(Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/server/filecache/LazyFileCacheKey;
            astore 2 /* key */
        start local 2 // org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey key
         2: .line 279
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheEntry
            astore 3 /* entry */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         3: .line 280
            aload 2 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey.recycle:()V
         4: .line 282
            aload 3 /* entry */
            ifnull 18
            aload 3 /* entry */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.NULL_CACHE_ENTRY:Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            if_acmpeq 18
         5: .line 285
            aload 0 /* this */
            aload 3 /* entry */
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.checkIfHeaders:(Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
            astore 4 /* httpStatus */
        start local 4 // org.glassfish.grizzly.http.util.HttpStatus httpStatus
         6: .line 287
            aload 4 /* httpStatus */
            ifnonnull 7
            iconst_1
            goto 8
      StackMap locals: org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.util.HttpStatus
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 5 /* flushBody */
        start local 5 // boolean flushBody
         9: .line 288
            iload 5 /* flushBody */
            ifeq 11
            aload 3 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 11
        10: .line 289
            aconst_null
            areturn
        11: .line 292
      StackMap locals: int
      StackMap stack:
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getResponse:()Lorg/glassfish/grizzly/http/HttpResponsePacket;
            aload 4 /* httpStatus */
            ifnull 13
        12: .line 293
            aload 4 /* httpStatus */
            goto 14
        13: .line 294
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.HttpResponsePacket
            getstatic org.glassfish.grizzly.http.util.HttpStatus.OK_200:Lorg/glassfish/grizzly/http/util/HttpStatus;
        14: .line 292
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.HttpRequestPacket org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.util.HttpStatus int
      StackMap stack: org.glassfish.grizzly.http.HttpResponsePacket org.glassfish.grizzly.http.util.HttpStatus
            invokevirtual org.glassfish.grizzly.http.HttpResponsePacket.setStatus:(Lorg/glassfish/grizzly/http/util/HttpStatus;)V
        15: .line 296
            aload 0 /* this */
            aload 3 /* entry */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesEntryHit:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
        16: .line 297
            aload 3 /* entry */
        17: areturn
        end local 5 // boolean flushBody
        end local 4 // org.glassfish.grizzly.http.util.HttpStatus httpStatus
        18: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* request */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesEntryMissed:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/HttpRequestPacket;)V
        19: .line 301
            goto 25
      StackMap locals:
      StackMap stack: java.lang.Exception
        20: astore 4 /* e */
        start local 4 // java.lang.Exception e
        21: .line 302
            aload 0 /* this */
            aload 4 /* e */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        22: .line 305
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
        23: .line 306
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVER_FILECACHE_GENERAL_ERROR:()Ljava/lang/String;
            aload 4 /* e */
        24: .line 305
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 4 // java.lang.Exception e
        25: .line 309
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 2 // org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey key
        end local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   26     1     request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            2   26     2         key  Lorg/glassfish/grizzly/http/server/filecache/LazyFileCacheKey;
            3   26     3       entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            6   18     4  httpStatus  Lorg/glassfish/grizzly/http/util/HttpStatus;
            9   18     5   flushBody  Z
           21   25     4           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           4    10      20  Class java.lang.Exception
          11    17      20  Class java.lang.Exception
          18    19      20  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      request  final

  protected void remove(org.glassfish.grizzly.http.server.filecache.FileCacheEntry);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         0: .line 313
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileCacheMap:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.key:Lorg/glassfish/grizzly/http/server/filecache/FileCacheKey;
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 2
         1: .line 314
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.cacheSize:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            pop
         2: .line 317
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.MAPPED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 5
         3: .line 318
            aload 0 /* this */
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            i2l
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subMappedMemorySize:(J)J
            pop2
         4: .line 319
            goto 7
      StackMap locals:
      StackMap stack:
         5: aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.HEAP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 7
         6: .line 320
            aload 0 /* this */
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            i2l
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subHeapSize:(J)J
            pop2
         7: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* entry */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesEntryRemoved:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
         8: .line 324
            return
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    9     1  entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    MethodParameters:
       Name  Flags
      entry  final

  protected java.lang.Object createJmxManagementObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 328
            ldc "org.glassfish.grizzly.http.server.filecache.jmx.FileCache"
         1: .line 329
            aload 0 /* this */
            ldc Lorg/glassfish/grizzly/http/server/filecache/FileCache;
         2: .line 327
            invokestatic org.glassfish.grizzly.monitoring.MonitoringUtils.loadJmxObject:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  private org.glassfish.grizzly.http.server.filecache.FileCacheEntry createEntry(java.io.File);
    descriptor: (Ljava/io/File;)Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // java.io.File file
         0: .line 336
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.tryMapFileToBuffer:(Ljava/io/File;)Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            astore 2 /* entry */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         1: .line 337
            aload 2 /* entry */
            ifnonnull 4
         2: .line 338
            new org.glassfish.grizzly.http.server.filecache.FileCacheEntry
            dup
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCacheEntry.<init>:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;)V
            astore 2 /* entry */
         3: .line 339
            aload 2 /* entry */
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.FILE:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
         4: .line 342
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCacheEntry
      StackMap stack:
            aload 2 /* entry */
            aload 1 /* file */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFile:Ljava/io/File;
         5: .line 343
            aload 2 /* entry */
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFileSize:J
         6: .line 345
            aload 2 /* entry */
            areturn
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 1 // java.io.File file
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    7     1   file  Ljava/io/File;
            1    7     2  entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    MethodParameters:
      Name  Flags
      file  final

  private org.glassfish.grizzly.http.server.filecache.FileCacheEntry tryMapFileToBuffer(java.io.File);
    descriptor: (Ljava/io/File;)Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // java.io.File file
         0: .line 354
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            lstore 2 /* size */
        start local 2 // long size
         1: .line 355
            lload 2 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxEntrySize:()J
            lcmp
            ifle 3
         2: .line 356
            aconst_null
            areturn
         3: .line 361
      StackMap locals: long
      StackMap stack:
            aconst_null
            astore 6 /* fileChannel */
        start local 6 // java.nio.channels.FileChannel fileChannel
         4: .line 362
            aconst_null
            astore 7 /* stream */
        start local 7 // java.io.FileInputStream stream
         5: .line 364
            lload 2 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMinEntrySize:()J
            lcmp
            ifle 21
         6: .line 365
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.addMappedMemorySize:(J)J
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxLargeFileCacheSize:()J
            lcmp
            ifle 19
         7: .line 367
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subMappedMemorySize:(J)J
            pop2
         8: .line 394
            aload 7 /* stream */
            ifnull 13
         9: .line 396
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        10: .line 397
            goto 13
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long top top java.nio.channels.FileChannel java.io.FileInputStream
      StackMap stack: java.io.IOException
        11: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        12: .line 398
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        13: .line 401
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 18
        14: .line 403
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        15: .line 404
            goto 18
      StackMap locals:
      StackMap stack: java.io.IOException
        16: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        17: .line 405
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        18: .line 368
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        19: .line 371
      StackMap locals:
      StackMap stack:
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.MAPPED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            astore 4 /* type */
        start local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        20: .line 372
            goto 35
        end local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        21: .line 373
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.addHeapSize:(J)J
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxSmallFileCacheSize:()J
            lcmp
            ifle 34
        22: .line 375
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subHeapSize:(J)J
            pop2
        23: .line 394
            aload 7 /* stream */
            ifnull 28
        24: .line 396
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        25: .line 397
            goto 28
      StackMap locals:
      StackMap stack: java.io.IOException
        26: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        27: .line 398
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        28: .line 401
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 33
        29: .line 403
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        30: .line 404
            goto 33
      StackMap locals:
      StackMap stack: java.io.IOException
        31: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        32: .line 405
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        33: .line 376
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        34: .line 379
      StackMap locals:
      StackMap stack:
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.HEAP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            astore 4 /* type */
        start local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        35: .line 382
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long org.glassfish.grizzly.http.server.filecache.FileCache$CacheType top java.nio.channels.FileChannel java.io.FileInputStream
      StackMap stack:
            new java.io.FileInputStream
            dup
            aload 1 /* file */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 7 /* stream */
        36: .line 383
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 6 /* fileChannel */
        37: .line 385
            aload 6 /* fileChannel */
            getstatic java.nio.channels.FileChannel$MapMode.READ_ONLY:Ljava/nio/channels/FileChannel$MapMode;
            lconst_0
            lload 2 /* size */
            invokevirtual java.nio.channels.FileChannel.map:(Ljava/nio/channels/FileChannel$MapMode;JJ)Ljava/nio/MappedByteBuffer;
            astore 5 /* bb */
        start local 5 // java.nio.ByteBuffer bb
        38: .line 387
            aload 4 /* type */
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.HEAP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 66
        39: .line 388
            aload 5 /* bb */
            checkcast java.nio.MappedByteBuffer
            invokevirtual java.nio.MappedByteBuffer.load:()Ljava/nio/MappedByteBuffer;
            pop
        40: .line 390
            goto 66
        end local 5 // java.nio.ByteBuffer bb
        end local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long top top java.nio.channels.FileChannel java.io.FileInputStream
      StackMap stack: java.lang.Exception
        41: astore 8 /* e */
        start local 8 // java.lang.Exception e
        42: .line 391
            aload 0 /* this */
            aload 8 /* e */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        43: .line 394
            aload 7 /* stream */
            ifnull 48
        44: .line 396
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        45: .line 397
            goto 48
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long top top java.nio.channels.FileChannel java.io.FileInputStream java.lang.Exception
      StackMap stack: java.io.IOException
        46: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        47: .line 398
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        48: .line 401
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 53
        49: .line 403
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        50: .line 404
            goto 53
      StackMap locals:
      StackMap stack: java.io.IOException
        51: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        52: .line 405
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        53: .line 392
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 8 // java.lang.Exception e
        54: .line 393
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long top top java.nio.channels.FileChannel java.io.FileInputStream
      StackMap stack: java.lang.Throwable
            astore 9
        55: .line 394
            aload 7 /* stream */
            ifnull 60
        56: .line 396
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        57: .line 397
            goto 60
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long top top java.nio.channels.FileChannel java.io.FileInputStream top java.lang.Throwable
      StackMap stack: java.io.IOException
        58: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        59: .line 398
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        60: .line 401
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 65
        61: .line 403
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        62: .line 404
            goto 65
      StackMap locals:
      StackMap stack: java.io.IOException
        63: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        64: .line 405
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        65: .line 408
      StackMap locals:
      StackMap stack:
            aload 9
            athrow
        start local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        start local 5 // java.nio.ByteBuffer bb
        66: .line 394
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File long org.glassfish.grizzly.http.server.filecache.FileCache$CacheType java.nio.ByteBuffer java.nio.channels.FileChannel java.io.FileInputStream
      StackMap stack:
            aload 7 /* stream */
            ifnull 71
        67: .line 396
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        68: .line 397
            goto 71
      StackMap locals:
      StackMap stack: java.io.IOException
        69: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        70: .line 398
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        71: .line 401
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 76
        72: .line 403
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        73: .line 404
            goto 76
      StackMap locals:
      StackMap stack: java.io.IOException
        74: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        75: .line 405
            aload 0 /* this */
            aload 10 /* ignored */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 10 // java.io.IOException ignored
        76: .line 410
      StackMap locals:
      StackMap stack:
            new org.glassfish.grizzly.http.server.filecache.FileCacheEntry
            dup
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCacheEntry.<init>:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;)V
            astore 8 /* entry */
        start local 8 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        77: .line 411
            aload 8 /* entry */
            aload 4 /* type */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
        78: .line 412
            aload 8 /* entry */
            lload 2 /* size */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFileSize:J
        79: .line 413
            aload 8 /* entry */
            aload 5 /* bb */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.bb:Ljava/nio/ByteBuffer;
        80: .line 415
            aload 8 /* entry */
            areturn
        end local 8 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 7 // java.io.FileInputStream stream
        end local 6 // java.nio.channels.FileChannel fileChannel
        end local 5 // java.nio.ByteBuffer bb
        end local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        end local 2 // long size
        end local 1 // java.io.File file
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   81     0         this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   81     1         file  Ljava/io/File;
            1   81     2         size  J
           20   21     4         type  Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
           35   41     4         type  Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
           66   81     4         type  Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
           38   41     5           bb  Ljava/nio/ByteBuffer;
           66   81     5           bb  Ljava/nio/ByteBuffer;
            4   81     6  fileChannel  Ljava/nio/channels/FileChannel;
            5   81     7       stream  Ljava/io/FileInputStream;
           42   54     8            e  Ljava/lang/Exception;
           12   13    10      ignored  Ljava/io/IOException;
           27   28    10      ignored  Ljava/io/IOException;
           47   48    10      ignored  Ljava/io/IOException;
           59   60    10      ignored  Ljava/io/IOException;
           70   71    10      ignored  Ljava/io/IOException;
           17   18    10      ignored  Ljava/io/IOException;
           32   33    10      ignored  Ljava/io/IOException;
           52   53    10      ignored  Ljava/io/IOException;
           64   65    10      ignored  Ljava/io/IOException;
           75   76    10      ignored  Ljava/io/IOException;
           77   81     8        entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
      Exception table:
        from    to  target  type
           9    10      11  Class java.io.IOException
          14    15      16  Class java.io.IOException
          24    25      26  Class java.io.IOException
          29    30      31  Class java.io.IOException
           5     8      41  Class java.lang.Exception
          19    23      41  Class java.lang.Exception
          34    40      41  Class java.lang.Exception
          44    45      46  Class java.io.IOException
          49    50      51  Class java.io.IOException
           5     8      54  any
          19    23      54  any
          34    43      54  any
          56    57      58  Class java.io.IOException
          61    62      63  Class java.io.IOException
          67    68      69  Class java.io.IOException
          72    73      74  Class java.io.IOException
    MethodParameters:
      Name  Flags
      file  final

  private boolean canBeCompressed(java.io.File, java.lang.String);
    descriptor: (Ljava/io/File;Ljava/lang/String;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // java.io.File cacheFile
        start local 2 // java.lang.String contentType
         0: .line 423
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$CompressionConfig$CompressionMode:()[I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressionConfig:Lorg/glassfish/grizzly/http/CompressionConfig;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig.getCompressionMode:()Lorg/glassfish/grizzly/http/CompressionConfig$CompressionMode;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig$CompressionMode.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 2
                    2: 3
                    3: 1
              default: 7
          }
         1: .line 424
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 425
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         3: .line 427
      StackMap locals:
      StackMap stack:
            aload 1 /* cacheFile */
            invokevirtual java.io.File.length:()J
         4: .line 428
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressionConfig:Lorg/glassfish/grizzly/http/CompressionConfig;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig.getCompressionMinSize:()I
            i2l
            lcmp
            ifge 6
         5: .line 429
            iconst_0
            ireturn
         6: .line 432
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressionConfig:Lorg/glassfish/grizzly/http/CompressionConfig;
            aload 2 /* contentType */
            invokevirtual org.glassfish.grizzly.http.CompressionConfig.checkMimeType:(Ljava/lang/String;)Z
            ireturn
         7: .line 435
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Unknown mode"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String contentType
        end local 1 // java.io.File cacheFile
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1    cacheFile  Ljava/io/File;
            0    8     2  contentType  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      cacheFile    final
      contentType  final

  public int getSecondsMaxAge();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 445
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.secondsMaxAge:I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setSecondsMaxAge(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // int secondsMaxAge
         0: .line 454
            aload 0 /* this */
            iload 1 /* secondsMaxAge */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.secondsMaxAge:I
         1: .line 455
            return
        end local 1 // int secondsMaxAge
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  secondsMaxAge  I
    MethodParameters:
               Name  Flags
      secondsMaxAge  

  public int getMaxCacheEntries();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 461
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.maxCacheEntries:I
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setMaxCacheEntries(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // int maxCacheEntries
         0: .line 470
            aload 0 /* this */
            iload 1 /* maxCacheEntries */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxCacheEntries:I
         1: .line 471
            return
        end local 1 // int maxCacheEntries
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  maxCacheEntries  I
    MethodParameters:
                 Name  Flags
      maxCacheEntries  

  public long getMinEntrySize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 479
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.minEntrySize:J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setMinEntrySize(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long minEntrySize
         0: .line 490
            aload 0 /* this */
            lload 1 /* minEntrySize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.minEntrySize:J
         1: .line 491
            return
        end local 1 // long minEntrySize
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  minEntrySize  J
    MethodParameters:
              Name  Flags
      minEntrySize  

  public long getMaxEntrySize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 498
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.maxEntrySize:J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setMaxEntrySize(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long maxEntrySize
         0: .line 509
            aload 0 /* this */
            lload 1 /* maxEntrySize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxEntrySize:J
         1: .line 510
            return
        end local 1 // long maxEntrySize
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  maxEntrySize  J
    MethodParameters:
              Name  Flags
      maxEntrySize  

  public long getMaxLargeFileCacheSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 516
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.maxLargeFileCacheSize:J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setMaxLargeFileCacheSize(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long maxLargeFileCacheSize
         0: .line 528
            aload 0 /* this */
            lload 1 /* maxLargeFileCacheSize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxLargeFileCacheSize:J
         1: .line 529
            return
        end local 1 // long maxLargeFileCacheSize
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  maxLargeFileCacheSize  J
    MethodParameters:
                       Name  Flags
      maxLargeFileCacheSize  

  public long getMaxSmallFileCacheSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 537
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.maxSmallFileCacheSize:J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setMaxSmallFileCacheSize(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long maxSmallFileCacheSize
         0: .line 548
            aload 0 /* this */
            lload 1 /* maxSmallFileCacheSize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxSmallFileCacheSize:J
         1: .line 549
            return
        end local 1 // long maxSmallFileCacheSize
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  maxSmallFileCacheSize  J
    MethodParameters:
                       Name  Flags
      maxSmallFileCacheSize  

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 556
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.enabled:Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // boolean enabled
         0: .line 566
            aload 0 /* this */
            iload 1 /* enabled */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.enabled:Z
         1: .line 567
            return
        end local 1 // boolean enabled
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  

  public org.glassfish.grizzly.http.CompressionConfig getCompressionConfig();
    descriptor: ()Lorg/glassfish/grizzly/http/CompressionConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 573
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressionConfig:Lorg/glassfish/grizzly/http/CompressionConfig;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public java.io.File getCompressedFilesFolder();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 580
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setCompressedFilesFolder(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // java.io.File compressedFilesFolder
         0: .line 587
            aload 0 /* this */
            aload 1 /* compressedFilesFolder */
            ifnull 2
         1: .line 588
            aload 1 /* compressedFilesFolder */
            goto 3
         2: .line 589
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.TMP_DIR:Ljava/io/File;
         3: .line 587
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
         4: .line 590
            return
        end local 1 // java.io.File compressedFilesFolder
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    5     0                   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    5     1  compressedFilesFolder  Ljava/io/File;
    MethodParameters:
                       Name  Flags
      compressedFilesFolder  final

  public boolean isFileSendEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 618
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.fileSendEnabled:Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  public void setFileSendEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // boolean fileSendEnabled
         0: .line 631
            aload 0 /* this */
            iload 1 /* fileSendEnabled */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.fileSendEnabled:Z
         1: .line 632
            return
        end local 1 // boolean fileSendEnabled
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     1  fileSendEnabled  Z
    MethodParameters:
                 Name  Flags
      fileSendEnabled  

  protected void compressFile(org.glassfish.grizzly.http.server.filecache.FileCacheEntry);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=11, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         0: .line 640
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFile:Ljava/io/File;
            invokevirtual java.io.File.hashCode:()I
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
         1: .line 641
            ldc ".tmpzip"
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
         2: .line 639
            invokestatic java.io.File.createTempFile:(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
            astore 2 /* tmpCompressedFile */
        start local 2 // java.io.File tmpCompressedFile
         3: .line 642
            aload 2 /* tmpCompressedFile */
            invokevirtual java.io.File.deleteOnExit:()V
         4: .line 644
            aconst_null
            astore 3 /* in */
        start local 3 // java.io.InputStream in
         5: .line 645
            aconst_null
            astore 4 /* out */
        start local 4 // java.io.OutputStream out
         6: .line 647
            new java.io.FileInputStream
            dup
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFile:Ljava/io/File;
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 3 /* in */
         7: .line 648
            new java.util.zip.GZIPOutputStream
            dup
         8: .line 649
            new java.io.FileOutputStream
            dup
            aload 2 /* tmpCompressedFile */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/File;)V
         9: .line 648
            invokespecial java.util.zip.GZIPOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 4 /* out */
        10: .line 651
            sipush 1024
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
        11: .line 654
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry java.io.File java.io.InputStream java.io.OutputStream byte[]
      StackMap stack:
            aload 3 /* in */
            aload 5 /* tmp */
            invokevirtual java.io.InputStream.read:([B)I
            istore 6 /* readNow */
        start local 6 // int readNow
        12: .line 655
            iload 6 /* readNow */
            iconst_m1
            if_icmpne 14
        13: .line 656
            goto 26
        14: .line 659
      StackMap locals: int
      StackMap stack:
            aload 4 /* out */
            aload 5 /* tmp */
            iconst_0
            iload 6 /* readNow */
            invokevirtual java.io.OutputStream.write:([BII)V
        end local 6 // int readNow
        15: .line 660
            goto 11
        end local 5 // byte[] tmp
        16: .line 661
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry java.io.File java.io.InputStream java.io.OutputStream
      StackMap stack: java.lang.Throwable
            astore 7
        17: .line 662
            aload 3 /* in */
            ifnull 21
        18: .line 664
            aload 3 /* in */
            invokevirtual java.io.InputStream.close:()V
        19: .line 665
            goto 21
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry java.io.File java.io.InputStream java.io.OutputStream top top java.lang.Throwable
      StackMap stack: java.io.IOException
        20: pop
        21: .line 668
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            ifnull 25
        22: .line 670
            aload 4 /* out */
            invokevirtual java.io.OutputStream.close:()V
        23: .line 671
            goto 25
      StackMap locals:
      StackMap stack: java.io.IOException
        24: pop
        25: .line 674
      StackMap locals:
      StackMap stack:
            aload 7
            athrow
        26: .line 662
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry java.io.File java.io.InputStream java.io.OutputStream
      StackMap stack:
            aload 3 /* in */
            ifnull 30
        27: .line 664
            aload 3 /* in */
            invokevirtual java.io.InputStream.close:()V
        28: .line 665
            goto 30
      StackMap locals:
      StackMap stack: java.io.IOException
        29: pop
        30: .line 668
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            ifnull 34
        31: .line 670
            aload 4 /* out */
            invokevirtual java.io.OutputStream.close:()V
        32: .line 671
            goto 34
      StackMap locals:
      StackMap stack: java.io.IOException
        33: pop
        34: .line 676
      StackMap locals:
      StackMap stack:
            aload 2 /* tmpCompressedFile */
            invokevirtual java.io.File.length:()J
            lstore 5 /* size */
        start local 5 // long size
        35: .line 678
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$server$filecache$FileCache$CacheType:()[I
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 36
                    2: 36
                    3: 51
              default: 52
          }
        36: .line 682
      StackMap locals: long
      StackMap stack:
            new java.io.FileInputStream
            dup
            aload 2 /* tmpCompressedFile */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
        37: .line 681
            astore 7 /* cFis */
        start local 7 // java.io.FileInputStream cFis
        38: .line 685
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 8 /* cFileChannel */
        start local 8 // java.nio.channels.FileChannel cFileChannel
        39: .line 687
            aload 8 /* cFileChannel */
        40: .line 688
            getstatic java.nio.channels.FileChannel$MapMode.READ_ONLY:Ljava/nio/channels/FileChannel$MapMode;
            lconst_0
            lload 5 /* size */
        41: .line 687
            invokevirtual java.nio.channels.FileChannel.map:(Ljava/nio/channels/FileChannel$MapMode;JJ)Ljava/nio/MappedByteBuffer;
            astore 9 /* compressedBb */
        start local 9 // java.nio.MappedByteBuffer compressedBb
        42: .line 690
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.HEAP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            if_acmpne 44
        43: .line 691
            aload 9 /* compressedBb */
            invokevirtual java.nio.MappedByteBuffer.load:()Ljava/nio/MappedByteBuffer;
            pop
        44: .line 694
      StackMap locals: java.io.FileInputStream java.nio.channels.FileChannel java.nio.MappedByteBuffer
      StackMap stack:
            aload 1 /* entry */
            aload 9 /* compressedBb */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.compressedBb:Ljava/nio/ByteBuffer;
        end local 9 // java.nio.MappedByteBuffer compressedBb
        end local 8 // java.nio.channels.FileChannel cFileChannel
        45: .line 695
            goto 49
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry java.io.File java.io.InputStream java.io.OutputStream long java.io.FileInputStream
      StackMap stack: java.lang.Throwable
        46: astore 10
        47: .line 696
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.close:()V
        48: .line 697
            aload 10
            athrow
        49: .line 696
      StackMap locals:
      StackMap stack:
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.close:()V
        50: .line 699
            goto 53
        end local 7 // java.io.FileInputStream cFis
        51: .line 702
      StackMap locals:
      StackMap stack:
            goto 53
        52: .line 705
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "The type is not supported: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.type:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        53: .line 708
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            lload 5 /* size */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.compressedFileSize:J
        54: .line 709
            aload 1 /* entry */
            aload 2 /* tmpCompressedFile */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.compressedFile:Ljava/io/File;
        end local 5 // long size
        end local 4 // java.io.OutputStream out
        end local 3 // java.io.InputStream in
        end local 2 // java.io.File tmpCompressedFile
        55: .line 710
            goto 58
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry
      StackMap stack: java.io.IOException
        56: astore 2 /* e */
        start local 2 // java.io.IOException e
        57: .line 711
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            new java.lang.StringBuilder
            dup
            ldc "Can not compress file: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFile:Ljava/io/File;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* e */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 2 // java.io.IOException e
        58: .line 713
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   59     0               this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   59     1              entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            3   55     2  tmpCompressedFile  Ljava/io/File;
            5   55     3                 in  Ljava/io/InputStream;
            6   55     4                out  Ljava/io/OutputStream;
           11   16     5                tmp  [B
           12   15     6            readNow  I
           35   55     5               size  J
           38   51     7               cFis  Ljava/io/FileInputStream;
           39   45     8       cFileChannel  Ljava/nio/channels/FileChannel;
           42   45     9       compressedBb  Ljava/nio/MappedByteBuffer;
           57   58     2                  e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           6    16      16  any
          18    19      20  Class java.io.IOException
          22    23      24  Class java.io.IOException
          27    28      29  Class java.io.IOException
          31    32      33  Class java.io.IOException
          38    46      46  any
           0    55      56  Class java.io.IOException
    MethodParameters:
       Name  Flags
      entry  final

  protected final long addHeapSize(long);
    descriptor: (J)J
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long size
         0: .line 719
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.heapSize:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* size */
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            lreturn
        end local 1 // long size
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1  size  J
    MethodParameters:
      Name  Flags
      size  

  protected final long subHeapSize(long);
    descriptor: (J)J
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long size
         0: .line 723
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.heapSize:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* size */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            lreturn
        end local 1 // long size
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1  size  J
    MethodParameters:
      Name  Flags
      size  

  public long getHeapCacheSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 731
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.heapSize:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  protected final long addMappedMemorySize(long);
    descriptor: (J)J
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long size
         0: .line 735
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.mappedMemorySize:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* size */
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            lreturn
        end local 1 // long size
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1  size  J
    MethodParameters:
      Name  Flags
      size  

  protected final long subMappedMemorySize(long);
    descriptor: (J)J
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // long size
         0: .line 739
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.mappedMemorySize:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* size */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            lreturn
        end local 1 // long size
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    1     1  size  J
    MethodParameters:
      Name  Flags
      size  

  public long getMappedCacheSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 747
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.mappedMemorySize:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;

  private org.glassfish.grizzly.http.util.HttpStatus checkIfHeaders(org.glassfish.grizzly.http.server.filecache.FileCacheEntry, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 761
            aload 0 /* this */
            aload 1 /* entry */
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.checkIfMatch:(Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
            astore 3 /* httpStatus */
        start local 3 // org.glassfish.grizzly.http.util.HttpStatus httpStatus
         1: .line 762
            aload 3 /* httpStatus */
            ifnonnull 7
         2: .line 763
            aload 0 /* this */
            aload 1 /* entry */
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.checkIfModifiedSince:(Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
            astore 3 /* httpStatus */
         3: .line 764
            aload 3 /* httpStatus */
            ifnonnull 7
         4: .line 765
            aload 0 /* this */
            aload 1 /* entry */
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.checkIfNoneMatch:(Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
            astore 3 /* httpStatus */
         5: .line 766
            aload 3 /* httpStatus */
            ifnonnull 7
         6: .line 767
            aload 0 /* this */
            aload 1 /* entry */
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.checkIfUnmodifiedSince:(Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
            astore 3 /* httpStatus */
         7: .line 772
      StackMap locals: org.glassfish.grizzly.http.util.HttpStatus
      StackMap stack:
            aload 3 /* httpStatus */
            areturn
        end local 3 // org.glassfish.grizzly.http.util.HttpStatus httpStatus
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1       entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0    8     2     request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1    8     3  httpStatus  Lorg/glassfish/grizzly/http/util/HttpStatus;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entry    final
      request  final

  private org.glassfish.grizzly.http.util.HttpStatus checkIfModifiedSince(org.glassfish.grizzly.http.server.filecache.FileCacheEntry, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 784
            aload 2 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.IfModifiedSince:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            astore 3 /* reqModified */
        start local 3 // java.lang.String reqModified
         1: .line 785
            aload 3 /* reqModified */
            ifnull 14
         2: .line 789
            aload 3 /* reqModified */
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModifiedHeader:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 790
            getstatic org.glassfish.grizzly.http.util.HttpStatus.NOT_MODIFIED_304:Lorg/glassfish/grizzly/http/util/HttpStatus;
         4: areturn
         5: .line 792
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* reqModified */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.convertToLong:(Ljava/lang/String;)J
            lstore 4 /* headerValue */
        start local 4 // long headerValue
         6: .line 793
            lload 4 /* headerValue */
            ldc -1
            lcmp
            ifeq 14
         7: .line 794
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
            lstore 6 /* lastModified */
        start local 6 // long lastModified
         8: .line 797
            aload 2 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.IfNoneMatch:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            ifnonnull 14
         9: .line 798
            lload 6 /* lastModified */
            lload 4 /* headerValue */
            lsub
            ldc 1000
            lcmp
            ifgt 14
        10: .line 801
            getstatic org.glassfish.grizzly.http.util.HttpStatus.NOT_MODIFIED_304:Lorg/glassfish/grizzly/http/util/HttpStatus;
        11: areturn
        end local 6 // long lastModified
        end local 4 // long headerValue
        end local 3 // java.lang.String reqModified
        12: .line 805
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.HttpRequestPacket
      StackMap stack: java.lang.IllegalArgumentException
            astore 3 /* illegalArgument */
        start local 3 // java.lang.IllegalArgumentException illegalArgument
        13: .line 806
            aload 0 /* this */
            aload 3 /* illegalArgument */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 3 // java.lang.IllegalArgumentException illegalArgument
        14: .line 809
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   15     1            entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0   15     2          request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1   12     3      reqModified  Ljava/lang/String;
            6   12     4      headerValue  J
            8   12     6     lastModified  J
           13   14     3  illegalArgument  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
           0     4      12  Class java.lang.IllegalArgumentException
           5    11      12  Class java.lang.IllegalArgumentException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entry    final
      request  final

  private org.glassfish.grizzly.http.util.HttpStatus checkIfNoneMatch(org.glassfish.grizzly.http.server.filecache.FileCacheEntry, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 821
            aload 2 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.IfNoneMatch:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            astore 3 /* headerValue */
        start local 3 // java.lang.String headerValue
         1: .line 822
            aload 3 /* headerValue */
            ifnull 19
         2: .line 823
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.Etag:Ljava/lang/String;
            astore 4 /* eTag */
        start local 4 // java.lang.String eTag
         3: .line 825
            iconst_0
            istore 5 /* conditionSatisfied */
        start local 5 // boolean conditionSatisfied
         4: .line 827
            aload 3 /* headerValue */
            ldc "*"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 13
         5: .line 830
            new java.util.StringTokenizer
            dup
            aload 3 /* headerValue */
            ldc ","
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
         6: .line 829
            astore 6 /* commaTokenizer */
        start local 6 // java.util.StringTokenizer commaTokenizer
         7: .line 832
            goto 11
         8: .line 833
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.HttpRequestPacket java.lang.String java.lang.String int java.util.StringTokenizer
      StackMap stack:
            aload 6 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.nextToken:()Ljava/lang/String;
            astore 7 /* currentToken */
        start local 7 // java.lang.String currentToken
         9: .line 834
            aload 7 /* currentToken */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            aload 4 /* eTag */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
        10: .line 835
            iconst_1
            istore 5 /* conditionSatisfied */
        end local 7 // java.lang.String currentToken
        11: .line 832
      StackMap locals:
      StackMap stack:
            iload 5 /* conditionSatisfied */
            ifne 14
            aload 6 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 8
        end local 6 // java.util.StringTokenizer commaTokenizer
        12: .line 839
            goto 14
        13: .line 840
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 5 /* conditionSatisfied */
        14: .line 842
      StackMap locals:
      StackMap stack:
            iload 5 /* conditionSatisfied */
            ifeq 19
        15: .line 848
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getMethod:()Lorg/glassfish/grizzly/http/Method;
            astore 6 /* method */
        start local 6 // org.glassfish.grizzly.http.Method method
        16: .line 849
            getstatic org.glassfish.grizzly.http.Method.GET:Lorg/glassfish/grizzly/http/Method;
            aload 6 /* method */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 17
            getstatic org.glassfish.grizzly.http.Method.HEAD:Lorg/glassfish/grizzly/http/Method;
            aload 6 /* method */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 18
        17: .line 850
      StackMap locals: org.glassfish.grizzly.http.Method
      StackMap stack:
            getstatic org.glassfish.grizzly.http.util.HttpStatus.NOT_MODIFIED_304:Lorg/glassfish/grizzly/http/util/HttpStatus;
            areturn
        18: .line 852
      StackMap locals:
      StackMap stack:
            getstatic org.glassfish.grizzly.http.util.HttpStatus.PRECONDITION_FAILED_412:Lorg/glassfish/grizzly/http/util/HttpStatus;
            areturn
        end local 6 // org.glassfish.grizzly.http.Method method
        end local 5 // boolean conditionSatisfied
        end local 4 // java.lang.String eTag
        19: .line 857
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // java.lang.String headerValue
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   20     0                this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   20     1               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0   20     2             request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1   20     3         headerValue  Ljava/lang/String;
            3   19     4                eTag  Ljava/lang/String;
            4   19     5  conditionSatisfied  Z
            7   12     6      commaTokenizer  Ljava/util/StringTokenizer;
            9   11     7        currentToken  Ljava/lang/String;
           16   19     6              method  Lorg/glassfish/grizzly/http/Method;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entry    final
      request  final

  private org.glassfish.grizzly.http.util.HttpStatus checkIfUnmodifiedSince(org.glassfish.grizzly.http.server.filecache.FileCacheEntry, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 870
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
            lstore 3 /* lastModified */
        start local 3 // long lastModified
         1: .line 871
            aload 2 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.IfUnmodifiedSince:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            astore 5 /* h */
        start local 5 // java.lang.String h
         2: .line 872
            aload 5 /* h */
            ifnull 13
         3: .line 876
            aload 5 /* h */
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModifiedHeader:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 879
            getstatic org.glassfish.grizzly.http.util.HttpStatus.PRECONDITION_FAILED_412:Lorg/glassfish/grizzly/http/util/HttpStatus;
         5: areturn
         6: .line 881
      StackMap locals: long java.lang.String
      StackMap stack:
            aload 5 /* h */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.convertToLong:(Ljava/lang/String;)J
            lstore 6 /* headerValue */
        start local 6 // long headerValue
         7: .line 882
            lload 6 /* headerValue */
            ldc -1
            lcmp
            ifeq 13
         8: .line 883
            lload 6 /* headerValue */
            lload 3 /* lastModified */
            lsub
            ldc 1000
            lcmp
            ifgt 13
         9: .line 886
            getstatic org.glassfish.grizzly.http.util.HttpStatus.PRECONDITION_FAILED_412:Lorg/glassfish/grizzly/http/util/HttpStatus;
        10: areturn
        end local 6 // long headerValue
        end local 5 // java.lang.String h
        end local 3 // long lastModified
        11: .line 890
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.HttpRequestPacket
      StackMap stack: java.lang.IllegalArgumentException
            astore 3 /* illegalArgument */
        start local 3 // java.lang.IllegalArgumentException illegalArgument
        12: .line 891
            aload 0 /* this */
            aload 3 /* illegalArgument */
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache.notifyProbesError:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 3 // java.lang.IllegalArgumentException illegalArgument
        13: .line 894
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   14     1            entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0   14     2          request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1   11     3     lastModified  J
            2   11     5                h  Ljava/lang/String;
            7   11     6      headerValue  J
           12   13     3  illegalArgument  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
           0     5      11  Class java.lang.IllegalArgumentException
           6    10      11  Class java.lang.IllegalArgumentException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entry    final
      request  final

  private org.glassfish.grizzly.http.util.HttpStatus checkIfMatch(org.glassfish.grizzly.http.server.filecache.FileCacheEntry, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;Lorg/glassfish/grizzly/http/HttpRequestPacket;)Lorg/glassfish/grizzly/http/util/HttpStatus;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 908
            aload 2 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.IfMatch:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
            astore 3 /* headerValue */
        start local 3 // java.lang.String headerValue
         1: .line 909
            aload 3 /* headerValue */
            ifnull 13
         2: .line 910
            aload 3 /* headerValue */
            bipush 42
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpne 13
         3: .line 911
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.Etag:Ljava/lang/String;
            astore 4 /* eTag */
        start local 4 // java.lang.String eTag
         4: .line 913
            new java.util.StringTokenizer
            dup
            aload 3 /* headerValue */
            ldc ","
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 5 /* commaTokenizer */
        start local 5 // java.util.StringTokenizer commaTokenizer
         5: .line 914
            iconst_0
            istore 6 /* conditionSatisfied */
        start local 6 // boolean conditionSatisfied
         6: .line 916
            goto 10
         7: .line 917
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.HttpRequestPacket java.lang.String java.lang.String java.util.StringTokenizer int
      StackMap stack:
            aload 5 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.nextToken:()Ljava/lang/String;
            astore 7 /* currentToken */
        start local 7 // java.lang.String currentToken
         8: .line 918
            aload 7 /* currentToken */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            aload 4 /* eTag */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 919
            iconst_1
            istore 6 /* conditionSatisfied */
        end local 7 // java.lang.String currentToken
        10: .line 916
      StackMap locals:
      StackMap stack:
            iload 6 /* conditionSatisfied */
            ifne 11
            aload 5 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 7
        11: .line 925
      StackMap locals:
      StackMap stack:
            iload 6 /* conditionSatisfied */
            ifne 13
        12: .line 926
            getstatic org.glassfish.grizzly.http.util.HttpStatus.PRECONDITION_FAILED_412:Lorg/glassfish/grizzly/http/util/HttpStatus;
            areturn
        end local 6 // boolean conditionSatisfied
        end local 5 // java.util.StringTokenizer commaTokenizer
        end local 4 // java.lang.String eTag
        13: .line 932
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // java.lang.String headerValue
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   14     0                this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   14     1               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0   14     2             request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1   14     3         headerValue  Ljava/lang/String;
            4   13     4                eTag  Ljava/lang/String;
            5   13     5      commaTokenizer  Ljava/util/StringTokenizer;
            6   13     6  conditionSatisfied  Z
            8   10     7        currentToken  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entry    final
      request  final

  public org.glassfish.grizzly.monitoring.MonitoringConfig<org.glassfish.grizzly.http.server.filecache.FileCacheProbe> getMonitoringConfig();
    descriptor: ()Lorg/glassfish/grizzly/monitoring/MonitoringConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
         0: .line 940
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            areturn
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
    Signature: ()Lorg/glassfish/grizzly/monitoring/MonitoringConfig<Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;>;

  protected static void notifyProbesEntryAdded(org.glassfish.grizzly.http.server.filecache.FileCache, org.glassfish.grizzly.http.server.filecache.FileCacheEntry);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         0: .line 952
            aload 0 /* fileCache */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            invokevirtual org.glassfish.grizzly.monitoring.DefaultMonitoringConfig.getProbesUnsafe:()[Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
         1: .line 951
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         2: .line 953
            aload 2 /* probes */
            ifnull 8
         3: .line 954
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 7
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] top int int org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         5: .line 955
            aload 3 /* probe */
            aload 0 /* fileCache */
            aload 1 /* entry */
            invokeinterface org.glassfish.grizzly.http.server.filecache.FileCacheProbe.onEntryAddedEvent:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         6: .line 954
            iinc 4 1
      StackMap locals:
      StackMap stack:
         7: iload 4
            iload 5
            if_icmplt 4
         8: .line 958
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    9     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            2    9     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            5    6     3      probe  Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
    MethodParameters:
           Name  Flags
      fileCache  final
      entry      final

  protected static void notifyProbesEntryRemoved(org.glassfish.grizzly.http.server.filecache.FileCache, org.glassfish.grizzly.http.server.filecache.FileCacheEntry);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         0: .line 969
            aload 0 /* fileCache */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            invokevirtual org.glassfish.grizzly.monitoring.DefaultMonitoringConfig.getProbesUnsafe:()[Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
         1: .line 968
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         2: .line 970
            aload 2 /* probes */
            ifnull 8
         3: .line 971
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 7
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] top int int org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         5: .line 972
            aload 3 /* probe */
            aload 0 /* fileCache */
            aload 1 /* entry */
            invokeinterface org.glassfish.grizzly.http.server.filecache.FileCacheProbe.onEntryRemovedEvent:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         6: .line 971
            iinc 4 1
      StackMap locals:
      StackMap stack:
         7: iload 4
            iload 5
            if_icmplt 4
         8: .line 975
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    9     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            2    9     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            5    6     3      probe  Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
    MethodParameters:
           Name  Flags
      fileCache  final
      entry      final

  protected static void notifyProbesEntryHit(org.glassfish.grizzly.http.server.filecache.FileCache, org.glassfish.grizzly.http.server.filecache.FileCacheEntry);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
        start local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
         0: .line 986
            aload 0 /* fileCache */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            invokevirtual org.glassfish.grizzly.monitoring.DefaultMonitoringConfig.getProbesUnsafe:()[Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
         1: .line 985
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         2: .line 987
            aload 2 /* probes */
            ifnull 8
         3: .line 988
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 7
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] top int int org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         5: .line 989
            aload 3 /* probe */
            aload 0 /* fileCache */
            aload 1 /* entry */
            invokeinterface org.glassfish.grizzly.http.server.filecache.FileCacheProbe.onEntryHitEvent:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;)V
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         6: .line 988
            iinc 4 1
      StackMap locals:
      StackMap stack:
         7: iload 4
            iload 5
            if_icmplt 4
         8: .line 992
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
        end local 1 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    9     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            2    9     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            5    6     3      probe  Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
    MethodParameters:
           Name  Flags
      fileCache  final
      entry      final

  protected static void notifyProbesEntryMissed(org.glassfish.grizzly.http.server.filecache.FileCache, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCache;Lorg/glassfish/grizzly/http/HttpRequestPacket;)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
        start local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 1004
            aload 0 /* fileCache */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            invokevirtual org.glassfish.grizzly.monitoring.DefaultMonitoringConfig.getProbesUnsafe:()[Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
         1: .line 1003
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         2: .line 1005
            aload 2 /* probes */
            ifnull 10
            aload 2 /* probes */
            arraylength
            ifle 10
         3: .line 1006
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 9
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.HttpRequestPacket org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] top int int org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         5: .line 1007
            aload 3 /* probe */
            aload 0 /* fileCache */
            aload 1 /* request */
            getstatic org.glassfish.grizzly.http.util.Header.Host:Lorg/glassfish/grizzly/http/util/Header;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getHeader:(Lorg/glassfish/grizzly/http/util/Header;)Ljava/lang/String;
         6: .line 1008
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getRequestURI:()Ljava/lang/String;
         7: .line 1007
            invokeinterface org.glassfish.grizzly.http.server.filecache.FileCacheProbe.onEntryMissedEvent:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/String;Ljava/lang/String;)V
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         8: .line 1006
            iinc 4 1
      StackMap locals:
      StackMap stack:
         9: iload 4
            iload 5
            if_icmplt 4
        10: .line 1011
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.HttpRequestPacket org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
        end local 1 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   11     1    request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            2   11     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            5    8     3      probe  Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
    MethodParameters:
           Name  Flags
      fileCache  final
      request    final

  protected static void notifyProbesError(org.glassfish.grizzly.http.server.filecache.FileCache, java.lang.Throwable);
    descriptor: (Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
        start local 1 // java.lang.Throwable error
         0: .line 1021
            aload 0 /* fileCache */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.monitoringConfig:Lorg/glassfish/grizzly/monitoring/DefaultMonitoringConfig;
            invokevirtual org.glassfish.grizzly.monitoring.DefaultMonitoringConfig.getProbesUnsafe:()[Ljava/lang/Object;
            checkcast org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
         1: .line 1020
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         2: .line 1022
            aload 2 /* probes */
            ifnull 8
         3: .line 1023
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 7
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.lang.Throwable org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] top int int org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
         4: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         5: .line 1024
            aload 3 /* probe */
            aload 0 /* fileCache */
            aload 1 /* error */
            invokeinterface org.glassfish.grizzly.http.server.filecache.FileCacheProbe.onErrorEvent:(Lorg/glassfish/grizzly/http/server/filecache/FileCache;Ljava/lang/Throwable;)V
        end local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         6: .line 1023
            iinc 4 1
      StackMap locals:
      StackMap stack:
         7: iload 4
            iload 5
            if_icmplt 4
         8: .line 1027
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.lang.Throwable org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
        end local 1 // java.lang.Throwable error
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache fileCache
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    9     1      error  Ljava/lang/Throwable;
            2    9     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            5    6     3      probe  Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
    MethodParameters:
           Name  Flags
      fileCache  final
      error      final

  protected static long convertToLong(java.lang.String);
    descriptor: (Ljava/lang/String;)J
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // java.lang.String dateHeader
         0: .line 1031
            aload 0 /* dateHeader */
            ifnonnull 2
         1: .line 1032
            ldc -1
            lreturn
         2: .line 1034
      StackMap locals:
      StackMap stack:
            invokestatic org.glassfish.grizzly.http.server.util.SimpleDateFormats.create:()Lorg/glassfish/grizzly/http/server/util/SimpleDateFormats;
            astore 1 /* formats */
        start local 1 // org.glassfish.grizzly.http.server.util.SimpleDateFormats formats
         3: .line 1038
            aload 0 /* dateHeader */
            aload 1 /* formats */
            invokevirtual org.glassfish.grizzly.http.server.util.SimpleDateFormats.getFormats:()[Ljava/text/SimpleDateFormat;
            invokestatic org.glassfish.grizzly.http.util.FastHttpDateFormat.parseDate:(Ljava/lang/String;[Ljava/text/DateFormat;)J
            lstore 2 /* result */
        start local 2 // long result
         4: .line 1039
            lload 2 /* result */
            ldc -1
            lcmp
            ifeq 8
         5: .line 1040
            lload 2 /* result */
            lstore 5
         6: .line 1044
            aload 1 /* formats */
            invokevirtual org.glassfish.grizzly.http.server.util.SimpleDateFormats.recycle:()V
         7: .line 1040
            lload 5
            lreturn
         8: .line 1042
      StackMap locals: org.glassfish.grizzly.http.server.util.SimpleDateFormats long
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            aload 0 /* dateHeader */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // long result
         9: .line 1043
      StackMap locals: java.lang.String org.glassfish.grizzly.http.server.util.SimpleDateFormats
      StackMap stack: java.lang.Throwable
            astore 4
        10: .line 1044
            aload 1 /* formats */
            invokevirtual org.glassfish.grizzly.http.server.util.SimpleDateFormats.recycle:()V
        11: .line 1045
            aload 4
            athrow
        end local 1 // org.glassfish.grizzly.http.server.util.SimpleDateFormats formats
        end local 0 // java.lang.String dateHeader
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0  dateHeader  Ljava/lang/String;
            3   12     1     formats  Lorg/glassfish/grizzly/http/server/util/SimpleDateFormats;
            4    9     2      result  J
      Exception table:
        from    to  target  type
           3     6       9  any
           8     9       9  any
    MethodParameters:
            Name  Flags
      dateHeader  final

  static int[] $SWITCH_TABLE$org$glassfish$grizzly$http$CompressionConfig$CompressionMode();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 62
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$CompressionConfig$CompressionMode:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.glassfish.grizzly.http.CompressionConfig$CompressionMode.values:()[Lorg/glassfish/grizzly/http/CompressionConfig$CompressionMode;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.glassfish.grizzly.http.CompressionConfig$CompressionMode.FORCE:Lorg/glassfish/grizzly/http/CompressionConfig$CompressionMode;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig$CompressionMode.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.glassfish.grizzly.http.CompressionConfig$CompressionMode.OFF:Lorg/glassfish/grizzly/http/CompressionConfig$CompressionMode;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig$CompressionMode.ordinal:()I
            iconst_1
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.glassfish.grizzly.http.CompressionConfig$CompressionMode.ON:Lorg/glassfish/grizzly/http/CompressionConfig$CompressionMode;
            invokevirtual org.glassfish.grizzly.http.CompressionConfig$CompressionMode.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            dup
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$CompressionConfig$CompressionMode:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError

  static int[] $SWITCH_TABLE$org$glassfish$grizzly$http$server$filecache$FileCache$CacheType();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 62
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$server$filecache$FileCache$CacheType:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.values:()[Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.FILE:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.HEAP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.ordinal:()I
            iconst_1
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.MAPPED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheType;
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache$CacheType.ordinal:()I
            iconst_4
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.$SWITCH_TABLE$org$glassfish$grizzly$http$server$filecache$FileCache$CacheType:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
}
Signature: Ljava/lang/Object;Lorg/glassfish/grizzly/monitoring/MonitoringAware<Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;>;
SourceFile: "FileCache.java"
NestMembers:
  org.glassfish.grizzly.http.server.filecache.FileCache$1  org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult  org.glassfish.grizzly.http.server.filecache.FileCache$CacheType  org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver  org.glassfish.grizzly.http.server.filecache.FileCache$EntryWorker
InnerClasses:
  public MapMode = java.nio.channels.FileChannel$MapMode of java.nio.channels.FileChannel
  public final CompressionMode = org.glassfish.grizzly.http.CompressionConfig$CompressionMode of org.glassfish.grizzly.http.CompressionConfig
  org.glassfish.grizzly.http.server.filecache.FileCache$1
  public final CacheResult = org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult of org.glassfish.grizzly.http.server.filecache.FileCache
  public final CacheType = org.glassfish.grizzly.http.server.filecache.FileCache$CacheType of org.glassfish.grizzly.http.server.filecache.FileCache
  private EntryResolver = org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver of org.glassfish.grizzly.http.server.filecache.FileCache
  private EntryWorker = org.glassfish.grizzly.http.server.filecache.FileCache$EntryWorker of org.glassfish.grizzly.http.server.filecache.FileCache
  public DelayQueue = org.glassfish.grizzly.utils.DelayedExecutor$DelayQueue of org.glassfish.grizzly.utils.DelayedExecutor
  public abstract Resolver = org.glassfish.grizzly.utils.DelayedExecutor$Resolver of org.glassfish.grizzly.utils.DelayedExecutor
  public abstract Worker = org.glassfish.grizzly.utils.DelayedExecutor$Worker of org.glassfish.grizzly.utils.DelayedExecutor