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

swim.recon.InlineItemParser Maven / Gradle / Ivy

The newest version!
// 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.recon;

import swim.codec.Input;
import swim.codec.Parser;
import swim.util.Builder;

final class InlineItemParser extends Parser {
  final ReconParser recon;
  final Builder builder;
  final Parser fieldParser;
  final Parser valueParser;
  final int step;

  InlineItemParser(ReconParser recon, Builder builder, Parser fieldParser,
                   Parser valueParser, int step) {
    this.recon = recon;
    this.builder = builder;
    this.fieldParser = fieldParser;
    this.valueParser = valueParser;
    this.step = step;
  }

  @Override
  public Parser feed(Input input) {
    return parse(input, this.recon, this.builder, this.fieldParser, this.valueParser, this.step);
  }

  static  Parser parse(Input input, ReconParser recon, Builder builder,
                                Parser fieldParser, Parser valueParser, int step) {
    int c = 0;
    if (step == 1) {
      if (input.isCont()) {
        c = input.head();
        if (c == '@') {
          fieldParser = recon.parseAttr(input);
          step = 2;
        } else if (c == '{') {
          if (builder != null) {
            valueParser = recon.parseRecord(input, builder);
            step = 5;
          } else {
            valueParser = recon.parseRecord(input);
            step = 4;
          }
        } else if (c == '[') {
          if (builder != null) {
            valueParser = recon.parseMarkup(input, builder);
            step = 5;
          } else {
            valueParser = recon.parseMarkup(input);
            step = 4;
          }
        } else if (builder == null) {
          return done(recon.extant());
        } else {
          return done(builder.bind());
        }
      } else if (input.isDone()) {
        if (builder == null) {
          return done(recon.extant());
        } else {
          return done(builder.bind());
        }
      }
    }
    if (step == 2) {
      while (fieldParser.isCont() && !input.isEmpty()) {
        fieldParser = fieldParser.feed(input);
      }
      if (fieldParser.isDone()) {
        if (builder == null) {
          builder = recon.valueBuilder();
        }
        builder.add(fieldParser.bind());
        fieldParser = null;
        step = 3;
      } else if (fieldParser.isError()) {
        return fieldParser.asError();
      }
    }
    if (step == 3) {
      if (input.isCont()) {
        c = input.head();
        if (c == '{') {
          valueParser = recon.parseRecord(input, builder);
          step = 5;
        } else if (c == '[') {
          valueParser = recon.parseMarkup(input, builder);
          step = 5;
        } else {
          return done(builder.bind());
        }
      } else if (input.isDone()) {
        return done(builder.bind());
      }
    }
    if (step == 4) {
      while (valueParser.isCont() && !input.isEmpty()) {
        valueParser = valueParser.feed(input);
      }
      if (valueParser.isDone()) {
        if (builder == null) {
          builder = recon.valueBuilder();
        }
        builder.add(recon.item(valueParser.bind()));
        return done(builder.bind());
      } else if (valueParser.isError()) {
        return valueParser;
      }
    }
    if (step == 5) {
      while (valueParser.isCont() && !input.isEmpty()) {
        valueParser = valueParser.feed(input);
      }
      if (valueParser.isDone()) {
        return done(builder.bind());
      } else if (valueParser.isError()) {
        return valueParser;
      }
    }
    if (input.isError()) {
      return error(input.trap());
    }
    return new InlineItemParser(recon, builder, fieldParser, valueParser, step);
  }

  static  Parser parse(Input input, ReconParser recon) {
    return parse(input, recon, null, null, null, 1);
  }
}