/* * Copyright 2009-2011 The MyBatis Team * * 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 com.founderdpt.comm.xworld.orm.parsing; public class GenericTokenParser { private final String openToken; private final String closeToken; private final TokenHandler handler; public GenericTokenParser(String openToken, String closeToken, TokenHandler handler) { this.openToken = openToken; this.closeToken = closeToken; this.handler = handler; } public String parse(String text) { StringBuilder builder = new StringBuilder(); if (text != null) { String after = text; int start = after.indexOf(openToken); int end = after.indexOf(closeToken); while (start > -1) { if (end > start) { String before = after.substring(0, start); String content = after.substring(start + openToken.length(), end); String substitution = handler.handleToken(content); builder.append(before); builder.append(substitution); after = after.substring(end + closeToken.length()); } else if (end > -1) { String before = after.substring(0, end); builder.append(before); builder.append(closeToken); after = after.substring(end + closeToken.length()); } else { break; } start = after.indexOf(openToken); end = after.indexOf(closeToken); } builder.append(after); } return builder.toString(); } }