1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "xedbdata.hxx"
#include "excrecds.hxx"
#include "xltools.hxx"
#include "dbdata.hxx"
#include "document.hxx"
#include <oox/export/utils.hxx>
using namespace oox;
/** (So far) dummy implementation of table export for BIFF5/BIFF7. */
class XclExpTablesImpl5 : public XclExpTables
{
public:
explicit XclExpTablesImpl5( const XclExpRoot& rRoot );
virtual ~XclExpTablesImpl5();
virtual void Save( XclExpStream& rStrm ) override;
virtual void SaveXml( XclExpXmlStream& rStrm ) override;
};
/** Implementation of table export for OOXML, so far dummy for BIFF8. */
class XclExpTablesImpl8 : public XclExpTables
{
public:
explicit XclExpTablesImpl8( const XclExpRoot& rRoot );
virtual ~XclExpTablesImpl8();
virtual void Save( XclExpStream& rStrm ) override;
virtual void SaveXml( XclExpXmlStream& rStrm ) override;
};
XclExpTablesImpl5::XclExpTablesImpl5( const XclExpRoot& rRoot ) :
XclExpTables( rRoot )
{
}
XclExpTablesImpl5::~XclExpTablesImpl5()
{
}
void XclExpTablesImpl5::Save( XclExpStream& /*rStrm*/ )
{
// not implemented
}
void XclExpTablesImpl5::SaveXml( XclExpXmlStream& /*rStrm*/ )
{
// not applicable
}
XclExpTablesImpl8::XclExpTablesImpl8( const XclExpRoot& rRoot ) :
XclExpTables( rRoot )
{
}
XclExpTablesImpl8::~XclExpTablesImpl8()
{
}
void XclExpTablesImpl8::Save( XclExpStream& /*rStrm*/ )
{
// not implemented
}
void XclExpTablesImpl8::SaveXml( XclExpXmlStream& rStrm )
{
sax_fastparser::FSHelperPtr& pWorksheetStrm = rStrm.GetCurrentStream();
pWorksheetStrm->startElement( XML_tableParts, FSEND);
for (auto const& it : maTables)
{
OUString aRelId;
sax_fastparser::FSHelperPtr pTableStrm = rStrm.CreateOutputStream(
XclXmlUtils::GetStreamName("xl/tables/", "table", it.mnTableId),
XclXmlUtils::GetStreamName("../tables/", "table", it.mnTableId),
pWorksheetStrm->getOutputStream(),
CREATE_XL_CONTENT_TYPE("table"),
CREATE_OFFICEDOC_RELATION_TYPE("table"),
&aRelId);
pWorksheetStrm->singleElement( XML_tablePart,
FSNS(XML_r, XML_id), XclXmlUtils::ToOString(aRelId).getStr(),
FSEND);
rStrm.PushStream( pTableStrm);
SaveTableXml( rStrm, it);
rStrm.PopStream();
}
pWorksheetStrm->endElement( XML_tableParts);
}
XclExpTablesManager::XclExpTablesManager( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
}
XclExpTablesManager::~XclExpTablesManager()
{
}
void XclExpTablesManager::Initialize()
{
// All non-const to be able to call RefreshTableColumnNames().
ScDocument& rDoc = GetDoc();
ScDBCollection* pDBColl = rDoc.GetDBCollection();
if (!pDBColl)
return;
ScDBCollection::NamedDBs& rDBs = pDBColl->getNamedDBs();
if (rDBs.empty())
return;
sal_Int32 nTableId = 0;
for (ScDBCollection::NamedDBs::iterator itDB(rDBs.begin()); itDB != rDBs.end(); ++itDB)
{
ScDBData* pDBData = itDB->get();
pDBData->RefreshTableColumnNames( &rDoc); // currently not in sync, so refresh
ScRange aRange( ScAddress::UNINITIALIZED);
pDBData->GetArea( aRange);
SCTAB nTab = aRange.aStart.Tab();
TablesMapType::iterator it = maTablesMap.find( nTab);
if (it == maTablesMap.end())
{
::std::shared_ptr< XclExpTables > pNew;
switch( GetBiff() )
{
case EXC_BIFF5:
pNew.reset( new XclExpTablesImpl5( GetRoot()));
break;
case EXC_BIFF8:
pNew.reset( new XclExpTablesImpl8( GetRoot()));
break;
default:
assert(!"Unknown BIFF type!");
continue; // for
}
::std::pair< TablesMapType::iterator, bool > ins( maTablesMap.insert( ::std::make_pair( nTab, pNew)));
if (!ins.second)
{
assert(!"XclExpTablesManager::Initialize - XclExpTables insert failed");
continue; // for
}
it = ins.first;
}
it->second->AppendTable( pDBData, ++nTableId);
}
}
::std::shared_ptr< XclExpTables > XclExpTablesManager::GetTablesBySheet( SCTAB nTab )
{
TablesMapType::iterator it = maTablesMap.find(nTab);
return it == maTablesMap.end() ? nullptr : it->second;
}
XclExpTables::Entry::Entry( const ScDBData* pData, sal_Int32 nTableId ) :
mpData(pData), mnTableId(nTableId)
{
}
XclExpTables::XclExpTables( const XclExpRoot& rRoot ) :
XclExpRoot(rRoot)
{
}
XclExpTables::~XclExpTables()
{
}
void XclExpTables::AppendTable( const ScDBData* pData, sal_Int32 nTableId )
{
maTables.push_back( Entry( pData, nTableId));
}
void XclExpTables::SaveTableXml( XclExpXmlStream& rStrm, const Entry& rEntry )
{
const ScDBData& rData = *rEntry.mpData;
ScRange aRange( ScAddress::UNINITIALIZED);
rData.GetArea( aRange);
sax_fastparser::FSHelperPtr& pTableStrm = rStrm.GetCurrentStream();
pTableStrm->startElement( XML_table,
XML_xmlns, "http://schemas.openxmlformats.org/spreadsheetml/2006/main",
XML_id, OString::number( rEntry.mnTableId).getStr(),
XML_name, XclXmlUtils::ToOString( rData.GetName()).getStr(),
XML_displayName, XclXmlUtils::ToOString( rData.GetName()).getStr(),
XML_ref, XclXmlUtils::ToOString(aRange),
XML_headerRowCount, BS(rData.HasHeader()),
XML_totalsRowCount, BS(rData.HasTotals()),
XML_totalsRowShown, BS(rData.HasTotals()), // we don't support that but if there are totals they are shown
// OOXTODO: XML_comment, ...,
// OOXTODO: XML_connectionId, ...,
// OOXTODO: XML_dataCellStyle, ...,
// OOXTODO: XML_dataDxfId, ...,
// OOXTODO: XML_headerRowBorderDxfId, ...,
// OOXTODO: XML_headerRowCellStyle, ...,
// OOXTODO: XML_headerRowDxfId, ...,
// OOXTODO: XML_insertRow, ...,
// OOXTODO: XML_insertRowShift, ...,
// OOXTODO: XML_published, ...,
// OOXTODO: XML_tableBorderDxfId, ...,
// OOXTODO: XML_tableType, ...,
// OOXTODO: XML_totalsRowBorderDxfId, ...,
// OOXTODO: XML_totalsRowCellStyle, ...,
// OOXTODO: XML_totalsRowDxfId, ...,
FSEND);
if (rData.HasAutoFilter())
{
/* TODO: does this need to exclude totals row? */
/* TODO: in OOXML 12.3.21 Table Definition Part has information
* that an applied autoFilter has child elements
* <af:filterColumn><af:filters><af:filter>.
* When not applied but buttons hidden, Excel writes, for example,
* <filterColumn colId="0" hiddenButton="1"/> */
ExcAutoFilterRecs aAutoFilter( rStrm.GetRoot(), aRange.aStart.Tab(), &rData);
aAutoFilter.SaveXml( rStrm);
}
const std::vector< OUString >& rColNames = rData.GetTableColumnNames();
if (!rColNames.empty())
{
pTableStrm->startElement( XML_tableColumns,
XML_count, OString::number( aRange.aEnd.Col() - aRange.aStart.Col() + 1).getStr(),
FSEND);
for (size_t i=0, n=rColNames.size(); i < n; ++i)
{
// OOXTODO: write <calculatedColumnFormula> once we support it, in
// which case we'd need start/endElement XML_tableColumn for such
// column.
// OOXTODO: write <totalsRowFormula> once we support it.
pTableStrm->singleElement( XML_tableColumn,
XML_id, OString::number(i+1).getStr(),
XML_name, OUStringToOString( rColNames[i], RTL_TEXTENCODING_UTF8).getStr(),
// OOXTODO: XML_dataCellStyle, ...,
// OOXTODO: XML_dataDxfId, ...,
// OOXTODO: XML_headerRowCellStyle, ...,
// OOXTODO: XML_headerRowDxfId, ...,
// OOXTODO: XML_queryTableFieldId, ...,
// OOXTODO: XML_totalsRowCellStyle, ...,
// OOXTODO: XML_totalsRowDxfId, ...,
// OOXTODO: XML_totalsRowFunction, ...,
// OOXTODO: XML_totalsRowLabel, ...,
// OOXTODO: XML_uniqueName, ...,
FSEND);
}
pTableStrm->endElement( XML_tableColumns);
}
// OOXTODO: write <tableStyleInfo> once we have table styles.
pTableStrm->endElement( XML_table);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|