All Downloads are FREE. Search and download functionalities are using the official Maven repository.

swim.json.Json Maven / Gradle / Ivy

// Copyright 2015-2019 SWIM.AI inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package swim.json;

import swim.codec.Decoder;
import swim.codec.Encoder;
import swim.codec.Output;
import swim.codec.Parser;
import swim.codec.Unicode;
import swim.codec.Utf8;
import swim.codec.Writer;
import swim.structure.Data;
import swim.structure.Form;
import swim.structure.Item;
import swim.structure.Value;

/**
 * Factory for constructing JSON parsers and writers.
 */
public final class Json {
  private Json() {
    // stub
  }

  static boolean isSpace(int c) {
    return c == 0x20 || c == 0x9;
  }

  static boolean isNewline(int c) {
    return c == 0xa || c == 0xd;
  }

  static boolean isWhitespace(int c) {
    return isSpace(c) || isNewline(c);
  }

  static boolean isIdentStartChar(int c) {
    return c >= 'A' && c <= 'Z'
        || c == '_'
        || c >= 'a' && c <= 'z'
        || c >= 0xc0 && c <= 0xd6
        || c >= 0xd8 && c <= 0xf6
        || c >= 0xf8 && c <= 0x2ff
        || c >= 0x370 && c <= 0x37d
        || c >= 0x37f && c <= 0x1fff
        || c >= 0x200c && c <= 0x200d
        || c >= 0x2070 && c <= 0x218f
        || c >= 0x2c00 && c <= 0x2fef
        || c >= 0x3001 && c <= 0xd7ff
        || c >= 0xf900 && c <= 0xfdcf
        || c >= 0xfdf0 && c <= 0xfffd
        || c >= 0x10000 && c <= 0xeffff;
  }

  static boolean isIdentChar(int c) {
    return c == '-'
        || c >= '0' && c <= '9'
        || c >= 'A' && c <= 'Z'
        || c == '_'
        || c >= 'a' && c <= 'z'
        || c == 0xb7
        || c >= 0xc0 && c <= 0xd6
        || c >= 0xd8 && c <= 0xf6
        || c >= 0xf8 && c <= 0x37d
        || c >= 0x37f && c <= 0x1fff
        || c >= 0x200c && c <= 0x200d
        || c >= 0x203f && c <= 0x2040
        || c >= 0x2070 && c <= 0x218f
        || c >= 0x2c00 && c <= 0x2fef
        || c >= 0x3001 && c <= 0xd7ff
        || c >= 0xf900 && c <= 0xfdcf
        || c >= 0xfdf0 && c <= 0xfffd
        || c >= 0x10000 && c <= 0xeffff;
  }

  private static JsonParser modelParser;
  private static JsonWriter modelWriter;

  public static JsonParser modelParser() {
    if (modelParser == null) {
      modelParser = new JsonModelParser();
    }
    return modelParser;
  }

  public static JsonWriter modelWriter() {
    if (modelWriter == null) {
      modelWriter = new JsonModelWriter();
    }
    return modelWriter;
  }

  public static Value parse(String json) {
    return modelParser().parseValueString(json);
  }

  public static Parser parser() {
    return modelParser().valueParser();
  }

  public static Writer write(Item item, Output output) {
    return modelWriter().writeItem(item, output);
  }

  public static String toString(Item item) {
    final Output output = Unicode.stringOutput();
    write(item, output);
    return output.bind();
  }

  public static Data toData(Item item) {
    final Output output = Utf8.encodedOutput(Data.output());
    write(item, output);
    return output.bind();
  }

  public static  Parser formParser(Form form) {
    return new JsonFormParser(modelParser(), form);
  }

  public static  Decoder formDecoder(Form form) {
    return Utf8.decodedParser(formParser(form));
  }

  public static  Writer formWriter(Form form) {
    return new JsonFormWriter(modelWriter(), form);
  }

  public static  Encoder formEncoder(Form form) {
    return Utf8.encodedWriter(formWriter(form));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy