summaryrefslogtreecommitdiff
path: root/sc/inc/dpgroup.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/dpgroup.hxx')
-rw-r--r--sc/inc/dpgroup.hxx266
1 files changed, 266 insertions, 0 deletions
diff --git a/sc/inc/dpgroup.hxx b/sc/inc/dpgroup.hxx
new file mode 100644
index 000000000000..2a66f8b45555
--- /dev/null
+++ b/sc/inc/dpgroup.hxx
@@ -0,0 +1,266 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef SC_DPGROUP_HXX
+#define SC_DPGROUP_HXX
+
+#include <vector>
+#include <hash_set>
+#include <boost/shared_ptr.hpp>
+
+#include "dptabdat.hxx"
+#include "scdllapi.h"
+// Wang Xu Ming -- 2009-8-17
+// DataPilot Migration - Cache&&Performance
+#include "dpglobal.hxx"
+// End Comments
+class ScDocument;
+class SvNumberFormatter;
+
+// --------------------------------------------------------------------
+
+//! API struct?
+struct ScDPNumGroupInfo
+{
+ sal_Bool Enable;
+ sal_Bool DateValues;
+ sal_Bool AutoStart;
+ sal_Bool AutoEnd;
+ double Start;
+ double End;
+ double Step;
+
+ ScDPNumGroupInfo() : Enable(sal_False), DateValues(sal_False), AutoStart(sal_False), AutoEnd(sal_False),
+ Start(0.0), End(0.0), Step(0.0) {}
+};
+
+// --------------------------------------------------------------------
+
+// ScDPDateGroupHelper is used as part of ScDPGroupDimension (additional dim.)
+// or ScDPNumGroupDimension (innermost, replaces the original dim.).
+// Source index, name and result collection are stored at the parent.
+
+class ScDPDateGroupHelper
+{
+ ScDPNumGroupInfo aNumInfo; // only start and end (incl. auto flags) are used
+ sal_Int32 nDatePart; // single part
+
+public:
+ ScDPDateGroupHelper( const ScDPNumGroupInfo& rInfo, sal_Int32 nPart );
+ ~ScDPDateGroupHelper();
+
+ sal_Int32 GetDatePart() const { return nDatePart; }
+ const ScDPNumGroupInfo& GetNumInfo() const { return aNumInfo; }
+
+ // Wang Xu Ming -- 2009-9-8
+ // DataPilot Migration - Cache&&Performance
+ void FillColumnEntries( SCCOL nSourceDim, ScDPTableDataCache* pCahe , std::vector< SCROW >& rEntries,
+ const std::vector< SCROW >& rOriginal ) const;
+ // End Comments
+};
+
+// --------------------------------------------------------------------
+
+typedef ::std::vector<ScDPItemData> ScDPItemDataVec;
+
+class ScDPGroupItem
+{
+ ScDPItemData aGroupName; // name of group item
+ ScDPItemDataVec aElements; // names of items in original dimension
+
+public:
+ ScDPGroupItem( const ScDPItemData& rName );
+ ~ScDPGroupItem();
+
+ void AddElement( const ScDPItemData& rName );
+
+ const ScDPItemData& GetName() const { return aGroupName; }
+ bool HasElement( const ScDPItemData& rData ) const;
+ bool HasCommonElement( const ScDPGroupItem& rOther ) const;
+
+ void FillGroupFilter( ScDPCacheTable::GroupFilter& rFilter ) const;
+};
+
+typedef ::std::vector<ScDPGroupItem> ScDPGroupItemVec;
+
+class ScDPGroupDimension
+{
+ long nSourceDim;
+ long nGroupDim;
+ String aGroupName;
+ ScDPDateGroupHelper* pDateHelper;
+ ScDPGroupItemVec aItems;
+ // Wang Xu Ming -- 2009-9-4
+ // DataPilot Migration - Cache&&Performance
+ mutable ::std::vector< SCROW > maMemberEntries;
+ // End Comments
+public:
+ ScDPGroupDimension( long nSource, const String& rNewName );
+ ScDPGroupDimension( const ScDPGroupDimension& rOther );
+ ~ScDPGroupDimension();
+
+ ScDPGroupDimension& operator=( const ScDPGroupDimension& rOther );
+
+ void AddItem( const ScDPGroupItem& rItem );
+ void SetGroupDim( long nDim ); // called from AddGroupDimension
+
+ long GetSourceDim() const { return nSourceDim; }
+ long GetGroupDim() const { return nGroupDim; }
+ const String& GetName() const { return aGroupName; }
+
+// Wang Xu Ming -- 2009-9-2
+// DataPilot Migration - Cache&&Performance
+ const std::vector< SCROW >& GetColumnEntries( const ScDPCacheTable& rCacheTable, const std::vector< SCROW >& rOriginal ) const;
+// End Comments
+ const ScDPGroupItem* GetGroupForData( const ScDPItemData& rData ) const; // rData = entry in original dim.
+ const ScDPGroupItem* GetGroupForName( const ScDPItemData& rName ) const; // rName = entry in group dim.
+ const ScDPGroupItem* GetGroupByIndex( size_t nIndex ) const;
+
+ const ScDPDateGroupHelper* GetDateHelper() const { return pDateHelper; }
+
+ void MakeDateHelper( const ScDPNumGroupInfo& rInfo, sal_Int32 nPart );
+
+ void DisposeData();
+
+ size_t GetItemCount() const { return aItems.size(); }
+};
+
+typedef ::std::vector<ScDPGroupDimension> ScDPGroupDimensionVec;
+
+// --------------------------------------------------------------------
+
+class SC_DLLPUBLIC ScDPNumGroupDimension
+{
+ ScDPNumGroupInfo aGroupInfo; // settings
+ ScDPDateGroupHelper* pDateHelper;
+// Wang Xu Ming -- 2009-9-4
+// DataPilot Migration - Cache&&Performance
+ mutable ::std::vector< SCROW > maMemberEntries;
+// End Comments
+ mutable bool bHasNonInteger; // initialized in GetNumEntries
+ mutable sal_Unicode cDecSeparator; // initialized in GetNumEntries
+
+public:
+ ScDPNumGroupDimension();
+ ScDPNumGroupDimension( const ScDPNumGroupInfo& rInfo );
+ ScDPNumGroupDimension( const ScDPNumGroupDimension& rOther );
+ ~ScDPNumGroupDimension();
+
+ ScDPNumGroupDimension& operator=( const ScDPNumGroupDimension& rOther );
+
+ const ScDPNumGroupInfo& GetInfo() const { return aGroupInfo; }
+ bool HasNonInteger() const { return bHasNonInteger; }
+ sal_Unicode GetDecSeparator() const { return cDecSeparator; }
+
+ const ScDPDateGroupHelper* GetDateHelper() const { return pDateHelper; }
+
+ const std::vector< SCROW >& GetNumEntries( SCCOL nSourceDim, ScDPTableDataCache* pCache,
+ const std::vector< SCROW >& rOriginal ) const;
+
+ void MakeDateHelper( const ScDPNumGroupInfo& rInfo, sal_Int32 nPart );
+
+ void DisposeData();
+};
+
+// --------------------------------------------------------------------
+//
+// proxy implementation of ScDPTableData to add grouped items
+//
+
+class ScDPGroupTableData : public ScDPTableData
+{
+ typedef ::std::hash_set< ::rtl::OUString, ::rtl::OUStringHash, ::std::equal_to< ::rtl::OUString > > StringHashSet;
+
+ ::boost::shared_ptr<ScDPTableData> pSourceData;
+ long nSourceCount;
+ ScDPGroupDimensionVec aGroups;
+ ScDPNumGroupDimension* pNumGroups; // array[nSourceCount]
+ ScDocument* pDoc;
+ StringHashSet aGroupNames;
+
+// Wang Xu Ming -- 2009-8-17
+// DataPilot Migration - Cache&&Performance
+ void FillGroupValues( SCROW* pItemDataIndex, long nCount, const long* pDims );
+ virtual long GetSourceDim( long nDim );
+// End Comments
+ void CopyFields(const ::std::vector<long>& rFieldDims, ::std::vector<long>& rNewFieldDims);
+
+ bool IsNumGroupDimension( long nDimension ) const;
+ void GetNumGroupInfo( long nDimension, ScDPNumGroupInfo& rInfo,
+ bool& rNonInteger, sal_Unicode& rDecimal );
+
+ void ModifyFilterCriteria(::std::vector<ScDPCacheTable::Criterion>& rCriteria);
+
+public:
+ // takes ownership of pSource
+ ScDPGroupTableData( const ::boost::shared_ptr<ScDPTableData>& pSource, ScDocument* pDocument );
+ virtual ~ScDPGroupTableData();
+
+ void AddGroupDimension( const ScDPGroupDimension& rGroup );
+ void SetNumGroupDimension( long nIndex, const ScDPNumGroupDimension& rGroup );
+ long GetDimensionIndex( const String& rName );
+
+ ScDocument* GetDocument() { return pDoc; }
+
+ virtual long GetColumnCount();
+// Wang Xu Ming -- 2009-8-17
+// DataPilot Migration - Cache&&Performance
+ virtual long GetMembersCount( long nDim );
+ virtual const std::vector< SCROW >& GetColumnEntries( long nColumn ) ;
+ virtual const ScDPItemData* GetMemberById( long nDim, long nId);
+ virtual long Compare( long nDim, long nDataId1, long nDataId2);
+
+// End Comments
+ virtual String getDimensionName(long nColumn);
+ virtual BOOL getIsDataLayoutDimension(long nColumn);
+ virtual BOOL IsDateDimension(long nDim);
+ virtual ULONG GetNumberFormat(long nDim);
+ virtual void DisposeData();
+ virtual void SetEmptyFlags( BOOL bIgnoreEmptyRows, BOOL bRepeatIfEmpty );
+
+ virtual bool IsRepeatIfEmpty();
+
+ virtual void CreateCacheTable();
+ virtual void FilterCacheTable(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, const ::std::hash_set<sal_Int32>& rDataDims);
+ virtual void GetDrillDownData(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria,
+ const ::std::hash_set<sal_Int32>& rCatDims,
+ ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& rData);
+ virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow);
+ virtual const ScDPCacheTable& GetCacheTable() const;
+
+ virtual BOOL IsBaseForGroup(long nDim) const;
+ virtual long GetGroupBase(long nGroupDim) const;
+ virtual BOOL IsNumOrDateGroup(long nDim) const;
+ virtual BOOL IsInGroup( const ScDPItemData& rGroupData, long nGroupIndex,
+ const ScDPItemData& rBaseData, long nBaseIndex ) const;
+ virtual BOOL HasCommonElement( const ScDPItemData& rFirstData, long nFirstIndex,
+ const ScDPItemData& rSecondData, long nSecondIndex ) const;
+};
+
+
+#endif
+