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

org.noggit.JSONParserWS Maven / Gradle / Ivy

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.noggit;


import java.io.IOException;
import java.io.Reader;

public class JSONParserWS extends JSONParser {

  public static abstract class WhitespaceHandler {
    public abstract void whitespaceNotification(int state, CharArr whitespace, boolean containsComment);
  }

  private CharArr outWS = new CharArr(64);
  private WhitespaceHandler wsHandler = new WhitespaceHandler() {
    @Override
    public void whitespaceNotification(int state, CharArr whitespace, boolean containsComment) {
      System.out.println("state=" + state + " comment=" + containsComment + " ws="+whitespace.toString());
    }
  };

  public JSONParserWS(Reader in) {
    super(in);
  }

  public JSONParserWS(Reader in, char[] buffer) {
    super(in, buffer);
  }

  public JSONParserWS(char[] data, int start, int end) {
    super(data, start, end);
  }

  public JSONParserWS(String data) {
    super(data);
  }

  public JSONParserWS(String data, int start, int end) {
    super(data, start, end);
  }

  public void setWhitespaceHandler(WhitespaceHandler wsHandler) {
    this.wsHandler = wsHandler;
  }


  // TODO: use subclassing if handling comments is sufficiently slower?
  protected int getCharNWS() throws IOException {
    outWS.reset();

    outer: for (;;) {
      int ch = getChar();
      switch (ch) {
        case ' ' :
        case '\t' :
        case '\r' :
        case '\n' :
          outWS.write(ch);
          continue outer;
        case '#' :
          getNewlineComment();
          continue outer;
        case '/' :
          getSlashComment();
          continue outer;
        default:
          return ch;
      }
    }
  }

  protected void getNewlineComment() throws IOException {
    // read a # or a //, so go until newline
    for (;;) {
      int ch = getChar();
      if (ch != -1) outWS.write(ch);
      // don't worry about DOS /r/n... we'll stop on the \r and let the rest of the whitespace
      // eater consume the \n
      if (ch == '\n' || ch == '\r' || ch == -1) {
        return;
      }


    }
  }

  protected void getSlashComment() throws IOException {
    int ch = getChar();
    if (ch != -1) outWS.write(ch);

    if (ch == '/') {
      getNewlineComment();
      return;
    }

    if (ch != '*') {
      throw err("Invalid comment: expected //, /*, or #");
    }

    ch = getChar();
    if (ch != -1) outWS.write(ch);

    for (;;) {
      if (ch == '*') {
        ch = getChar();
        if (ch != -1) outWS.write(ch);

        if (ch == '/') {
          return;
        } else if (ch == '*') {
          // handle cases of *******/
          continue;
        }
      }
      if (ch == -1) {
        return;
      }
      ch = getChar();
      if (ch != -1) outWS.write(ch);
    }
  }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy