]> source.dussan.org Git - poi.git/commitdiff
Extend named range support in formulas to include non-contiguous named ranges
authorNick Burch <nick@apache.org>
Tue, 8 Jan 2008 15:47:00 +0000 (15:47 +0000)
committerNick Burch <nick@apache.org>
Tue, 8 Jan 2008 15:47:00 +0000 (15:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@610026 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/changes.xml
src/documentation/content/xdocs/status.xml
src/java/org/apache/poi/hssf/record/NameRecord.java
src/java/org/apache/poi/hssf/record/formula/Area3DPtg.java
src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java

index 448cca0a4aca84f1ddbc1cb4576b991fdf8024d6..b5d60ad17f1c912f11fed8f726d330dfc948a6fc 100644 (file)
@@ -36,7 +36,7 @@
 
                <!-- Don't forget to update status.xml too! -->
         <release version="3.0.2-FINAL" date="2008-??-??">
-            <action dev="POI-DEVELOPERS" type="add">43510 - Add support for named ranges in formulas</action>
+            <action dev="POI-DEVELOPERS" type="add">43510 - Add support for named ranges in formulas, including non-contiguous named ranges</action>
             <action dev="POI-DEVELOPERS" type="add">43937 - Add support for hiding and un-hiding sheets, and checking their current hidden status</action>
             <action dev="POI-DEVELOPERS" type="fix">44167 - Fix for non-contiguous named ranges</action>
             <action dev="POI-DEVELOPERS" type="fix">44070 - Fix for shifting comments when shifting rows</action>
index edc7cccd374a7bd2b6fa6c1417d0fec6b6c6f318..58d6df9aa62ff8b2f7f7ecc91363ff68e0530c03 100644 (file)
@@ -33,7 +33,7 @@
        <!-- Don't forget to update changes.xml too! -->
     <changes>
         <release version="3.0.2-FINAL" date="2008-??-??">
-            <action dev="POI-DEVELOPERS" type="add">43510 - Add support for named ranges in formulas</action>
+            <action dev="POI-DEVELOPERS" type="add">43510 - Add support for named ranges in formulas, including non-contiguous named ranges</action>
             <action dev="POI-DEVELOPERS" type="add">43937 - Add support for hiding and un-hiding sheets, and checking their current hidden status</action>
             <action dev="POI-DEVELOPERS" type="fix">44167 - Fix for non-contiguous named ranges</action>
             <action dev="POI-DEVELOPERS" type="fix">44070 - Fix for shifting comments when shifting rows</action>
index 9ddec5a8192ab861dffa0d8f69914ba9f3a1a4a4..0d0d7f1cda9eec9c43ead19e97b609dd929d6dfd 100644 (file)
@@ -24,6 +24,7 @@ import java.util.Iterator;
 
 import org.apache.poi.hssf.model.Workbook;
 import org.apache.poi.hssf.record.formula.*;
+import org.apache.poi.hssf.util.AreaReference;
 import org.apache.poi.hssf.util.RangeAddress;
 import org.apache.poi.util.HexDump;
 import org.apache.poi.util.LittleEndian;
@@ -712,19 +713,32 @@ public class NameRecord extends Record {
         }
 
         if (ra.hasRange()) {
-            ptg = new Area3DPtg();
-            ((Area3DPtg) ptg).setExternSheetIndex(externSheetIndex);
-            ((Area3DPtg) ptg).setArea(ref);
-            this.setDefinitionTextLength((short)ptg.getSize());
+               // Is it contiguous or not?
+               AreaReference[] refs = 
+                       AreaReference.generateContiguous(ref);
+            this.setDefinitionTextLength((short)0);
+
+            // Add the area reference(s) 
+               for(int i=0; i<refs.length; i++) {
+                   ptg = new Area3DPtg();
+                   ((Area3DPtg) ptg).setExternSheetIndex(externSheetIndex);
+                   ((Area3DPtg) ptg).setArea(refs[i].toString());
+                   field_13_name_definition.push(ptg);
+                   this.setDefinitionTextLength( (short)(getDefinitionLength() + ptg.getSize()) );
+               }
+               // And then a union if we had more than one area
+               if(refs.length > 1) {
+                       ptg = new UnionPtg();
+                field_13_name_definition.push(ptg);
+                   this.setDefinitionTextLength( (short)(getDefinitionLength() + ptg.getSize()) );
+               }
         } else {
             ptg = new Ref3DPtg();
             ((Ref3DPtg) ptg).setExternSheetIndex(externSheetIndex);
             ((Ref3DPtg) ptg).setArea(ref);
+            field_13_name_definition.push(ptg);
             this.setDefinitionTextLength((short)ptg.getSize());
         }
-
-        field_13_name_definition.push(ptg);
-
     }
 
     /**
@@ -858,6 +872,15 @@ public class NameRecord extends Record {
             .append("\n");
         buffer.append("    .Name (Unicode text)  = ").append( getNameText() )
             .append("\n");
+        
+        buffer.append("    .Parts (" + field_13_name_definition.size() +"):")
+            .append("\n");
+        Iterator it = field_13_name_definition.iterator();
+        while(it.hasNext()) {
+               Ptg ptg = (Ptg)it.next();
+               buffer.append("       " + ptg.toString()).append("\n");
+        }
+        
         buffer.append("    .Menu text (Unicode string without length field)        = ").append( field_14_custom_menu_text )
             .append("\n");
         buffer.append("    .Description text (Unicode string without length field) = ").append( field_15_description_text )
index 470b6e390bc4ebcb3bde8958aa5f29d9dcffc20e..d808a94c4d63acfc67ca065846e35b0ea507642b 100644 (file)
@@ -243,16 +243,22 @@ public class Area3DPtg extends Ptg
        public void setArea( String ref )
        {
                AreaReference ar = new AreaReference( ref );
+               CellReference[] crs = ar.getCells();
+               
+               CellReference firstCell = crs[0];
+               CellReference lastCell = firstCell;
+               if(crs.length > 1) {
+                       lastCell = crs[1];
+               }
 
-               setFirstRow( (short) ar.getCells()[0].getRow() );
-               setFirstColumn( (short) ar.getCells()[0].getCol() );
-               setLastRow( (short) ar.getCells()[1].getRow() );
-               setLastColumn( (short) ar.getCells()[1].getCol() );
-               setFirstColRelative( !ar.getCells()[0].isColAbsolute() );
-               setLastColRelative( !ar.getCells()[1].isColAbsolute() );
-               setFirstRowRelative( !ar.getCells()[0].isRowAbsolute() );
-               setLastRowRelative( !ar.getCells()[1].isRowAbsolute() );
-
+               setFirstRow(    (short) firstCell.getRow() );
+               setFirstColumn( (short) firstCell.getCol() );
+               setLastRow(     (short) lastCell.getRow() );
+               setLastColumn(  (short) lastCell.getCol() );
+               setFirstColRelative( !firstCell.isColAbsolute() );
+               setLastColRelative(  !lastCell.isColAbsolute() );
+               setFirstRowRelative( !firstCell.isRowAbsolute() );
+               setLastRowRelative(  !lastCell.isRowAbsolute() );
        }
 
        public String toFormulaString(Workbook book)
index 51d3e66996d37d1bbdc72494ecbbecfc9db88a08..4a84209fb5c608e7046762f55d173608a9d43e36 100644 (file)
@@ -382,6 +382,15 @@ public class TestFormulaParser extends TestCase {
                assertTrue("two tokens expected, got "+ptgs.length,ptgs.length == 2);
                assertEquals(NamePtg.class, ptgs[0].getClass());
                assertEquals(FuncVarPtg.class, ptgs[1].getClass());
+               
+               // And make it non-contiguous
+               name.setReference("A1:A2,C3");
+               fp = HSSFFormulaEvaluator.getUnderlyingParser(workbook, "SUM(testName)");
+               fp.parse();
+               ptgs = fp.getRPNPtg();
+               assertTrue("two tokens expected, got "+ptgs.length,ptgs.length == 2);
+               assertEquals(NamePtg.class, ptgs[0].getClass());
+               assertEquals(FuncVarPtg.class, ptgs[1].getClass());
        }
 
        public void testLookupAndMatchFunctionArgs()