You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2023/02/07 17:46:29 UTC

[openoffice] branch AOO41X updated (bd4036b4fc -> 1f71f1d8c3)

This is an automated email from the ASF dual-hosted git repository.

damjan pushed a change to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


    from bd4036b4fc Cleaned up resource file for Euro converter
     new 74eb9fee55 Allow the XLSX Relationship "Target" attribute in _rels/.rels to have superfluous slashes.
     new 1f71f1d8c3 Add support for the new XLSX date type in cells, denoted with attribute t="d", used by Excel 2010.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 main/oox/inc/oox/core/relationshandler.hxx         |  4 ++
 .../oox/helper/datetimehelper.hxx}                 | 12 +++--
 main/oox/source/core/filterdetect.cxx              |  3 +-
 main/oox/source/core/relationshandler.cxx          | 26 +++++++++-
 main/oox/source/helper/attributelist.cxx           | 13 +----
 .../modelbase.cxx => helper/datetimehelper.cxx}    | 56 +++++++---------------
 main/oox/source/helper/makefile.mk                 |  1 +
 main/oox/source/xls/sheetdatacontext.cxx           | 12 +++++
 main/oox/source/xls/unitconverter.cxx              |  2 +-
 9 files changed, 74 insertions(+), 55 deletions(-)
 copy main/oox/{source/token/tokens.hxx.tail => inc/oox/helper/datetimehelper.hxx} (75%)
 copy main/oox/source/{drawingml/chart/modelbase.cxx => helper/datetimehelper.cxx} (54%)


[openoffice] 02/02: Add support for the new XLSX date type in cells, denoted with attribute t="d", used by Excel 2010.

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

damjan pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 1f71f1d8c317442f96cd6d435bb275ff6e97eccb
Author: Damjan Jovanovic <da...@gmail.com>
AuthorDate: Sun Jan 8 10:24:33 2023 +0200

    Add support for the new XLSX date type in cells, denoted with attribute t="d",
    used by Excel 2010.
    
    Also refactor the code so the datetime attribute in pivot tables is also parsed
    by the same function, and increase the parsing accuracy to the maximum (HundredthSeconds,
    instead of just Seconds).
    
    Fixes: #127034 - xlsx file: imported DateTime cells are empty (Excel 2010 compatible)
    Patch by: me
    
    (cherry picked from commit 9621e552cdf723df9a998b3af4218407d6c66e37)
---
 main/oox/inc/oox/helper/datetimehelper.hxx | 34 +++++++++++++++++++
 main/oox/source/helper/attributelist.cxx   | 13 ++-----
 main/oox/source/helper/datetimehelper.cxx  | 54 ++++++++++++++++++++++++++++++
 main/oox/source/helper/makefile.mk         |  1 +
 main/oox/source/xls/sheetdatacontext.cxx   | 12 +++++++
 main/oox/source/xls/unitconverter.cxx      |  2 +-
 6 files changed, 104 insertions(+), 12 deletions(-)

diff --git a/main/oox/inc/oox/helper/datetimehelper.hxx b/main/oox/inc/oox/helper/datetimehelper.hxx
new file mode 100644
index 0000000000..dda5a1181d
--- /dev/null
+++ b/main/oox/inc/oox/helper/datetimehelper.hxx
@@ -0,0 +1,34 @@
+/**************************************************************
+ * 
+ * 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.
+ * 
+ *************************************************************/
+
+#ifndef OOX_HELPER_DATETIMEHELPER_HXX
+#define OOX_HELPER_DATETIMEHELPER_HXX
+
+#include <com/sun/star/util/DateTime.hpp>
+#include "oox/helper/helper.hxx"
+
+namespace oox {
+
+bool parseISO8601DateTime( ::rtl::OUString &aValue, ::com::sun::star::util::DateTime &dateTime );
+
+} // namespace oox
+
+#endif /* OOX_HELPER_DATETIMEHELPER_HXX */
diff --git a/main/oox/source/helper/attributelist.cxx b/main/oox/source/helper/attributelist.cxx
index 30cf8babb1..686aeada05 100644
--- a/main/oox/source/helper/attributelist.cxx
+++ b/main/oox/source/helper/attributelist.cxx
@@ -22,6 +22,7 @@
 
 
 #include "oox/helper/attributelist.hxx"
+#include "oox/helper/datetimehelper.hxx"
 
 #include <osl/diagnose.h>
 #include <rtl/ustrbuf.hxx>
@@ -233,17 +234,7 @@ OptValue< DateTime > AttributeList::getDateTime( sal_Int32 nAttrToken ) const
 {
     OUString aValue = mxAttribs->getOptionalValue( nAttrToken );
     DateTime aDateTime;
-    bool bValid = (aValue.getLength() == 19) && (aValue[ 4 ] == '-') && (aValue[ 7 ] == '-') &&
-        (aValue[ 10 ] == 'T') && (aValue[ 13 ] == ':') && (aValue[ 16 ] == ':');
-    if( bValid )
-    {
-        aDateTime.Year    = static_cast< sal_uInt16 >( aValue.copy( 0, 4 ).toInt32() );
-        aDateTime.Month   = static_cast< sal_uInt16 >( aValue.copy( 5, 2 ).toInt32() );
-        aDateTime.Day     = static_cast< sal_uInt16 >( aValue.copy( 8, 2 ).toInt32() );
-        aDateTime.Hours   = static_cast< sal_uInt16 >( aValue.copy( 11, 2 ).toInt32() );
-        aDateTime.Minutes = static_cast< sal_uInt16 >( aValue.copy( 14, 2 ).toInt32() );
-        aDateTime.Seconds = static_cast< sal_uInt16 >( aValue.copy( 17, 2 ).toInt32() );
-    }
+    bool bValid = parseISO8601DateTime( aValue, aDateTime );
     return OptValue< DateTime >( bValid, aDateTime );
 }
 
diff --git a/main/oox/source/helper/datetimehelper.cxx b/main/oox/source/helper/datetimehelper.cxx
new file mode 100644
index 0000000000..cf44aaa24a
--- /dev/null
+++ b/main/oox/source/helper/datetimehelper.cxx
@@ -0,0 +1,54 @@
+/**************************************************************
+ * 
+ * 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.
+ * 
+ *************************************************************/
+
+#include "oox/helper/datetimehelper.hxx"
+
+namespace oox {
+
+// ============================================================================
+
+using namespace ::com::sun::star::util;
+
+using ::rtl::OUString;
+
+// ============================================================================
+
+bool parseISO8601DateTime( OUString &aValue, DateTime &dateTime )
+{
+    bool bValid = (aValue.getLength() >= 19) && (aValue[ 4 ] == '-') && (aValue[ 7 ] == '-') &&
+        (aValue[ 10 ] == 'T') && (aValue[ 13 ] == ':') && (aValue[ 16 ] == ':');
+    if( bValid )
+    {
+        dateTime.Year    = static_cast< sal_uInt16 >( aValue.copy( 0, 4 ).toInt32() );
+        dateTime.Month   = static_cast< sal_uInt16 >( aValue.copy( 5, 2 ).toInt32() );
+        dateTime.Day     = static_cast< sal_uInt16 >( aValue.copy( 8, 2 ).toInt32() );
+        dateTime.Hours   = static_cast< sal_uInt16 >( aValue.copy( 11, 2 ).toInt32() );
+        dateTime.Minutes = static_cast< sal_uInt16 >( aValue.copy( 14, 2 ).toInt32() );
+        double seconds = aValue.copy( 17 ).toDouble();
+        dateTime.Seconds = static_cast< sal_uInt16 >( floor( seconds ) );
+        dateTime.HundredthSeconds = static_cast< sal_uInt16 >( round ( 100 * ( seconds - floor( seconds ) ) ) );
+    }
+    return bValid;
+}
+
+// ============================================================================
+
+} // namespace oox
diff --git a/main/oox/source/helper/makefile.mk b/main/oox/source/helper/makefile.mk
index 75be2d7457..21c7f69c55 100644
--- a/main/oox/source/helper/makefile.mk
+++ b/main/oox/source/helper/makefile.mk
@@ -42,6 +42,7 @@ SLOFILES =	\
 		$(SLO)$/binaryoutputstream.obj		\
 		$(SLO)$/binarystreambase.obj		\
 		$(SLO)$/containerhelper.obj			\
+		$(SLO)$/datetimehelper.obj			\
 		$(SLO)$/graphichelper.obj			\
 		$(SLO)$/modelobjecthelper.obj		\
 		$(SLO)$/progressbar.obj				\
diff --git a/main/oox/source/xls/sheetdatacontext.cxx b/main/oox/source/xls/sheetdatacontext.cxx
index f986992fd2..9882a65c06 100644
--- a/main/oox/source/xls/sheetdatacontext.cxx
+++ b/main/oox/source/xls/sheetdatacontext.cxx
@@ -27,7 +27,9 @@
 #include <com/sun/star/table/XCell.hpp>
 #include <com/sun/star/table/XCellRange.hpp>
 #include <com/sun/star/text/XText.hpp>
+#include <com/sun/star/util/DateTime.hpp>
 #include "oox/helper/attributelist.hxx"
+#include "oox/helper/datetimehelper.hxx"
 #include "oox/helper/propertyset.hxx"
 #include "oox/xls/addressconverter.hxx"
 #include "oox/xls/biffinputstream.hxx"
@@ -44,6 +46,7 @@ using namespace ::com::sun::star::sheet;
 using namespace ::com::sun::star::table;
 using namespace ::com::sun::star::text;
 using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::util;
 
 using ::oox::core::ContextHandlerRef;
 using ::rtl::OUString;
@@ -212,6 +215,15 @@ void SheetDataContext::onEndElement()
                 case XML_n:
                     mrSheetData.setValueCell( maCellData, maCellValue.toDouble() );
                 break;
+                case XML_d:
+                {
+                    DateTime dateTime;
+                    if ( parseISO8601DateTime( maCellValue, dateTime ) )
+                        mrSheetData.setDateTimeCell( maCellData, dateTime );
+                    else
+                        mrSheetData.setErrorCell( maCellData, maCellValue );
+                }
+                break;
                 case XML_b:
                     mrSheetData.setBooleanCell( maCellData, maCellValue.toDouble() != 0.0 );
                 break;
diff --git a/main/oox/source/xls/unitconverter.cxx b/main/oox/source/xls/unitconverter.cxx
index c0d48d6bd3..93e62e4939 100644
--- a/main/oox/source/xls/unitconverter.cxx
+++ b/main/oox/source/xls/unitconverter.cxx
@@ -190,7 +190,7 @@ double UnitConverter::calcSerialFromDateTime( const DateTime& rDateTime ) const
     sal_Int32 nDays = lclGetDays( Date( rDateTime.Day, rDateTime.Month, rDateTime.Year ) ) - mnNullDate;
     OSL_ENSURE( nDays >= 0, "UnitConverter::calcDateTimeSerial - invalid date" );
     OSL_ENSURE( (rDateTime.Hours <= 23) && (rDateTime.Minutes <= 59) && (rDateTime.Seconds <= 59), "UnitConverter::calcDateTimeSerial - invalid time" );
-    return nDays + rDateTime.Hours / 24.0 + rDateTime.Minutes / 1440.0 + rDateTime.Seconds / 86400.0;
+    return nDays + rDateTime.Hours / 24.0 + rDateTime.Minutes / 1440.0 + rDateTime.Seconds / 86400.0 + rDateTime.HundredthSeconds / 8640000.0;
 }
 
 DateTime UnitConverter::calcDateTimeFromSerial( double fSerial ) const


[openoffice] 01/02: Allow the XLSX Relationship "Target" attribute in _rels/.rels to have superfluous slashes.

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

damjan pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 74eb9fee553bfc2739c7523bac1b787b6ee509f7
Author: Damjan Jovanovic <da...@apache.org>
AuthorDate: Sat Jan 7 20:25:36 2023 +0200

    Allow the XLSX Relationship "Target" attribute in _rels/.rels to have superfluous slashes.
    
    Fixes: #117672 - Opening XLSX fails when the Relationship "Target" attribute in _rels/.rels
           has superfluous slashes
    Patch by: me
    
    (cherry picked from commit 3ff2b12a82734e8b46c6f7693a7e1b8eef8ada96)
---
 main/oox/inc/oox/core/relationshandler.hxx |  4 ++++
 main/oox/source/core/filterdetect.cxx      |  3 ++-
 main/oox/source/core/relationshandler.cxx  | 26 +++++++++++++++++++++++++-
 3 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/main/oox/inc/oox/core/relationshandler.hxx b/main/oox/inc/oox/core/relationshandler.hxx
index 6affee9858..8ceee13276 100644
--- a/main/oox/inc/oox/core/relationshandler.hxx
+++ b/main/oox/inc/oox/core/relationshandler.hxx
@@ -44,6 +44,10 @@ public:
                             const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& rxAttribs )
                         throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException);
 
+    static ::rtl::OUString
+                        removeDuplicateSlashes(
+                            const ::rtl::OUString &path );
+
 private:
     RelationsRef        mxRelations;
 };
diff --git a/main/oox/source/core/filterdetect.cxx b/main/oox/source/core/filterdetect.cxx
index 5b16df16f1..3c10e600c4 100644
--- a/main/oox/source/core/filterdetect.cxx
+++ b/main/oox/source/core/filterdetect.cxx
@@ -29,6 +29,7 @@
 #include <openssl/evp.h>
 #include <rtl/digest.h>
 #include "oox/core/fastparser.hxx"
+#include "oox/core/relationshandler.hxx"
 #include "oox/helper/attributelist.hxx"
 #include "oox/helper/binaryinputstream.hxx"
 #include "oox/helper/binaryoutputstream.hxx"
@@ -158,7 +159,7 @@ void FilterDetectDocHandler::parseRelationship( const AttributeList& rAttribs )
 {
     OUString aType = rAttribs.getString( XML_Type, OUString() );
     if( aType.equalsAscii( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" ) )
-        maTargetPath = OUString( sal_Unicode( '/' ) ) + rAttribs.getString( XML_Target, OUString() );
+        maTargetPath = RelationsFragment::removeDuplicateSlashes( OUString( sal_Unicode( '/' ) ) + rAttribs.getString( XML_Target, OUString() ) );
 }
 
 OUString FilterDetectDocHandler::getFilterNameFromContentType( const OUString& rContentType ) const
diff --git a/main/oox/source/core/relationshandler.cxx b/main/oox/source/core/relationshandler.cxx
index 51a0afc12f..a8566b6f28 100644
--- a/main/oox/source/core/relationshandler.cxx
+++ b/main/oox/source/core/relationshandler.cxx
@@ -79,7 +79,7 @@ Reference< XFastContextHandler > RelationsFragment::createFastChildContext(
             Relation aRelation;
             aRelation.maId     = aAttribs.getString( XML_Id, OUString() );
             aRelation.maType   = aAttribs.getString( XML_Type, OUString() );
-            aRelation.maTarget = aAttribs.getString( XML_Target, OUString() );
+            aRelation.maTarget = removeDuplicateSlashes( aAttribs.getString( XML_Target, OUString() ) );
             if( (aRelation.maId.getLength() > 0) && (aRelation.maType.getLength() > 0) && (aRelation.maTarget.getLength() > 0) )
             {
                 sal_Int32 nTargetMode = aAttribs.getToken( XML_TargetMode, XML_Internal );
@@ -100,6 +100,30 @@ Reference< XFastContextHandler > RelationsFragment::createFastChildContext(
     return xRet;
 }
 
+OUString RelationsFragment::removeDuplicateSlashes( const OUString &path )
+{
+    rtl::OUStringBuffer buffer;
+    bool hadSlash = false;
+    for ( sal_Int32 i = 0; i < path.getLength(); i++ )
+    {
+        sal_Unicode ch = path[i];
+        if ( ch == '/' )
+        {
+            if ( !hadSlash )
+            {
+                hadSlash = true;
+                buffer.append( sal_Unicode( '/' ) );
+            }
+        }
+        else
+        {
+            hadSlash = false;
+            buffer.append( ch );
+        }
+    }
+    return buffer.makeStringAndClear();
+}
+
 // ============================================================================
 
 } // namespace core