View Javadoc

1   // ========================================================================
2   // Copyright (c) 2004-2009 Mort Bay Consulting Pty. Ltd.
3   // ------------------------------------------------------------------------
4   // All rights reserved. This program and the accompanying materials
5   // are made available under the terms of the Eclipse Public License v1.0
6   // and Apache License v2.0 which accompanies this distribution.
7   // The Eclipse Public License is available at 
8   // http://www.eclipse.org/legal/epl-v10.html
9   // The Apache License v2.0 is available at
10  // http://www.opensource.org/licenses/apache2.0.php
11  // You may elect to redistribute this code under either of these licenses. 
12  // ========================================================================
13  
14  package org.eclipse.jetty.http;
15  
16  import java.io.InputStream;
17  import java.io.InputStreamReader;
18  import java.io.LineNumberReader;
19  
20  import org.eclipse.jetty.io.Buffer;
21  import org.eclipse.jetty.io.BufferCache;
22  import org.eclipse.jetty.io.ByteArrayBuffer;
23  import org.eclipse.jetty.util.log.Log;
24  
25  /**
26   * Cached HTTP Header values.
27   * This class caches the conversion of common HTTP Header values to and from {@link ByteArrayBuffer} instances.
28   * The resource "/org/eclipse/jetty/useragents" is checked for a list of common user agents, so that repeated
29   * creation of strings for these agents can be avoided.
30   * 
31   * 
32   */
33  public class HttpHeaderValues extends BufferCache
34  {
35      public final static String
36          CLOSE="close",
37          CHUNKED="chunked",
38          GZIP="gzip",
39          IDENTITY="identity",
40          KEEP_ALIVE="keep-alive",
41          CONTINUE="100-continue",
42          PROCESSING="102-processing",
43          TE="TE",
44          BYTES="bytes",
45          NO_CACHE="no-cache",
46          UPGRADE="Upgrade";
47  
48      public final static int
49          CLOSE_ORDINAL=1,
50          CHUNKED_ORDINAL=2,
51          GZIP_ORDINAL=3,
52          IDENTITY_ORDINAL=4,
53          KEEP_ALIVE_ORDINAL=5,
54          CONTINUE_ORDINAL=6,
55          PROCESSING_ORDINAL=7,
56          TE_ORDINAL=8,
57          BYTES_ORDINAL=9,
58          NO_CACHE_ORDINAL=10,
59          UPGRADE_ORDINAL=11;
60      
61      public final static HttpHeaderValues CACHE= new HttpHeaderValues();
62  
63      public final static Buffer 
64          CLOSE_BUFFER=CACHE.add(CLOSE,CLOSE_ORDINAL),
65          CHUNKED_BUFFER=CACHE.add(CHUNKED,CHUNKED_ORDINAL),
66          GZIP_BUFFER=CACHE.add(GZIP,GZIP_ORDINAL),
67          IDENTITY_BUFFER=CACHE.add(IDENTITY,IDENTITY_ORDINAL),
68          KEEP_ALIVE_BUFFER=CACHE.add(KEEP_ALIVE,KEEP_ALIVE_ORDINAL),
69          CONTINUE_BUFFER=CACHE.add(CONTINUE, CONTINUE_ORDINAL),
70          PROCESSING_BUFFER=CACHE.add(PROCESSING, PROCESSING_ORDINAL),
71          TE_BUFFER=CACHE.add(TE,TE_ORDINAL),
72          BYTES_BUFFER=CACHE.add(BYTES,BYTES_ORDINAL),
73          NO_CACHE_BUFFER=CACHE.add(NO_CACHE,NO_CACHE_ORDINAL),
74          UPGRADE_BUFFER=CACHE.add(UPGRADE,UPGRADE_ORDINAL);
75          
76      static
77      {  
78          int index=100;
79          CACHE.add("gzip",index++);
80          CACHE.add("gzip,deflate",index++);
81          CACHE.add("deflate",index++);
82  
83          InputStream ua = HttpHeaderValues.class.getResourceAsStream("/org/eclipse/jetty/http/useragents");
84          try
85          {
86              if (ua!=null)
87              {
88                  try
89                  {
90                      LineNumberReader in = new LineNumberReader(new InputStreamReader(ua));
91                      String line = in.readLine();
92                      while (line!=null)
93                      {
94                          CACHE.add(line,index++);
95                          line = in.readLine();
96                      }
97                  }
98                  finally
99                  {
100                     ua.close();
101                 }
102             }
103         }
104         catch(Exception e)
105         {
106             Log.warn(e.toString());
107             Log.debug(e);
108         }
109     }
110 }