/* * Apache License * Version 2.0, January 2004 * http://www.apache.org/licenses/ * * Copyright 2013 Aurelian Tutuianu * Copyright 2014 Aurelian Tutuianu * Copyright 2015 Aurelian Tutuianu * Copyright 2016 Aurelian Tutuianu * * 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 rapaio.experiment.mc; import java.util.ArrayList; import java.util.List; import java.util.StringTokenizer; import java.util.stream.Collectors; /** * Created by <a href="mailto:padreati@yahoo.com">Aurelian Tutuianu</a> on 12/2/15. */ public class TokenizerChainAdapter implements ChainAdapter { private final int n; public TokenizerChainAdapter(int n) { this.n = n; } @Override public List<String> tokenize(String rawChain) { StringTokenizer tokenizer = new StringTokenizer(rawChain, " \t\n\r\f:;[]"); List<String> list = new ArrayList<>(); while (tokenizer.hasMoreTokens()) { list.add(tokenizer.nextToken()); } list.add("."); List<String> result = new ArrayList<>(); for (int i = n; i < list.size(); i++) { result.add(list.subList(i - n, i).stream().collect(Collectors.joining(" "))); } return result; } @Override public String restore(List<String> chain) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < chain.size(); i++) { if (i == 0) sb.append(chain.get(i)); else { String[] tok = chain.get(i).split(" ", -1); if (sb.length() > 0) { sb.append(" "); } sb.append(tok[tok.length - 1]); } } return sb.toString(); } }