JavaScriptReader.cs :  » 2.6.4-mono-.net-core » System.Runtime » System » Runtime » Serialization » Json » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Runtime 
System.Runtime » System » Runtime » Serialization » Json » JavaScriptReader.cs
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;

namespace System.Runtime.Serialization.Json{
  internal class JavaScriptReader
  {
    TextReader r;
    int line = 1, column = 0;
    bool raise_on_number_error; // FIXME: use it

    public JavaScriptReader (TextReader reader, bool raiseOnNumberError)
    {
      if (reader == null)
        throw new ArgumentNullException ("reader");
      this.r = reader;
      raise_on_number_error = raiseOnNumberError;
    }

    public object Read ()
    {
      object v = ReadCore ();
      SkipSpaces ();
      if (r.Read () >= 0)
        throw JsonError (String.Format ("extra characters in JSON input"));
      return v;
    }

    object ReadCore ()
    {
      SkipSpaces ();
      int c = PeekChar ();
      if (c < 0)
        throw JsonError ("Incomplete JSON input");
      switch (c) {
      case '[':
        ReadChar ();
        var list = new List<object> ();
        SkipSpaces ();
        if (PeekChar () == ']') {
          ReadChar ();
          return list;
        }
        while (true) {
          list.Add (ReadCore ());
          SkipSpaces ();
          c = PeekChar ();
          if (c != ',')
            break;
          ReadChar ();
          continue;
        }
        if (ReadChar () != ']')
          throw JsonError ("JSON array must end with ']'");
        return list.ToArray ();
      case '{':
        ReadChar ();
        var obj = new Dictionary<string,object> ();
        SkipSpaces ();
        if (PeekChar () == '}') {
          ReadChar ();
          return obj;
        }
        while (true) {
          SkipSpaces ();
          string name = ReadStringLiteral ();
          SkipSpaces ();
          Expect (':');
          SkipSpaces ();
          obj [name] = ReadCore (); // it does not reject duplicate names.
          SkipSpaces ();
          c = ReadChar ();
          if (c == ',')
            continue;
          if (c == '}')
            break;
        }
        return obj.ToArray ();
      case 't':
        Expect ("true");
        return true;
      case 'f':
        Expect ("false");
        return false;
      case 'n':
        Expect ("null");
        // FIXME: what should we return?
        return (string) null;
      case '"':
        return ReadStringLiteral ();
      default:
        if ('0' <= c && c <= '9' || c == '-')
          return ReadNumericLiteral ();
        else
          throw JsonError (String.Format ("Unexpected character '{0}'", (char) c));
      }
    }

    int peek;
    bool has_peek;
    bool prev_lf;

    int PeekChar ()
    {
      if (!has_peek) {
        peek = r.Read ();
        has_peek = true;
      }
      return peek;
    }

    int ReadChar ()
    {
      int v = has_peek ? peek : r.Read ();

      has_peek = false;

      if (prev_lf) {
        line++;
        column = 0;
        prev_lf = false;
      }

      if (v == '\n')
        prev_lf = true;
      column++;

      return v;
    }

    void SkipSpaces ()
    {
      while (true) {
        switch (PeekChar ()) {
        case ' ': case '\t': case '\r': case '\n':
          ReadChar ();
          continue;
        default:
          return;
        }
      }
    }

    // It could return either int, long or decimal, depending on the parsed value.
    object ReadNumericLiteral ()
    {
      bool negative = false;
      if (PeekChar () == '-') {
        negative = true;
        ReadChar ();
        if (PeekChar () < 0)
          throw JsonError ("Invalid JSON numeric literal; extra negation");
      }

      int c;
      decimal val = 0;
      int x = 0;
      bool zeroStart = PeekChar () == '0';
      for (; ; x++) {
        c = PeekChar ();
        if (c < '0' || '9' < c)
          break;
        val = val * 10 + (c - '0');
        ReadChar ();
        if (zeroStart && x == 1 && c == '0')
          throw JsonError ("leading multiple zeros are not allowed");
      }

      // fraction

      bool hasFrac = false;
      decimal frac = 0;
      int fdigits = 0;
      if (PeekChar () == '.') {
        hasFrac = true;
        ReadChar ();
        if (PeekChar () < 0)
          throw JsonError ("Invalid JSON numeric literal; extra dot");
        decimal d = 10;
        while (true) {
          c = PeekChar ();
          if (c < '0' || '9' < c)
            break;
          ReadChar ();
          frac += (c - '0') / d;
          d *= 10;
          fdigits++;
        }
        if (fdigits == 0)
          throw JsonError ("Invalid JSON numeric literal; extra dot");
      }
      frac = Decimal.Round (frac, fdigits);

      c = PeekChar ();
      if (c != 'e' && c != 'E') {
        if (!hasFrac) {
          if (negative && int.MinValue <= -val ||
              !negative && val <= int.MaxValue)
            return (int) (negative ? -val : val);
          if (negative && long.MinValue <= -val ||
              !negative && val <= long.MaxValue)
            return (long) (negative ? -val : val);
        }
        var v = val + frac;
        return negative ? -v : v;
      }

      // exponent

      ReadChar ();

      int exp = 0;
      if (PeekChar () < 0)
        throw new ArgumentException ("Invalid JSON numeric literal; incomplete exponent");
      bool negexp = false;
      c = PeekChar ();
      if (c == '-') {
        ReadChar ();
        negexp = true;
      }
      else if (c == '+')
        ReadChar ();

      if (PeekChar () < 0)
        throw JsonError ("Invalid JSON numeric literal; incomplete exponent");
      while (true) {
        c = PeekChar ();
        if (c < '0' || '9' < c)
          break;
        exp = exp * 10 + (c - '0');
        ReadChar ();
      }
      // it is messy to handle exponent, so I just use Decimal.Parse() with assured JSON format.
      int [] bits = Decimal.GetBits (val + frac);
      return new Decimal (bits [0], bits [1], bits [2], negative, (byte) exp);
    }

    StringBuilder vb = new StringBuilder ();

    string ReadStringLiteral ()
    {
      if (PeekChar () != '"')
        throw JsonError ("Invalid JSON string literal format");

      ReadChar ();
      vb.Length = 0;
      while (true) {
        int c = ReadChar ();
        if (c < 0)
          throw JsonError ("JSON string is not closed");
        if (c == '"')
          return vb.ToString ();
        else if (c != '\\') {
          vb.Append ((char) c);
          continue;
        }

        // escaped expression
        c = ReadChar ();
        if (c < 0)
          throw JsonError ("Invalid JSON string literal; incomplete escape sequence");
        switch (c) {
        case '"':
        case '\\':
        case '/':
          vb.Append ((char) c);
          break;
        case 'b':
          vb.Append ('\x8');
          break;
        case 'f':
          vb.Append ('\f');
          break;
        case 'n':
          vb.Append ('\n');
          break;
        case 'r':
          vb.Append ('\r');
          break;
        case 't':
          vb.Append ('\t');
          break;
        case 'u':
          ushort cp = 0;
          for (int i = 0; i < 4; i++) {
            cp <<= 4;
            if ((c = ReadChar ()) < 0)
              throw JsonError ("Incomplete unicode character escape literal");
            if ('0' <= c && c <= '9')
              cp += (ushort) (c - '0');
            if ('A' <= c && c <= 'F')
              cp += (ushort) (c - 'A' + 10);
            if ('a' <= c && c <= 'f')
              cp += (ushort) (c - 'a' + 10);
          }
          vb.Append ((char) cp);
          break;
        default:
          throw JsonError ("Invalid JSON string literal; unexpected escape character");
        }
      }
    }

    void Expect (char expected)
    {
      int c;
      if ((c = ReadChar ()) != expected)
        throw JsonError (String.Format ("Expected '{0}', got '{1}'", expected, (char) c));
    }

    void Expect (string expected)
    {
      int c;
      for (int i = 0; i < expected.Length; i++)
        if ((c = ReadChar ()) != expected [i])
          throw JsonError (String.Format ("Expected '{0}', differed at {1}", expected, i));
    }

    Exception JsonError (string msg)
    {
      return new ArgumentException (String.Format ("{0}. At line {1}, column {2}", msg, line, column));
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.