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

org.apache.poi.hssf.record.DVRecord 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.hssf.record;

import org.apache.poi.hssf.record.common.UnicodeString;
import org.apache.poi.hssf.usermodel.HSSFDataValidation;
import org.apache.poi.ss.formula.Formula;
import org.apache.poi.ss.formula.ptg.Ptg;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellRangeAddressList;
import org.apache.poi.util.BitField;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.StringUtil;

/**
 * Title:        DATAVALIDATION Record (0x01BE)

* Description: This record stores data validation settings and a list of cell ranges * which contain these settings. The data validation settings of a sheet * are stored in a sequential list of DV records. This list is followed by * DVAL record(s) */ public final class DVRecord extends StandardRecord implements Cloneable { public final static short sid = 0x01BE; /** the unicode string used for error/prompt title/text when not present */ private static final UnicodeString NULL_TEXT_STRING = new UnicodeString("\0"); /** Option flags */ private int _option_flags; /** Title of the prompt box, cannot be longer than 32 chars */ private UnicodeString _promptTitle; /** Title of the error box, cannot be longer than 32 chars */ private UnicodeString _errorTitle; /** Text of the prompt box, cannot be longer than 255 chars */ private UnicodeString _promptText; /** Text of the error box, cannot be longer than 255 chars */ private UnicodeString _errorText; /** Not used - Excel seems to always write 0x3FE0 */ private short _not_used_1 = 0x3FE0; /** Formula data for first condition (RPN token array without size field) */ private Formula _formula1; /** Not used - Excel seems to always write 0x0000 */ @SuppressWarnings("RedundantFieldInitialization") private short _not_used_2 = 0x0000; /** Formula data for second condition (RPN token array without size field) */ private Formula _formula2; /** Cell range address list with all affected ranges */ private CellRangeAddressList _regions; /** * Option flags field * * @see HSSFDataValidation utility class */ private static final BitField opt_data_type = new BitField(0x0000000F); private static final BitField opt_error_style = new BitField(0x00000070); private static final BitField opt_string_list_formula = new BitField(0x00000080); private static final BitField opt_empty_cell_allowed = new BitField(0x00000100); private static final BitField opt_suppress_dropdown_arrow = new BitField(0x00000200); private static final BitField opt_show_prompt_on_cell_selected = new BitField(0x00040000); private static final BitField opt_show_error_on_invalid_value = new BitField(0x00080000); private static final BitField opt_condition_operator = new BitField(0x00700000); public DVRecord(int validationType, int operator, int errorStyle, boolean emptyCellAllowed, boolean suppressDropDownArrow, boolean isExplicitList, boolean showPromptBox, String promptTitle, String promptText, boolean showErrorBox, String errorTitle, String errorText, Ptg[] formula1, Ptg[] formula2, CellRangeAddressList regions) { // check length-limits if(promptTitle != null && promptTitle.length() > 32) { throw new IllegalStateException("Prompt-title cannot be longer than 32 characters, but had: " + promptTitle); } if(promptText != null && promptText.length() > 255) { throw new IllegalStateException("Prompt-text cannot be longer than 255 characters, but had: " + promptText); } if(errorTitle != null && errorTitle.length() > 32) { throw new IllegalStateException("Error-title cannot be longer than 32 characters, but had: " + errorTitle); } if(errorText != null && errorText.length() > 255) { throw new IllegalStateException("Error-text cannot be longer than 255 characters, but had: " + errorText); } int flags = 0; flags = opt_data_type.setValue(flags, validationType); flags = opt_condition_operator.setValue(flags, operator); flags = opt_error_style.setValue(flags, errorStyle); flags = opt_empty_cell_allowed.setBoolean(flags, emptyCellAllowed); flags = opt_suppress_dropdown_arrow.setBoolean(flags, suppressDropDownArrow); flags = opt_string_list_formula.setBoolean(flags, isExplicitList); flags = opt_show_prompt_on_cell_selected.setBoolean(flags, showPromptBox); flags = opt_show_error_on_invalid_value.setBoolean(flags, showErrorBox); _option_flags = flags; _promptTitle = resolveTitleText(promptTitle); _promptText = resolveTitleText(promptText); _errorTitle = resolveTitleText(errorTitle); _errorText = resolveTitleText(errorText); _formula1 = Formula.create(formula1); _formula2 = Formula.create(formula2); _regions = regions; } public DVRecord(RecordInputStream in) { _option_flags = in.readInt(); _promptTitle = readUnicodeString(in); _errorTitle = readUnicodeString(in); _promptText = readUnicodeString(in); _errorText = readUnicodeString(in); int field_size_first_formula = in.readUShort(); _not_used_1 = in.readShort(); // "You may not use unions, intersections or array constants in Data Validation criteria" // read first formula data condition _formula1 = Formula.read(field_size_first_formula, in); int field_size_sec_formula = in.readUShort(); _not_used_2 = in.readShort(); // read sec formula data condition _formula2 = Formula.read(field_size_sec_formula, in); // read cell range address list with all affected ranges _regions = new CellRangeAddressList(in); } // --> start option flags /** * @return the condition data type * @see org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType */ public int getDataType() { return opt_data_type.getValue(_option_flags); } /** * @return the condition error style * @see org.apache.poi.ss.usermodel.DataValidation.ErrorStyle */ public int getErrorStyle() { return opt_error_style.getValue(_option_flags); } /** * @return true if in list validations the string list is explicitly given in the * formula, false otherwise */ public boolean getListExplicitFormula() { return (opt_string_list_formula.isSet(_option_flags)); } /** * @return true if empty values are allowed in cells, false otherwise */ public boolean getEmptyCellAllowed() { return (opt_empty_cell_allowed.isSet(_option_flags)); } /** * @return true if drop down arrow should be suppressed when list validation is * used, false otherwise */ public boolean getSuppressDropdownArrow() { return (opt_suppress_dropdown_arrow.isSet(_option_flags)); } /** * @return true if a prompt window should appear when cell is selected, false otherwise */ public boolean getShowPromptOnCellSelected() { return (opt_show_prompt_on_cell_selected.isSet(_option_flags)); } /** * @return true if an error window should appear when an invalid value is entered * in the cell, false otherwise */ public boolean getShowErrorOnInvalidValue() { return (opt_show_error_on_invalid_value.isSet(_option_flags)); } /** * get the condition operator * @return the condition operator * @see HSSFDataValidation utility class */ public int getConditionOperator() { return opt_condition_operator.getValue(_option_flags); } // <-- end option flags public String getPromptTitle() { return resolveTitleString(_promptTitle); } public String getErrorTitle() { return resolveTitleString(_errorTitle); } public String getPromptText() { return resolveTitleString(_promptText); } public String getErrorText() { return resolveTitleString(_errorText); } public Ptg[] getFormula1() { return Formula.getTokens(_formula1); } public Ptg[] getFormula2() { return Formula.getTokens(_formula2); } public CellRangeAddressList getCellRangeAddress() { return this._regions; } public String toString() { StringBuffer sb = new StringBuffer(); sb.append("[DV]\n"); sb.append(" options=").append(Integer.toHexString(_option_flags)); sb.append(" title-prompt=").append(formatTextTitle(_promptTitle)); sb.append(" title-error=").append(formatTextTitle(_errorTitle)); sb.append(" text-prompt=").append(formatTextTitle(_promptText)); sb.append(" text-error=").append(formatTextTitle(_errorText)); sb.append("\n"); appendFormula(sb, "Formula 1:", _formula1); appendFormula(sb, "Formula 2:", _formula2); sb.append("Regions: "); int nRegions = _regions.countRanges(); for(int i=0; i0) { sb.append(", "); } CellRangeAddress addr = _regions.getCellRangeAddress(i); sb.append('(').append(addr.getFirstRow()).append(',').append(addr.getLastRow()); sb.append(',').append(addr.getFirstColumn()).append(',').append(addr.getLastColumn()).append(')'); } sb.append("\n"); sb.append("[/DV]"); return sb.toString(); } private static String formatTextTitle(UnicodeString us) { String str = us.getString(); if (str.length() == 1 && str.charAt(0) == '\0') { return "'\\0'"; } return str; } private static void appendFormula(StringBuffer sb, String label, Formula f) { sb.append(label); if (f == null) { sb.append("\n"); return; } Ptg[] ptgs = f.getTokens(); sb.append('\n'); for (Ptg ptg : ptgs) { sb.append('\t').append(ptg).append('\n'); } } public void serialize(LittleEndianOutput out) { out.writeInt(_option_flags); serializeUnicodeString(_promptTitle, out); serializeUnicodeString(_errorTitle, out); serializeUnicodeString(_promptText, out); serializeUnicodeString(_errorText, out); out.writeShort(_formula1.getEncodedTokenSize()); out.writeShort(_not_used_1); _formula1.serializeTokens(out); out.writeShort(_formula2.getEncodedTokenSize()); out.writeShort(_not_used_2); _formula2.serializeTokens(out); _regions.serialize(out); } /** * When entered via the UI, Excel translates empty string into "\0" * While it is possible to encode the title/text as empty string (Excel doesn't exactly crash), * the resulting tool-tip text / message box looks wrong. It is best to do the same as the * Excel UI and encode 'not present' as "\0". */ private static UnicodeString resolveTitleText(String str) { if (str == null || str.length() < 1) { return NULL_TEXT_STRING; } return new UnicodeString(str); } private static String resolveTitleString(UnicodeString us) { if (us == null || us.equals(NULL_TEXT_STRING)) { return null; } return us.getString(); } private static UnicodeString readUnicodeString(RecordInputStream in) { return new UnicodeString(in); } private static void serializeUnicodeString(UnicodeString us, LittleEndianOutput out) { StringUtil.writeUnicodeString(out, us.getString()); } private static int getUnicodeStringSize(UnicodeString us) { String str = us.getString(); return 3 + str.length() * (StringUtil.hasMultibyte(str) ? 2 : 1); } protected int getDataSize() { int size = 4+2+2+2+2;//options_field+first_formula_size+first_unused+sec_formula_size+sec+unused; size += getUnicodeStringSize(_promptTitle); size += getUnicodeStringSize(_errorTitle); size += getUnicodeStringSize(_promptText); size += getUnicodeStringSize(_errorText); size += _formula1.getEncodedTokenSize(); size += _formula2.getEncodedTokenSize(); size += _regions.getSize(); return size; } public short getSid() { return sid; } /** * Clones the object. Uses serialisation, as the * contents are somewhat complex */ @Override public DVRecord clone() { return (DVRecord)cloneViaReserialise(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy