JSONTokener.java
上传用户:shen332233
上传日期:2021-09-03
资源大小:7478k
文件大小:13k
源码类别:

Ajax

开发平台:

Java

  1. package org.json;
  2. /*
  3. Copyright (c) 2002 JSON.org
  4. Permission is hereby granted, free of charge, to any person obtaining a copy 
  5. of this software and associated documentation files (the "Software"), to deal 
  6. in the Software without restriction, including without limitation the rights 
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
  8. copies of the Software, and to permit persons to whom the Software is 
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all 
  11. copies or substantial portions of the Software.
  12. The Software shall be used for Good, not Evil.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
  19. SOFTWARE.
  20. */
  21. import java.text.ParseException;
  22. /**
  23.  * A JSONTokener takes a source string and extracts characters and tokens from
  24.  * it. It is used by the JSONObject and JSONArray constructors to parse
  25.  * JSON source strings.
  26.  * @author JSON.org
  27.  * @version 1
  28.  */
  29. public class JSONTokener {
  30.     /**
  31.      * The index of the next character.
  32.      */
  33.     private int myIndex;
  34.     /**
  35.      * The source string being tokenized.
  36.      */
  37.     private String mySource;
  38.     /**
  39.      * Construct a JSONTokener from a string.
  40.      *
  41.      * @param s     A source string.
  42.      */
  43.     public JSONTokener(String s) {
  44.         myIndex = 0;
  45.         mySource = s;
  46.     }
  47.     /**
  48.      * Back up one character. This provides a sort of lookahead capability,
  49.      * so that you can test for a digit or letter before attempting to parse
  50.      * the next number or identifier.
  51.      */
  52.     public void back() {
  53.         if (myIndex > 0) {
  54.             myIndex -= 1;
  55.         }
  56.     }
  57.     /**
  58.      * Get the hex value of a character (base16).
  59.      * @param c A character between '0' and '9' or between 'A' and 'F' or
  60.      * between 'a' and 'f'.
  61.      * @return  An int between 0 and 15, or -1 if c was not a hex digit.
  62.      */
  63.     public static int dehexchar(char c) {
  64.         if (c >= '0' && c <= '9') {
  65.             return c - '0';
  66.         }
  67.         if (c >= 'A' && c <= 'F') {
  68.             return c + 10 - 'A';
  69.         }
  70.         if (c >= 'a' && c <= 'f') {
  71.             return c + 10 - 'a';
  72.         }
  73.         return -1;
  74.     }
  75.     /**
  76.      * Determine if the source string still contains characters that next()
  77.      * can consume.
  78.      * @return true if not yet at the end of the source.
  79.      */
  80.     public boolean more() {
  81.         return myIndex < mySource.length();
  82.     }
  83.     /**
  84.      * Get the next character in the source string.
  85.      *
  86.      * @return The next character, or 0 if past the end of the source string.
  87.      */
  88.     public char next() {
  89.         char c = more() ? mySource.charAt(myIndex) : 0;
  90.         myIndex += 1;
  91.         return c;
  92.     }
  93.     /**
  94.      * Consume the next character, and check that it matches a specified
  95.      * character.
  96.      * @throws ParseException if the character does not match.
  97.      * @param c The character to match.
  98.      * @return The character.
  99.      */
  100.     public char next(char c) throws ParseException {
  101.         char n = next();
  102.         if (n != c) {
  103.             throw syntaxError("Expected '" + c + "' and instead saw '" +
  104.                     n + "'.");
  105.         }
  106.         return n;
  107.     }
  108.     /**
  109.      * Get the next n characters.
  110.      * @exception ParseException
  111.      *   Substring bounds error if there are not
  112.      *   n characters remaining in the source string.
  113.      *
  114.      * @param n     The number of characters to take.
  115.      * @return      A string of n characters.
  116.      */
  117.      public String next(int n) throws ParseException {
  118.          int i = myIndex;
  119.          int j = i + n;
  120.          if (j >= mySource.length()) {
  121.             throw syntaxError("Substring bounds error");
  122.          }
  123.          myIndex += n;
  124.          return mySource.substring(i, j);
  125.      }
  126.     /**
  127.      * Get the next char in the string, skipping whitespace
  128.      * and comments (slashslash, slashstar, and hash).
  129.      * @throws ParseException
  130.      * @return  A character, or 0 if there are no more characters.
  131.      */
  132.     public char nextClean() throws java.text.ParseException {
  133.         while (true) {
  134.             char c = next();
  135.             if (c == '/') {
  136.                 switch (next()) {
  137.                 case '/':
  138.                     do {
  139.                         c = next();
  140.                     } while (c != 'n' && c != 'r' && c != 0);
  141.                     break;
  142.                 case '*':
  143.                     while (true) {
  144.                         c = next();
  145.                         if (c == 0) {
  146.                             throw syntaxError("Unclosed comment.");
  147.                         }
  148.                         if (c == '*') {
  149.                             if (next() == '/') {
  150.                                 break;
  151.                             }
  152.                             back();
  153.                         }
  154.                     }
  155.                     break;
  156.                 default:
  157.                     back();
  158.                     return '/';
  159.                 }
  160.             } else if (c == '#') {
  161.                 do {
  162.                     c = next();
  163.                 } while (c != 'n' && c != 'r' && c != 0);
  164. } else if (c == 0 || c > ' ') {
  165.                 return c;
  166.             }
  167.         }
  168.     }
  169.     /**
  170.      * Return the characters up to the next close quote character.
  171.      * Backslash processing is done. The formal JSON format does not
  172.      * allow strings in single quotes, but an implementation is allowed to
  173.      * accept them.
  174.      * @exception ParseException Unterminated string.
  175.      * @param quote The quoting character, either 
  176.      *  <code>"</code>&nbsp;<small>(double quote)</small> or 
  177.      *  <code>'</code>&nbsp;<small>(single quote)</small>.
  178.      * @return      A String.
  179.      */
  180.     public String nextString(char quote) throws ParseException {
  181.         char c;
  182.         StringBuffer sb = new StringBuffer();
  183.         while (true) {
  184.             c = next();
  185.             switch (c) {
  186.             case 0:
  187.             case 0x0A:
  188.             case 0x0D:
  189.                 throw syntaxError("Unterminated string");
  190.             case '\':
  191.                 c = next();
  192.                 switch (c) {
  193.                 case 'b':
  194.                     sb.append('b');
  195.                     break;
  196.                 case 't':
  197.                     sb.append('t');
  198.                     break;
  199.                 case 'n':
  200.                     sb.append('n');
  201.                     break;
  202.                 case 'f':
  203.                     sb.append('f');
  204.                     break;
  205.                 case 'r':
  206.                     sb.append('r');
  207.                     break;
  208.                 case 'u':
  209.                     sb.append((char)Integer.parseInt(next(4), 16));
  210.                     break;
  211.                 case 'x' :
  212.                     sb.append((char) Integer.parseInt(next(2), 16));
  213.                     break;
  214.                 default:
  215.                     sb.append(c);
  216.                 }
  217.                 break;
  218.             default:
  219.                 if (c == quote) {
  220.                     return sb.toString();
  221.                 }
  222.                 sb.append(c);
  223.             }
  224.         }
  225.     }
  226.     /**
  227.      * Get the text up but not including the specified character or the
  228.      * end of line, whichever comes first.
  229.      * @param  d A delimiter character.
  230.      * @return   A string.
  231.      */
  232.     public String nextTo(char d) {
  233.         StringBuffer sb = new StringBuffer();
  234.         while (true) {
  235.             char c = next();
  236.             if (c == d || c == 0 || c == 'n' || c == 'r') {
  237.                 if (c != 0) {
  238.                     back();
  239.                 }
  240.                 return sb.toString().trim();
  241.             }
  242.             sb.append(c);
  243.         }
  244.     }
  245.     /**
  246.      * Get the text up but not including one of the specified delimeter
  247.      * characters or the end of line, which ever comes first.
  248.      * @param delimiters A set of delimiter characters.
  249.      * @return A string, trimmed.
  250.      */
  251.     public String nextTo(String delimiters) {
  252.         char c;
  253.         StringBuffer sb = new StringBuffer();
  254.         while (true) {
  255.             c = next();
  256.             if (delimiters.indexOf(c) >= 0 || c == 0 ||
  257.                     c == 'n' || c == 'r') {
  258.                 if (c != 0) {
  259.                     back();
  260.                 }
  261.                 return sb.toString().trim();
  262.             }
  263.             sb.append(c);
  264.         }
  265.     }
  266.     /**
  267.      * Get the next value. The value can be a Boolean, Double, Integer,
  268.      * JSONArray, JSONObject, or String, or the JSONObject.NULL object.
  269.      * @exception ParseException The source does not conform to JSON syntax.
  270.      *
  271.      * @return An object.
  272.      */
  273.     public Object nextValue() throws ParseException {
  274.         char c = nextClean();
  275.         String s;
  276.         switch (c) {
  277.          case '"':
  278.          case ''':
  279. return nextString(c);
  280.          case '{':
  281.             back();
  282.             return new JSONObject(this);
  283.          case '[':
  284.             back();
  285.             return new JSONArray(this);
  286.         }
  287. /*
  288.  * Handle unquoted text. This could be the values true, false, and
  289.  * null, or it can be a number. An implementation (such as this one)
  290.  * is allowed to also accept non-standard forms.
  291.  * 
  292.  * Accumulate characters until we reach the end of the text or a
  293.  * formatting character.
  294.  */
  295.         StringBuffer sb = new StringBuffer();
  296.         char b = c;
  297.         while (c >= ' ' && ",:]}/\[{;=#".indexOf(c) < 0) {
  298.             sb.append(c);
  299.             c = next();
  300.         }
  301.         back();
  302. /*
  303.  * If it is true, false, or null, return the proper value.
  304.  */
  305.         s = sb.toString().trim();
  306.         if (s.equals("")) {
  307.             throw syntaxError("Missing value.");
  308.         }
  309. if (s.equals("true")) {
  310.             return Boolean.TRUE;
  311.         }
  312.         if (s.equals("false")) {
  313.             return Boolean.FALSE;
  314.         }
  315.         if (s.equals("null")) {
  316.             return JSONObject.NULL;
  317.         }
  318. /*
  319.  * If it might be a number, try converting it. We support the 0- and 0x-
  320.  * conventions. If a number cannot be produced, then the value will just
  321.  * be a string. Note that the 0-, 0x-, plus, and implied string 
  322.  * conventions are non-standard. A JSON parser is free to accept 
  323.  * non-JSON forms as long as it accepts all correct JSON forms.
  324.  */
  325.         if ((b >= '0' && b <= '9') || b == '.' || b == '-' || b == '+') {
  326. if (b == '0') {
  327. if (s.length() > 2 && 
  328. (s.charAt(1) == 'x' || s.charAt(1) == 'X')) {
  329. try {
  330. return new Integer(Integer.parseInt(s.substring(2), 
  331.                             16));
  332. } catch (Exception e) {}
  333. } else {
  334. try {
  335.      return new Integer(Integer.parseInt(s, 8));
  336. } catch (Exception e){}
  337. }
  338. }
  339.             try {
  340.                 return new Integer(s);
  341.             } catch (Exception e) {}
  342. try {
  343. return new Double(s);
  344.             }  catch (Exception e) {}
  345.         }
  346.         return s;
  347.     }
  348.     /**
  349.      * Skip characters until the next character is the requested character.
  350.      * If the requested character is not found, no characters are skipped.
  351.      * @param to A character to skip to.
  352.      * @return The requested character, or zero if the requested character
  353.      * is not found.
  354.      */
  355.     public char skipTo(char to) {
  356.         char c;
  357.         int index = myIndex;
  358.         do {
  359.             c = next();
  360.             if (c == 0) {
  361.                 myIndex = index;
  362.                 return c;
  363.             }
  364.         } while (c != to);
  365.         back();
  366.         return c;
  367.     }
  368.     /**
  369.      * Skip characters until past the requested string.
  370.      * If it is not found, we are left at the end of the source.
  371.      * @param to A string to skip past.
  372.      */
  373.     public void skipPast(String to) {
  374.         myIndex = mySource.indexOf(to, myIndex);
  375.         if (myIndex < 0) {
  376.             myIndex = mySource.length();
  377.         } else {
  378.             myIndex += to.length();
  379.         }
  380.     }
  381.     /**
  382.      * Make a ParseException to signal a syntax error.
  383.      *
  384.      * @param message The error message.
  385.      * @return  A ParseException object, suitable for throwing
  386.      */
  387.     public ParseException syntaxError(String message) {
  388.         return new ParseException(message + toString(), myIndex);
  389.     }
  390.     /**
  391.      * Make a printable string of this JSONTokener.
  392.      *
  393.      * @return " at character [myIndex] of [mySource]"
  394.      */
  395.     public String toString() {
  396.         return " at character " + myIndex + " of " + mySource;
  397.     }
  398.     /**
  399.      * Convert <code>%</code><i>hh</i> sequences to single characters, and 
  400.      * convert plus to space.
  401.      * @param s A string that may contain 
  402.      *  <code>+</code>&nbsp;<small>(plus)</small> and 
  403.      *  <code>%</code><i>hh</i> sequences.
  404.      * @return The unescaped string.
  405.      */
  406.     public static String unescape(String s) {
  407.         int len = s.length();
  408.         StringBuffer b = new StringBuffer();
  409.         for (int i = 0; i < len; ++i) {
  410.             char c = s.charAt(i);
  411.             if (c == '+') {
  412.                 c = ' ';
  413.             } else if (c == '%' && i + 2 < len) {
  414.                 int d = dehexchar(s.charAt(i + 1));
  415.                 int e = dehexchar(s.charAt(i + 2));
  416.                 if (d >= 0 && e >= 0) {
  417.                     c = (char)(d * 16 + e);
  418.                     i += 2;
  419.                 }
  420.             }
  421.             b.append(c);
  422.         }
  423.         return b.toString();
  424.     }
  425. }