Package ca.gobits.bnf.parser

Source Code of ca.gobits.bnf.parser.PropertyParser

//
// Copyright 2013 Mike Friesen
//
// 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 ca.gobits.bnf.parser;

import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;

import org.apache.commons.io.IOUtils;

import ca.gobits.bnf.tokenizer.BNFToken;
import ca.gobits.bnf.tokenizer.BNFTokenizerFactory;
import ca.gobits.bnf.tokenizer.BNFTokenizerFactoryImpl;
import ca.gobits.bnf.tokenizer.BNFTokenizerParams;
import ca.gobits.bnf.tokenizer.BNFToken.BNFTokenType;

public class PropertyParser {

  private BNFTokenizerFactory tokenizer = new BNFTokenizerFactoryImpl();
 
  public Map<String, String> parse(InputStream is) throws IOException {
    String str = IOUtils.toString(is);
    return parse(str);
  }

  public Map<String, String> parse(String str) {
   
    Map<String, String> map = new HashMap<String, String>();
    BNFTokenizerParams params = new BNFTokenizerParams();
    params.setIncludeWhitespace(true);   
    params.setIncludeWhitespaceNewlines(true);
    BNFToken token = tokenizer.tokens(str, params);
   
    String start = "";
    StringBuilder sb = new StringBuilder();
   
    while (token != null) {
   
      if (token.getType() == BNFTokenType.WHITESPACE_NEWLINE) {
       
        if (hasText(start) && hasText(sb.toString())) {
          map.put(start.trim(), sb.toString().trim());
        }
       
        start = "";
        sb = new StringBuilder();
       
      } else if (token.getStringValue().equals("=")) {
       
        start = sb.toString();
        sb = new StringBuilder();
       
      } else {
       
        sb.append(token.getStringValue());
      }
     
      token = token.getNextToken();
    }
   
    if (hasText(start) && hasText(sb.toString())) {
      map.put(start.trim(), sb.toString().trim());
    }
   
    return map;
  }

  private boolean hasText(String s) {
    return s != null && s.length() > 0;
  }
}
TOP

Related Classes of ca.gobits.bnf.parser.PropertyParser

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.