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 63
            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
            putstatic org.glassfish.grizzly.http.server.filecache.FileCache.TMP_DIR:Ljava/io/File;
         1: .line 65
            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;
         2: .line 75
            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 80
            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 85
            aload 0 /* this */
            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;
         3: .line 87
            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;
         4: .line 92
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.secondsMaxAge:I
         5: .line 97
            aload 0 /* this */
            sipush 1024
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxCacheEntries:I
         6: .line 102
            aload 0 /* this */
            ldc -9223372036854775808
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.minEntrySize:J
         7: .line 107
            aload 0 /* this */
            ldc 9223372036854775807
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxEntrySize:J
         8: .line 112
            aload 0 /* this */
            ldc 9223372036854775807
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxLargeFileCacheSize:J
         9: .line 117
            aload 0 /* this */
            ldc 1048576
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxSmallFileCacheSize:J
        10: .line 122
            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;
        11: .line 127
            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;
        12: .line 132
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.enabled:Z
        13: .line 139
            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;
        14: .line 143
            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;
        15: .line 153
            aload 0 /* this */
            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;
        16: .line 62
            return
        end local 0 // org.glassfish.grizzly.http.server.filecache.FileCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     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 165
            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
            new org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver
            dup
            invokespecial org.glassfish.grizzly.http.server.filecache.FileCache$EntryResolver.<init>:()V
            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;
         1: .line 166
            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    2     0             this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    2     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 174
            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 182
            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 190
            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 192
            aload 5 /* requestURI */
            ifnonnull 3
         2: .line 193
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
         3: .line 196
      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 197
            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 198
            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 199
            aload 7 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCacheKey.recycle:()V
         7: .line 200
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED_ENTRY_EXISTS:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
         8: .line 203
      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 205
            iload 8 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxCacheEntries:()I
            if_icmple 14
        10: .line 206
            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 207
            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 208
            aload 7 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCacheKey.recycle:()V
        13: .line 209
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.FAILED_CACHE_FULL:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            areturn
        14: .line 212
      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 213
            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 215
            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 218
            aload 2 /* cacheFile */
            ifnull 21
        18: .line 219
            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 220
            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 221
            goto 23
        end local 12 // org.glassfish.grizzly.http.server.filecache.FileCacheEntry entry
        21: .line 222
      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 223
            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 226
      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 227
            aload 12 /* entry */
            aload 5 /* requestURI */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.requestURI:Ljava/lang/String;
        25: .line 229
            aload 12 /* entry */
            lload 3 /* lastModified */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
        26: .line 230
            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 231
            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 232
            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 233
            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 234
            aload 12 /* entry */
            aload 6 /* host */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.host:Ljava/lang/String;
        31: .line 235
            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 236
            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 238
            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 240
            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 242
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getSecondsMaxAge:()I
            istore 13 /* secondsMaxAgeLocal */
        start local 13 // int secondsMaxAgeLocal
        36: .line 243
            iload 13 /* secondsMaxAgeLocal */
            ifle 38
        37: .line 244
            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 247
      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 39
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.OK_CACHED_TIMESTAMP:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
            goto 40
      StackMap locals:
      StackMap stack:
        39: getstatic org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult.OK_CACHED:Lorg/glassfish/grizzly/http/server/filecache/FileCache$CacheResult;
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache$CacheResult
        40: 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   41     0                this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   41     1             request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            0   41     2           cacheFile  Ljava/io/File;
            0   41     3        lastModified  J
            1   41     5          requestURI  Ljava/lang/String;
            4   41     6                host  Ljava/lang/String;
            5   41     7                 key  Lorg/glassfish/grizzly/http/server/filecache/FileCacheKey;
            9   41     8                size  I
           15   41     9            response  Lorg/glassfish/grizzly/http/HttpResponsePacket;
           16   41    10             headers  Lorg/glassfish/grizzly/http/util/MimeHeaders;
           17   41    11         contentType  Ljava/lang/String;
           19   21    12               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
           22   41    12               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
           36   41    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 256
            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 2
         1: .line 257
            aconst_null
            areturn
         2: .line 260
      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
         3: .line 261
            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
         4: .line 262
            aload 2 /* key */
            invokevirtual org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey.recycle:()V
         5: .line 264
            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
         6: .line 267
            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
         7: .line 269
            aload 4 /* httpStatus */
            ifnonnull 8
            iconst_1
            goto 9
      StackMap locals: org.glassfish.grizzly.http.server.filecache.LazyFileCacheKey org.glassfish.grizzly.http.server.filecache.FileCacheEntry org.glassfish.grizzly.http.util.HttpStatus
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 5 /* flushBody */
        start local 5 // boolean flushBody
        10: .line 270
            iload 5 /* flushBody */
            ifeq 12
            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 12
        11: .line 271
            aconst_null
            areturn
        12: .line 274
      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
            aload 4 /* httpStatus */
            goto 14
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.HttpResponsePacket
        13: getstatic org.glassfish.grizzly.http.util.HttpStatus.OK_200:Lorg/glassfish/grizzly/http/util/HttpStatus;
      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
        14: invokevirtual org.glassfish.grizzly.http.HttpResponsePacket.setStatus:(Lorg/glassfish/grizzly/http/util/HttpStatus;)V
        15: .line 276
            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 277
            aload 3 /* entry */
        17: areturn
        end local 5 // boolean flushBody
        end local 4 // org.glassfish.grizzly.http.util.HttpStatus httpStatus
        18: .line 280
      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 281
            goto 23
      StackMap locals:
      StackMap stack: java.lang.Exception
        20: astore 4 /* e */
        start local 4 // java.lang.Exception e
        21: .line 282
            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 285
            getstatic org.glassfish.grizzly.http.server.filecache.FileCache.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            invokestatic org.glassfish.grizzly.localization.LogMessages.WARNING_GRIZZLY_HTTP_SERVER_FILECACHE_GENERAL_ERROR:()Ljava/lang/String;
            aload 4 /* e */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 4 // java.lang.Exception e
        23: .line 288
      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   24     0        this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   24     1     request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            3   24     2         key  Lorg/glassfish/grizzly/http/server/filecache/LazyFileCacheKey;
            4   24     3       entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            7   18     4  httpStatus  Lorg/glassfish/grizzly/http/util/HttpStatus;
           10   18     5   flushBody  Z
           21   23     4           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           5    11      20  Class java.lang.Exception
          12    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 292
            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 293
            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 296
      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 297
            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 298
            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 299
            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 302
      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 303
            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 306
            ldc "org.glassfish.grizzly.http.server.filecache.jmx.FileCache"
            aload 0 /* this */
            ldc Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            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    1     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 313
            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 314
            aload 2 /* entry */
            ifnonnull 4
         2: .line 315
            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 316
            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 319
      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 320
            aload 2 /* entry */
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFileSize:J
         6: .line 322
            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 332
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            lstore 2 /* size */
        start local 2 // long size
         1: .line 333
            lload 2 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMaxEntrySize:()J
            lcmp
            ifle 3
         2: .line 334
            aconst_null
            areturn
         3: .line 339
      StackMap locals: long
      StackMap stack:
            aconst_null
            astore 6 /* fileChannel */
        start local 6 // java.nio.channels.FileChannel fileChannel
         4: .line 340
            aconst_null
            astore 7 /* stream */
        start local 7 // java.io.FileInputStream stream
         5: .line 342
            lload 2 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.getMinEntrySize:()J
            lcmp
            ifle 21
         6: .line 343
            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 345
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subMappedMemorySize:(J)J
            pop2
         8: .line 372
            aload 7 /* stream */
            ifnull 13
         9: .line 374
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        10: .line 375
            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 376
            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 379
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 18
        14: .line 381
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        15: .line 382
            goto 18
      StackMap locals:
      StackMap stack: java.io.IOException
        16: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        17: .line 383
            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 346
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        19: .line 349
      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 350
            goto 35
        end local 4 // org.glassfish.grizzly.http.server.filecache.FileCache$CacheType type
        21: .line 351
      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 353
            aload 0 /* this */
            lload 2 /* size */
            invokevirtual org.glassfish.grizzly.http.server.filecache.FileCache.subHeapSize:(J)J
            pop2
        23: .line 372
            aload 7 /* stream */
            ifnull 28
        24: .line 374
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        25: .line 375
            goto 28
      StackMap locals:
      StackMap stack: java.io.IOException
        26: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        27: .line 376
            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 379
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 33
        29: .line 381
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        30: .line 382
            goto 33
      StackMap locals:
      StackMap stack: java.io.IOException
        31: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        32: .line 383
            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 354
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        34: .line 357
      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 360
      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 361
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 6 /* fileChannel */
        37: .line 363
            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 365
            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 366
            aload 5 /* bb */
            checkcast java.nio.MappedByteBuffer
            invokevirtual java.nio.MappedByteBuffer.load:()Ljava/nio/MappedByteBuffer;
            pop
        40: .line 368
            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 369
            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 372
            aload 7 /* stream */
            ifnull 48
        44: .line 374
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        45: .line 375
            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 376
            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 379
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 53
        49: .line 381
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        50: .line 382
            goto 53
      StackMap locals:
      StackMap stack: java.io.IOException
        51: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        52: .line 383
            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 370
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 8 // java.lang.Exception e
        54: .line 371
      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 372
            aload 7 /* stream */
            ifnull 60
        56: .line 374
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        57: .line 375
            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 376
            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 379
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 65
        61: .line 381
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        62: .line 382
            goto 65
      StackMap locals:
      StackMap stack: java.io.IOException
        63: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        64: .line 383
            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 386
      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 372
      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 374
            aload 7 /* stream */
            invokevirtual java.io.FileInputStream.close:()V
        68: .line 375
            goto 71
      StackMap locals:
      StackMap stack: java.io.IOException
        69: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        70: .line 376
            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 379
      StackMap locals:
      StackMap stack:
            aload 6 /* fileChannel */
            ifnull 76
        72: .line 381
            aload 6 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        73: .line 382
            goto 76
      StackMap locals:
      StackMap stack: java.io.IOException
        74: astore 10 /* ignored */
        start local 10 // java.io.IOException ignored
        75: .line 383
            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 388
      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 389
            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 390
            aload 8 /* entry */
            lload 2 /* size */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.plainFileSize:J
        79: .line 391
            aload 8 /* entry */
            aload 5 /* bb */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.bb:Ljava/nio/ByteBuffer;
        80: .line 393
            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 400
            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: 6
          }
         1: .line 402
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 404
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         3: .line 406
      StackMap locals:
      StackMap stack:
            aload 1 /* cacheFile */
            invokevirtual java.io.File.length:()J
            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 5
         4: .line 407
            iconst_0
            ireturn
         5: .line 410
      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
         6: .line 414
      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    7     0         this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    7     1    cacheFile  Ljava/io/File;
            0    7     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 424
            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 433
            aload 0 /* this */
            iload 1 /* secondsMaxAge */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.secondsMaxAge:I
         1: .line 434
            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 440
            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 449
            aload 0 /* this */
            iload 1 /* maxCacheEntries */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxCacheEntries:I
         1: .line 450
            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 456
            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 465
            aload 0 /* this */
            lload 1 /* minEntrySize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.minEntrySize:J
         1: .line 466
            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 472
            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 481
            aload 0 /* this */
            lload 1 /* maxEntrySize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxEntrySize:J
         1: .line 482
            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 488
            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 497
            aload 0 /* this */
            lload 1 /* maxLargeFileCacheSize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxLargeFileCacheSize:J
         1: .line 498
            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 505
            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 515
            aload 0 /* this */
            lload 1 /* maxSmallFileCacheSize */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.maxSmallFileCacheSize:J
         1: .line 516
            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 522
            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 531
            aload 0 /* this */
            iload 1 /* enabled */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.enabled:Z
         1: .line 532
            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 538
            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 545
            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 552
            aload 0 /* this */
            aload 1 /* compressedFilesFolder */
            ifnull 1
            aload 1 /* compressedFilesFolder */
            goto 2
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache
         1: getstatic org.glassfish.grizzly.http.server.filecache.FileCache.TMP_DIR:Ljava/io/File;
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File
      StackMap stack: org.glassfish.grizzly.http.server.filecache.FileCache java.io.File
         2: putfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
         3: .line 553
            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    4     0                   this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    4     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 581
            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 594
            aload 0 /* this */
            iload 1 /* fileSendEnabled */
            putfield org.glassfish.grizzly.http.server.filecache.FileCache.fileSendEnabled:Z
         1: .line 595
            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 602
            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;
            ldc ".tmpzip"
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.server.filecache.FileCache.compressedFilesFolder:Ljava/io/File;
            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
         1: .line 603
            aload 2 /* tmpCompressedFile */
            invokevirtual java.io.File.deleteOnExit:()V
         2: .line 605
            aconst_null
            astore 3 /* in */
        start local 3 // java.io.InputStream in
         3: .line 606
            aconst_null
            astore 4 /* out */
        start local 4 // java.io.OutputStream out
         4: .line 608
            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 */
         5: .line 609
            new java.util.zip.GZIPOutputStream
            dup
            new java.io.FileOutputStream
            dup
            aload 2 /* tmpCompressedFile */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/File;)V
            invokespecial java.util.zip.GZIPOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 4 /* out */
         6: .line 611
            sipush 1024
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
         7: .line 614
      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
         8: .line 615
            iload 6 /* readNow */
            iconst_m1
            if_icmpne 10
         9: .line 616
            goto 22
        10: .line 619
      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
        11: .line 620
            goto 7
        end local 5 // byte[] tmp
        12: .line 621
      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
        13: .line 622
            aload 3 /* in */
            ifnull 17
        14: .line 624
            aload 3 /* in */
            invokevirtual java.io.InputStream.close:()V
        15: .line 625
            goto 17
      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
        16: pop
        17: .line 628
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            ifnull 21
        18: .line 630
            aload 4 /* out */
            invokevirtual java.io.OutputStream.close:()V
        19: .line 631
            goto 21
      StackMap locals:
      StackMap stack: java.io.IOException
        20: pop
        21: .line 634
      StackMap locals:
      StackMap stack:
            aload 7
            athrow
        22: .line 622
      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 26
        23: .line 624
            aload 3 /* in */
            invokevirtual java.io.InputStream.close:()V
        24: .line 625
            goto 26
      StackMap locals:
      StackMap stack: java.io.IOException
        25: pop
        26: .line 628
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            ifnull 30
        27: .line 630
            aload 4 /* out */
            invokevirtual java.io.OutputStream.close:()V
        28: .line 631
            goto 30
      StackMap locals:
      StackMap stack: java.io.IOException
        29: pop
        30: .line 636
      StackMap locals:
      StackMap stack:
            aload 2 /* tmpCompressedFile */
            invokevirtual java.io.File.length:()J
            lstore 5 /* size */
        start local 5 // long size
        31: .line 638
            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: 32
                    2: 32
                    3: 44
              default: 45
          }
        32: .line 641
      StackMap locals: long
      StackMap stack:
            new java.io.FileInputStream
            dup
            aload 2 /* tmpCompressedFile */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 7 /* cFis */
        start local 7 // java.io.FileInputStream cFis
        33: .line 644
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 8 /* cFileChannel */
        start local 8 // java.nio.channels.FileChannel cFileChannel
        34: .line 646
            aload 8 /* cFileChannel */
            getstatic java.nio.channels.FileChannel$MapMode.READ_ONLY:Ljava/nio/channels/FileChannel$MapMode;
            lconst_0
            lload 5 /* size */
            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
        35: .line 648
            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 37
        36: .line 649
            aload 9 /* compressedBb */
            invokevirtual java.nio.MappedByteBuffer.load:()Ljava/nio/MappedByteBuffer;
            pop
        37: .line 652
      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
        38: .line 653
            goto 42
      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
        39: astore 10
        40: .line 654
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.close:()V
        41: .line 655
            aload 10
            athrow
        42: .line 654
      StackMap locals:
      StackMap stack:
            aload 7 /* cFis */
            invokevirtual java.io.FileInputStream.close:()V
        43: .line 657
            goto 46
        end local 7 // java.io.FileInputStream cFis
        44: .line 660
      StackMap locals:
      StackMap stack:
            goto 46
        45: .line 664
      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
        46: .line 667
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            lload 5 /* size */
            putfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.compressedFileSize:J
        47: .line 668
            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
        48: .line 669
            goto 51
      StackMap locals: org.glassfish.grizzly.http.server.filecache.FileCache org.glassfish.grizzly.http.server.filecache.FileCacheEntry
      StackMap stack: java.io.IOException
        49: astore 2 /* e */
        start local 2 // java.io.IOException e
        50: .line 670
            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
        51: .line 672
      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   52     0               this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   52     1              entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            1   48     2  tmpCompressedFile  Ljava/io/File;
            3   48     3                 in  Ljava/io/InputStream;
            4   48     4                out  Ljava/io/OutputStream;
            7   12     5                tmp  [B
            8   11     6            readNow  I
           31   48     5               size  J
           33   44     7               cFis  Ljava/io/FileInputStream;
           34   38     8       cFileChannel  Ljava/nio/channels/FileChannel;
           35   38     9       compressedBb  Ljava/nio/MappedByteBuffer;
           50   51     2                  e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4    12      12  any
          14    15      16  Class java.io.IOException
          18    19      20  Class java.io.IOException
          23    24      25  Class java.io.IOException
          27    28      29  Class java.io.IOException
          33    39      39  any
           0    48      49  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 677
            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 681
            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 690
            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 694
            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 698
            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 707
            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 718
            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 719
            aload 3 /* httpStatus */
            ifnonnull 7
         2: .line 720
            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 721
            aload 3 /* httpStatus */
            ifnonnull 7
         4: .line 722
            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 723
            aload 3 /* httpStatus */
            ifnonnull 7
         6: .line 724
            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 729
      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 740
            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 741
            aload 3 /* reqModified */
            ifnull 13
         2: .line 745
            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 746
            getstatic org.glassfish.grizzly.http.util.HttpStatus.NOT_MODIFIED_304:Lorg/glassfish/grizzly/http/util/HttpStatus;
         4: areturn
         5: .line 748
      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 749
            lload 4 /* headerValue */
            ldc -1
            lcmp
            ifeq 13
         7: .line 750
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
            lstore 6 /* lastModified */
        start local 6 // long lastModified
         8: .line 753
            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 13
            lload 6 /* lastModified */
            lload 4 /* headerValue */
            lsub
            ldc 1000
            lcmp
            ifgt 13
         9: .line 756
            getstatic org.glassfish.grizzly.http.util.HttpStatus.NOT_MODIFIED_304:Lorg/glassfish/grizzly/http/util/HttpStatus;
        10: areturn
        end local 6 // long lastModified
        end local 4 // long headerValue
        end local 3 // java.lang.String reqModified
        11: .line 760
      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 761
            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 764
      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      reqModified  Ljava/lang/String;
            6   11     4      headerValue  J
            8   11     6     lastModified  J
           12   13     3  illegalArgument  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
           0     4      11  Class java.lang.IllegalArgumentException
           5    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 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 775
            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 776
            aload 3 /* headerValue */
            ifnull 18
         2: .line 777
            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 779
            iconst_0
            istore 5 /* conditionSatisfied */
        start local 5 // boolean conditionSatisfied
         4: .line 781
            aload 3 /* headerValue */
            ldc "*"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 12
         5: .line 783
            new java.util.StringTokenizer
            dup
            aload 3 /* headerValue */
            ldc ","
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 6 /* commaTokenizer */
        start local 6 // java.util.StringTokenizer commaTokenizer
         6: .line 785
            goto 10
         7: .line 786
      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
         8: .line 787
            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 788
            iconst_1
            istore 5 /* conditionSatisfied */
        end local 7 // java.lang.String currentToken
        10: .line 785
      StackMap locals:
      StackMap stack:
            iload 5 /* conditionSatisfied */
            ifne 13
            aload 6 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 7
        end local 6 // java.util.StringTokenizer commaTokenizer
        11: .line 792
            goto 13
        12: .line 793
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 5 /* conditionSatisfied */
        13: .line 795
      StackMap locals:
      StackMap stack:
            iload 5 /* conditionSatisfied */
            ifeq 18
        14: .line 801
            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
        15: .line 802
            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 16
            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 17
        16: .line 803
      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
        17: .line 805
      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
        18: .line 810
      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   19     0                this  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0   19     1               entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            0   19     2             request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1   19     3         headerValue  Ljava/lang/String;
            3   18     4                eTag  Ljava/lang/String;
            4   18     5  conditionSatisfied  Z
            6   11     6      commaTokenizer  Ljava/util/StringTokenizer;
            8   10     7        currentToken  Ljava/lang/String;
           15   18     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 822
            aload 1 /* entry */
            getfield org.glassfish.grizzly.http.server.filecache.FileCacheEntry.lastModified:J
            lstore 3 /* lastModified */
        start local 3 // long lastModified
         1: .line 823
            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 824
            aload 5 /* h */
            ifnull 13
         3: .line 828
            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 831
            getstatic org.glassfish.grizzly.http.util.HttpStatus.PRECONDITION_FAILED_412:Lorg/glassfish/grizzly/http/util/HttpStatus;
         5: areturn
         6: .line 833
      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 834
            lload 6 /* headerValue */
            ldc -1
            lcmp
            ifeq 13
         8: .line 835
            lload 6 /* headerValue */
            lload 3 /* lastModified */
            lsub
            ldc 1000
            lcmp
            ifgt 13
         9: .line 838
            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 842
      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 843
            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 846
      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 859
            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 860
            aload 3 /* headerValue */
            ifnull 13
         2: .line 861
            aload 3 /* headerValue */
            bipush 42
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpne 13
         3: .line 862
            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 864
            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 865
            iconst_0
            istore 6 /* conditionSatisfied */
        start local 6 // boolean conditionSatisfied
         6: .line 867
            goto 10
         7: .line 868
      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 869
            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 870
            iconst_1
            istore 6 /* conditionSatisfied */
        end local 7 // java.lang.String currentToken
        10: .line 867
      StackMap locals:
      StackMap stack:
            iload 6 /* conditionSatisfied */
            ifne 11
            aload 5 /* commaTokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 7
        11: .line 876
      StackMap locals:
      StackMap stack:
            iload 6 /* conditionSatisfied */
            ifne 13
        12: .line 877
            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 883
      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 891
            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 901
            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[]
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         1: .line 902
            aload 2 /* probes */
            ifnull 7
         2: .line 903
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      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:
         3: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         4: .line 904
            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
         5: .line 903
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 907
      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    8     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            1    8     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            4    5     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 916
            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[]
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         1: .line 917
            aload 2 /* probes */
            ifnull 7
         2: .line 918
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      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:
         3: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         4: .line 919
            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
         5: .line 918
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 922
      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    8     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            1    8     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            4    5     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 931
            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[]
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         1: .line 932
            aload 2 /* probes */
            ifnull 7
         2: .line 933
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      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:
         3: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         4: .line 934
            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
         5: .line 933
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 937
      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    8     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1      entry  Lorg/glassfish/grizzly/http/server/filecache/FileCacheEntry;
            1    8     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            4    5     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 947
            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[]
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         1: .line 948
            aload 2 /* probes */
            ifnull 7
            aload 2 /* probes */
            arraylength
            ifle 7
         2: .line 949
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      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:
         3: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         4: .line 950
            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;
            aload 1 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getRequestURI:()Ljava/lang/String;
            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
         5: .line 949
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 953
      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    8     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1    request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            1    8     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            4    5     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 961
            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[]
            astore 2 /* probes */
        start local 2 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe[] probes
         1: .line 962
            aload 2 /* probes */
            ifnull 7
         2: .line 963
            aload 2 /* probes */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 6
      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:
         3: aload 6
            iload 4
            aaload
            astore 3 /* probe */
        start local 3 // org.glassfish.grizzly.http.server.filecache.FileCacheProbe probe
         4: .line 964
            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
         5: .line 963
            iinc 4 1
      StackMap locals:
      StackMap stack:
         6: iload 4
            iload 5
            if_icmplt 3
         7: .line 967
      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    8     0  fileCache  Lorg/glassfish/grizzly/http/server/filecache/FileCache;
            0    8     1      error  Ljava/lang/Throwable;
            1    8     2     probes  [Lorg/glassfish/grizzly/http/server/filecache/FileCacheProbe;
            4    5     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 971
            aload 0 /* dateHeader */
            ifnonnull 2
         1: .line 972
            ldc -1
            lreturn
         2: .line 975
      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 979
            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 980
            lload 2 /* result */
            ldc -1
            lcmp
            ifeq 8
         5: .line 981
            lload 2 /* result */
            lstore 5
         6: .line 985
            aload 1 /* formats */
            invokevirtual org.glassfish.grizzly.http.server.util.SimpleDateFormats.recycle:()V
         7: .line 981
            lload 5
            lreturn
         8: .line 983
      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 984
      StackMap locals: java.lang.String org.glassfish.grizzly.http.server.util.SimpleDateFormats
      StackMap stack: java.lang.Throwable
            astore 4
        10: .line 985
            aload 1 /* formats */
            invokevirtual org.glassfish.grizzly.http.server.util.SimpleDateFormats.recycle:()V
        11: .line 986
            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