org.sejda.conversion.BasePageRangeAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sejda-conversion Show documentation
Show all versions of sejda-conversion Show documentation
sejda core model conversion services
/*
* Created on Sep 4, 2011
* Copyright 2010 by Eduard Weissmann ([email protected]).
*
* 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 org.sejda.conversion;
import org.apache.commons.lang3.StringUtils;
import org.sejda.conversion.exception.ConversionException;
import org.sejda.model.exception.SejdaRuntimeException;
import org.sejda.model.pdf.page.PageRange;
/**
* Adapter for {@link PageRange}, providing initialization from {@link String}
*
* @author Eduard Weissmann
*/
public class BasePageRangeAdapter {
private static final String SEPARATOR = "-";
private boolean acceptAllString = false;
private PageRange pageRange;
public BasePageRangeAdapter(String rawString, boolean acceptAllString) {
this.acceptAllString = acceptAllString;
try {
pageRange = doParsePageRange(rawString);
} catch (SejdaRuntimeException e) {
throw new ConversionException("Unparsable page range '" + rawString + "'. " + e.getMessage(), e);
}
if (pageRange.getStart() > pageRange.getEnd()) {
throw new ConversionException("Invalid page range '" + rawString + "', ends before starting");
}
}
public PageRange getPageRange() {
return pageRange;
}
/**
* @param rawString
* string representation of the {@link PageRange}
*/
private PageRange doParsePageRange(String rawString) {
if (acceptAllString && AdapterUtils.isAllPages(rawString)) {
return new PageRange(1);
}
String[] tokens = AdapterUtils.splitAndTrim(rawString, SEPARATOR);
if (tokens.length == 1) {
if (rawString.contains(SEPARATOR)) {
// 23-
return new PageRange(parsePageNumber(tokens[0]));
}
// 23
return new PageRange(parsePageNumber(tokens[0]), parsePageNumber(tokens[0]));
} else if (tokens.length == 2) {
int token0 = parsePageNumber(tokens[0]);
int token1 = parsePageNumber(tokens[1]);
return new PageRange(token0, token1);
} else {
throw new ConversionException(
"Ambiguous definition. Use following formats: [] or [-] or [-]");
}
}
private int parsePageNumber(String s) {
return AdapterUtils.parseInt(StringUtils.trim(s), "page number");
}
/**
* A {@link PageRange} adapter not allowing the 'all' string.
*
* @author Andrea Vacondio
*
*/
public static final class PageRangeAdapter extends BasePageRangeAdapter {
public PageRangeAdapter(String rawString) {
super(rawString, false);
}
}
/**
* A {@link PageRange} adapter allowing the 'all' string.
*
* @author Andrea Vacondio
*
*/
public static final class PageRangeWithAllAdapter extends BasePageRangeAdapter {
public PageRangeWithAllAdapter(String rawString) {
super(rawString, true);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy