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

org.apache.poi.ss.util.AreaReference Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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.apache.poi.ss.util;

import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;

import org.apache.poi.ss.SpreadsheetVersion;
import org.apache.poi.util.StringUtil;

public class AreaReference {

    /** The character (!) that separates sheet names from cell references */
    private static final char SHEET_NAME_DELIMITER = '!';
    /** The character (:) that separates the two cell references in a multi-cell area reference */
    private static final char CELL_DELIMITER = ':';
    /** The character (') used to quote sheet names when they contain special characters */
    private static final char SPECIAL_NAME_DELIMITER = '\'';
    private static final SpreadsheetVersion DEFAULT_SPREADSHEET_VERSION = SpreadsheetVersion.EXCEL97;

    private final CellReference _firstCell;
    private final CellReference _lastCell;
    private final boolean _isSingleCell;
    private final SpreadsheetVersion _version; // never null

    /**
     * Create an area ref from a string representation.  Sheet names containing special characters should be
     * delimited and escaped as per normal syntax rules for formulas.
* The area reference must be contiguous (i.e. represent a single rectangle, not a union of rectangles) */ public AreaReference(String reference, SpreadsheetVersion version) { _version = (null != version) ? version : DEFAULT_SPREADSHEET_VERSION; if(! isContiguous(reference)) { throw new IllegalArgumentException( "References passed to the AreaReference must be contiguous, " + "use generateContiguous(ref) if you have non-contiguous references"); } String[] parts = separateAreaRefs(reference); String part0 = parts[0]; if (parts.length == 1) { // TODO - probably shouldn't initialize area ref when text is really a cell ref // Need to fix some named range stuff to get rid of this _firstCell = new CellReference(part0); _lastCell = _firstCell; _isSingleCell = true; return; } if (parts.length != 2) { throw new IllegalArgumentException("Bad area ref '" + reference + "'"); } String part1 = parts[1]; if (isPlainColumn(part0)) { if (!isPlainColumn(part1)) { throw new RuntimeException("Bad area ref '" + reference + "'"); } // Special handling for whole-column references // Represented internally as x$1 to x$65536 // which is the maximum range of rows boolean firstIsAbs = CellReference.isPartAbsolute(part0); boolean lastIsAbs = CellReference.isPartAbsolute(part1); int col0 = CellReference.convertColStringToIndex(part0); int col1 = CellReference.convertColStringToIndex(part1); _firstCell = new CellReference(0, col0, true, firstIsAbs); _lastCell = new CellReference(0xFFFF, col1, true, lastIsAbs); _isSingleCell = false; // TODO - whole row refs } else { _firstCell = new CellReference(part0); _lastCell = new CellReference(part1); _isSingleCell = part0.equals(part1); } } /** * Creates an area ref from a pair of Cell References. */ public AreaReference(CellReference topLeft, CellReference botRight, SpreadsheetVersion version) { _version = (null != version) ? version : DEFAULT_SPREADSHEET_VERSION; boolean swapRows = topLeft.getRow() > botRight.getRow(); boolean swapCols = topLeft.getCol() > botRight.getCol(); if (swapRows || swapCols) { String firstSheet; String lastSheet; int firstRow; int lastRow; int firstColumn; int lastColumn; boolean firstRowAbs; boolean lastRowAbs; boolean firstColAbs; boolean lastColAbs; if (swapRows) { firstRow = botRight.getRow(); firstRowAbs = botRight.isRowAbsolute(); lastRow = topLeft.getRow(); lastRowAbs = topLeft.isRowAbsolute(); } else { firstRow = topLeft.getRow(); firstRowAbs = topLeft.isRowAbsolute(); lastRow = botRight.getRow(); lastRowAbs = botRight.isRowAbsolute(); } if (swapCols) { firstSheet = botRight.getSheetName(); firstColumn = botRight.getCol(); firstColAbs = botRight.isColAbsolute(); lastSheet = topLeft.getSheetName(); lastColumn = topLeft.getCol(); lastColAbs = topLeft.isColAbsolute(); } else { firstSheet = topLeft.getSheetName(); firstColumn = topLeft.getCol(); firstColAbs = topLeft.isColAbsolute(); lastSheet = botRight.getSheetName(); lastColumn = botRight.getCol(); lastColAbs = botRight.isColAbsolute(); } _firstCell = new CellReference(firstSheet, firstRow, firstColumn, firstRowAbs, firstColAbs); _lastCell = new CellReference(lastSheet, lastRow, lastColumn, lastRowAbs, lastColAbs); } else { _firstCell = topLeft; _lastCell = botRight; } _isSingleCell = false; } private static boolean isPlainColumn(String refPart) { for(int i=refPart.length()-1; i>=0; i--) { int ch = refPart.charAt(i); if (ch == '$' && i==0) { continue; } if (ch < 'A' || ch > 'Z') { return false; } } return true; } /** * Is the reference for a contiguous (i.e. * unbroken) area, or is it made up of * several different parts? * (If it is, you will need to call * {@link #generateContiguous(SpreadsheetVersion, String)}) */ public static boolean isContiguous(String reference) { return splitAreaReferences(reference).length == 1; } /** * Construct an AreaReference which spans one more rows * * @param version Is the spreadsheet in format Excel97 or newer Excel versions * @param start The 1-based start-index of the rows * @param end The 1-based end-index of the rows * @return An AreaReference that spans the given rows */ public static AreaReference getWholeRow(SpreadsheetVersion version, String start, String end) { if (null == version) { version = DEFAULT_SPREADSHEET_VERSION; } return new AreaReference("$A" + start + ":$" + version.getLastColumnName() + end, version); } /** * Construct an AreaReference which spans one more columns. * * Columns are specified in the Excel format, i.e. "A" is the first column * "B" the seconds, ... "AA", .. * * @param version Is the spreadsheet in format Excel97 or newer Excel versions * @param start The ABC-based start-index of the columns * @param end The ABC-based end-index of the columns * @return An AreaReference that spans the given columns */ public static AreaReference getWholeColumn(SpreadsheetVersion version, String start, String end) { if (null == version) { version = DEFAULT_SPREADSHEET_VERSION; } return new AreaReference(start + "$1:" + end + "$" + version.getMaxRows(), version); } /** * Is the reference for a whole-column reference, * such as C:C or D:G ? */ public static boolean isWholeColumnReference(SpreadsheetVersion version, CellReference topLeft, CellReference botRight) { if (null == version) { version = DEFAULT_SPREADSHEET_VERSION; // how the code used to behave. } // These are represented as something like // C$1:C$65535 or D$1:F$0 // i.e. absolute from 1st row to 0th one return (topLeft.getRow() == 0 && topLeft.isRowAbsolute() && botRight.getRow() == version.getLastRowIndex() && botRight.isRowAbsolute()); } /** * Takes a non-contiguous area reference, and returns an array of contiguous area references * @return an array of contiguous area references. */ public static AreaReference[] generateContiguous(SpreadsheetVersion version, String reference) { if (null == version) { version = DEFAULT_SPREADSHEET_VERSION; // how the code used to behave. } List refs = new ArrayList<>(); String[] splitReferences = splitAreaReferences(reference); for (String ref : splitReferences) { refs.add(new AreaReference(ref, version)); } return refs.toArray(new AreaReference[0]); } /** * Separates Area refs in two parts and returns them as separate elements in a String array, * each qualified with the sheet name (if present) * * @return array with one or two elements. never {@code null} */ private static String[] separateAreaRefs(String reference) { // TODO - refactor cell reference parsing logic to one place. // Current known incarnations: // FormulaParser.GetName() // CellReference.separateRefParts() // AreaReference.separateAreaRefs() (here) // SheetNameFormatter.format() (inverse) int len = reference.length(); int delimiterPos = -1; boolean insideDelimitedName = false; for(int i=0; i=0) { throw new IllegalArgumentException("More than one cell delimiter '" + CELL_DELIMITER + "' appears in area reference '" + reference + "'"); } delimiterPos = i; } continue; //continue the for-loop case SPECIAL_NAME_DELIMITER: break; default: continue; //continue the for-loop } if(!insideDelimitedName) { insideDelimitedName = true; continue; } if(i >= len-1) { // reference ends with the delimited name. // Assume names like: "Sheet1!'A1'" are never legal. throw new IllegalArgumentException("Area reference '" + reference + "' ends with special name delimiter '" + SPECIAL_NAME_DELIMITER + "'"); } if(reference.charAt(i+1) == SPECIAL_NAME_DELIMITER) { // two consecutive quotes is the escape sequence for a single one i++; // skip this and keep parsing the special name } else { // this is the end of the delimited name insideDelimitedName = false; } } if(delimiterPos < 0) { return new String[] { reference, }; } String partA = reference.substring(0, delimiterPos); String partB = reference.substring(delimiterPos+1); if(partB.indexOf(SHEET_NAME_DELIMITER) >= 0) { // partB contains SHEET_NAME_DELIMITER // TODO - are references like "Sheet1!A1:Sheet1:B2" ever valid? // FormulaParser has code to handle that. throw new RuntimeException("Unexpected " + SHEET_NAME_DELIMITER + " in second cell reference of '" + reference + "'"); } int plingPos = partA.lastIndexOf(SHEET_NAME_DELIMITER); if(plingPos < 0) { return new String [] { partA, partB, }; } String sheetName = partA.substring(0, plingPos + 1); // +1 to include delimiter return new String [] { partA, sheetName + partB, }; } /** * Splits a comma-separated area references string into an array of * individual references * @param reference Area references, i.e. A1:B2, 'Sheet1'!A1:B2 * @return Area references in an array, size >= 1 */ private static String[] splitAreaReferences(String reference) { List results = new ArrayList<>(); String currentSegment = ""; StringTokenizer st = new StringTokenizer(reference, ","); while(st.hasMoreTokens()) { if (currentSegment.length() > 0) { currentSegment += ","; } currentSegment += st.nextToken(); int numSingleQuotes = StringUtil.countMatches(currentSegment, '\''); if (numSingleQuotes == 0 || numSingleQuotes == 2) { results.add(currentSegment); currentSegment = ""; } } if (currentSegment.length() > 0) { results.add(currentSegment); } return results.toArray(new String[0]); } public boolean isWholeColumnReference() { return isWholeColumnReference(_version, _firstCell, _lastCell); } /** * @return {@code false} if this area reference involves more than one cell */ public boolean isSingleCell() { return _isSingleCell; } /** * @return the first cell reference which defines this area. Usually this cell is in the upper * left corner of the area (but this is not a requirement). */ public CellReference getFirstCell() { return _firstCell; } /** * Note - if this area reference refers to a single cell, the return value of this method will * be identical to that of {@code getFirstCell()} * @return the second cell reference which defines this area. For multi-cell areas, this is * cell diagonally opposite the 'first cell'. Usually this cell is in the lower right corner * of the area (but this is not a requirement). */ public CellReference getLastCell() { return _lastCell; } /** * Returns a reference to every cell covered by this area */ public CellReference[] getAllReferencedCells() { // Special case for single cell reference if(_isSingleCell) { return new CellReference[] { _firstCell, }; } // Interpolate between the two int minRow = Math.min(_firstCell.getRow(), _lastCell.getRow()); int maxRow = Math.max(_firstCell.getRow(), _lastCell.getRow()); int minCol = Math.min(_firstCell.getCol(), _lastCell.getCol()); int maxCol = Math.max(_firstCell.getCol(), _lastCell.getCol()); String sheetName = _firstCell.getSheetName(); List refs = new ArrayList<>(); for(int row=minRow; row<=maxRow; row++) { for(int col=minCol; col<=maxCol; col++) { CellReference ref = new CellReference(sheetName, row, col, _firstCell.isRowAbsolute(), _firstCell.isColAbsolute()); refs.add(ref); } } return refs.toArray(new CellReference[0]); } /** * Returns a text representation of this area reference. *

* Example return values: *

* * * * * * *
Example return values
ResultComment
A1:A1Single cell area reference without sheet
A1:$C$1Multi-cell area reference without sheet
Sheet1!A$1:B4Standard sheet name
'O''Brien''s Sales'!B5:C6' Sheet name with special characters
* @return the text representation of this area reference as it would appear in a formula. */ public String formatAsString() { // Special handling for whole-column references if(isWholeColumnReference()) { return CellReference.convertNumToColString(_firstCell.getCol()) + ":" + CellReference.convertNumToColString(_lastCell.getCol()); } StringBuilder sb = new StringBuilder(32); sb.append(_firstCell.formatAsString()); if(!_isSingleCell) { sb.append(CELL_DELIMITER); if(_lastCell.getSheetName() == null) { sb.append(_lastCell.formatAsString()); } else { // don't want to include the sheet name twice _lastCell.appendCellReference(sb); } } return sb.toString(); } public String toString() { StringBuilder sb = new StringBuilder(64); sb.append(getClass().getName()).append(" ["); try { sb.append(formatAsString()); } catch(Exception e) { sb.append(e); } sb.append(']'); return sb.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy