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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
#include "xmltabi.hxx"
#include "xmlimprt.hxx"
#include "xmlrowi.hxx"
#include "xmlcoli.hxx"
#include "xmlsceni.hxx"
#include "xmlexternaltabi.hxx"
#include "xmlnexpi.hxx"
#include "document.hxx"
#include "docuno.hxx"
#include "olinetab.hxx"
#include "XMLConverter.hxx"
#include "XMLTableShapesContext.hxx"
#include "XMLTableSourceContext.hxx"
#include "XMLStylesImportHelper.hxx"
#include "rangeutl.hxx"
#include "externalrefmgr.hxx"
#include "sheetdata.hxx"
#include "xmlcondformat.hxx"
#include <xmloff/xmltkmap.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/XMLEventsImportContext.hxx>
#include <tools/urlobj.hxx>
#include <com/sun/star/sheet/XSpreadsheetDocument.hpp>
#include <com/sun/star/sheet/XSpreadsheets.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <com/sun/star/sheet/XPrintAreas.hpp>
#include <com/sun/star/table/CellAddress.hpp>
using namespace com::sun::star;
using namespace xmloff::token;
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::UNO_QUERY;
using ::com::sun::star::xml::sax::XAttributeList;
/**
* Determine whether this table is an external reference cache from its
* name. There is currently no way of determining whether a table is a
* regular table or an external reference cache other than examining the
* name itself. We should probably introduce a new boolean value for
* table:table element and use it instead of doing this, to make it more
* reliable and future-proof.
*
* @param rName
*
* @return
*/
static bool lcl_isExternalRefCache(const OUString& rName, OUString& rUrl, OUString& rExtTabName)
{
// 'file:///path/to/file.ods'#MySheet
// 'file:///path/to/file.ods'#MySheet with space
// 'file:///path/to/file's.ods'#Sheet (Notice the quote in the file name.
// That's allowed.)
if ( rName.toChar() != '\'' ) // initial quote
return false;
// #i114504# Other schemes besides "file:" are also allowed.
// CompareProtocolScheme is quick, only looks at the start of the string.
INetProtocol eProt = INetURLObject::CompareProtocolScheme( rName.copy(1) );
if ( eProt == INetProtocol::NotValid )
return false;
OUString aPrefix = INetURLObject::GetScheme( eProt );
sal_Int32 nPrefLen = aPrefix.getLength();
OUStringBuffer aUrlBuf, aTabNameBuf;
aUrlBuf.append( aPrefix );
sal_Int32 n = rName.getLength();
const sal_Unicode* p = rName.getStr();
bool bInUrl = true;
sal_Unicode cPrev = 0;
for (sal_Int32 i = nPrefLen+1; i < n; ++i) // start the loop after quote and prefix
{
const sal_Unicode c = p[i];
if (bInUrl)
{
// parsing file URL
if (c == '#')
{
if (cPrev != '\'')
return false;
rUrl = aUrlBuf.makeStringAndClear();
rUrl = rUrl.copy(0, rUrl.getLength()-1); // remove the trailing single-quote.
bInUrl = false;
}
else
aUrlBuf.append(c);
}
else
// parsing sheet name.
aTabNameBuf.append(c);
cPrev = c;
}
if (bInUrl)
return false;
if (aTabNameBuf.isEmpty())
return false;
rExtTabName = aTabNameBuf.makeStringAndClear();
return true;
}
ScXMLExternalTabData::ScXMLExternalTabData() :
mpCacheTable(), mnRow(0), mnCol(0), mnFileId(0)
{
}
ScXMLTableContext::ScXMLTableContext( ScXMLImport& rImport,
sal_uInt16 nPrfx,
const OUString& rLName,
const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList ) :
SvXMLImportContext( rImport, nPrfx, rLName ),
nStartOffset(-1),
bStartFormPage(false),
bPrintEntireSheet(true)
{
// get start offset in file (if available)
nStartOffset = GetScImport().GetByteOffset();
ScXMLTabProtectionData aProtectData;
OUString sName;
OUString sStyleName;
sal_Int16 nAttrCount(xAttrList.is() ? xAttrList->getLength() : 0);
const SvXMLTokenMap& rAttrTokenMap = GetScImport().GetTableAttrTokenMap();
for( sal_Int16 i=0; i < nAttrCount; ++i )
{
const OUString& sAttrName(xAttrList->getNameByIndex( i ));
OUString aLocalName;
sal_uInt16 nPrefix(GetScImport().GetNamespaceMap().GetKeyByAttrName(
sAttrName, &aLocalName ));
const OUString& sValue(xAttrList->getValueByIndex( i ));
switch( rAttrTokenMap.Get( nPrefix, aLocalName ) )
{
case XML_TOK_TABLE_NAME:
sName = sValue;
break;
case XML_TOK_TABLE_STYLE_NAME:
sStyleName = sValue;
break;
case XML_TOK_TABLE_PROTECTED:
aProtectData.mbProtected = IsXMLToken(sValue, XML_TRUE);
break;
case XML_TOK_TABLE_PRINT_RANGES:
sPrintRanges = sValue;
break;
case XML_TOK_TABLE_PASSWORD:
aProtectData.maPassword = sValue;
break;
case XML_TOK_TABLE_PASSHASH:
aProtectData.meHash1 = ScPassHashHelper::getHashTypeFromURI(sValue);
break;
case XML_TOK_TABLE_PASSHASH_2:
aProtectData.meHash2 = ScPassHashHelper::getHashTypeFromURI(sValue);
break;
case XML_TOK_TABLE_PRINT:
{
if (IsXMLToken(sValue, XML_FALSE))
bPrintEntireSheet = false;
}
break;
}
}
OUString aExtUrl, aExtTabName;
if (lcl_isExternalRefCache(sName, aExtUrl, aExtTabName))
{
// This is an external ref cache table.
pExternalRefInfo.reset(new ScXMLExternalTabData);
pExternalRefInfo->maFileUrl = aExtUrl;
ScDocument* pDoc = GetScImport().GetDocument();
if (pDoc)
{
ScExternalRefManager* pRefMgr = pDoc->GetExternalRefManager();
pExternalRefInfo->mnFileId = pRefMgr->getExternalFileId(aExtUrl);
pExternalRefInfo->mpCacheTable = pRefMgr->getCacheTable(pExternalRefInfo->mnFileId, aExtTabName, true,
nullptr, &aExtUrl);
pExternalRefInfo->mpCacheTable->setWholeTableCached();
}
}
else
{
// This is a regular table.
GetScImport().GetTables().NewSheet(sName, sStyleName, aProtectData);
}
}
ScXMLTableContext::~ScXMLTableContext()
{
}
SvXMLImportContext *ScXMLTableContext::CreateChildContext( sal_uInt16 nPrefix,
const OUString& rLName,
const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList )
{
const SvXMLTokenMap& rTokenMap(GetScImport().GetTableElemTokenMap());
sal_uInt16 nToken = rTokenMap.Get(nPrefix, rLName);
if (pExternalRefInfo.get())
{
// We only care about the table-row and table-source elements for
// external cache data.
switch (nToken)
{
case XML_TOK_TABLE_ROW_GROUP:
case XML_TOK_TABLE_HEADER_ROWS:
case XML_TOK_TABLE_ROWS:
// #i101319# don't discard rows in groups or header (repeat range)
return new ScXMLExternalRefRowsContext(
GetScImport(), nPrefix, rLName, xAttrList, *pExternalRefInfo);
case XML_TOK_TABLE_ROW:
return new ScXMLExternalRefRowContext(
GetScImport(), nPrefix, rLName, xAttrList, *pExternalRefInfo);
case XML_TOK_TABLE_SOURCE:
return new ScXMLExternalRefTabSourceContext(
GetScImport(), nPrefix, rLName, xAttrList, *pExternalRefInfo);
default:
;
}
return new SvXMLImportContext(GetImport(), nPrefix, rLName);
}
SvXMLImportContext *pContext(nullptr);
switch (nToken)
{
case XML_TOK_TABLE_NAMED_EXPRESSIONS:
{
SCTAB nTab = GetScImport().GetTables().GetCurrentSheet();
pContext = new ScXMLNamedExpressionsContext(
GetScImport(), nPrefix, rLName, xAttrList,
new ScXMLNamedExpressionsContext::SheetLocalInserter(GetScImport(), nTab));
}
break;
case XML_TOK_TABLE_COL_GROUP:
pContext = new ScXMLTableColsContext( GetScImport(), nPrefix,
rLName, xAttrList,
false, true );
break;
case XML_TOK_TABLE_HEADER_COLS:
pContext = new ScXMLTableColsContext( GetScImport(), nPrefix,
rLName, xAttrList,
true, false );
break;
case XML_TOK_TABLE_COLS:
pContext = new ScXMLTableColsContext( GetScImport(), nPrefix,
rLName, xAttrList,
false, false );
break;
case XML_TOK_TABLE_COL:
pContext = new ScXMLTableColContext( GetScImport(), nPrefix,
rLName, xAttrList );
break;
case XML_TOK_TABLE_PROTECTION:
case XML_TOK_TABLE_PROTECTION_EXT:
pContext = new ScXMLTableProtectionContext( GetScImport(), nPrefix, rLName, xAttrList );
break;
case XML_TOK_TABLE_ROW_GROUP:
pContext = new ScXMLTableRowsContext( GetScImport(), nPrefix,
rLName, xAttrList,
false, true );
break;
case XML_TOK_TABLE_HEADER_ROWS:
pContext = new ScXMLTableRowsContext( GetScImport(), nPrefix,
rLName, xAttrList,
true, false );
break;
case XML_TOK_TABLE_ROWS:
pContext = new ScXMLTableRowsContext( GetScImport(), nPrefix,
rLName, xAttrList,
false, false );
break;
case XML_TOK_TABLE_ROW:
pContext = new ScXMLTableRowContext( GetScImport(), nPrefix,
rLName, xAttrList//,
//this
);
break;
case XML_TOK_TABLE_SOURCE:
pContext = new ScXMLTableSourceContext( GetScImport(), nPrefix, rLName, xAttrList);
break;
case XML_TOK_TABLE_SCENARIO:
pContext = new ScXMLTableScenarioContext( GetScImport(), nPrefix, rLName, xAttrList);
break;
case XML_TOK_TABLE_SHAPES:
pContext = new ScXMLTableShapesContext( GetScImport(), nPrefix, rLName, xAttrList);
break;
case XML_TOK_TABLE_FORMS:
{
GetScImport().GetFormImport()->startPage(GetScImport().GetTables().GetCurrentXDrawPage());
bStartFormPage = true;
pContext = xmloff::OFormLayerXMLImport::createOfficeFormsContext( GetScImport(), nPrefix, rLName );
}
break;
case XML_TOK_TABLE_EVENT_LISTENERS:
case XML_TOK_TABLE_EVENT_LISTENERS_EXT:
{
// use XEventsSupplier interface of the sheet
uno::Reference<document::XEventsSupplier> xSupplier( GetScImport().GetTables().GetCurrentXSheet(), uno::UNO_QUERY );
pContext = new XMLEventsImportContext( GetImport(), nPrefix, rLName, xSupplier );
}
break;
case XML_TOK_TABLE_CONDFORMATS:
pContext = new ScXMLConditionalFormatsContext( GetScImport(), nPrefix, rLName );
break;
default:
;
}
if( !pContext )
pContext = new SvXMLImportContext( GetImport(), nPrefix, rLName );
return pContext;
}
void ScXMLTableContext::EndElement()
{
ScXMLImport::MutexGuard aMutexGuard(GetScImport());
ScXMLImport& rImport = GetScImport();
rImport.GetStylesImportHelper()->EndTable();
ScDocument* pDoc(rImport.GetDocument());
if (!pDoc)
return;
ScMyTables& rTables = rImport.GetTables();
SCTAB nCurTab = rTables.GetCurrentSheet();
if (!sPrintRanges.isEmpty())
{
ScRangeList aRangeList;
ScRangeStringConverter::GetRangeListFromString( aRangeList, sPrintRanges, pDoc, ::formula::FormulaGrammar::CONV_OOO );
size_t nCount = aRangeList.size();
for (size_t i=0; i< nCount; i++ )
{
pDoc->AddPrintRange( nCurTab, *aRangeList[i] );
}
}
else if (!bPrintEntireSheet)
// Sheet has "print entire sheet" option by default. Remove it.
pDoc->ClearPrintRanges(nCurTab);
ScOutlineTable* pOutlineTable(pDoc->GetOutlineTable(nCurTab));
if (pOutlineTable)
{
ScOutlineArray& rColArray(pOutlineTable->GetColArray());
size_t nDepth = rColArray.GetDepth();
for (size_t i = 0; i < nDepth; ++i)
{
size_t nCount = rColArray.GetCount(i);
for (size_t j = 0; j < nCount; ++j)
{
const ScOutlineEntry* pEntry = rColArray.GetEntry(i, j);
if (pEntry->IsHidden())
rColArray.SetVisibleBelow(i, j, false);
}
}
ScOutlineArray& rRowArray(pOutlineTable->GetRowArray());
nDepth = rRowArray.GetDepth();
for (size_t i = 0; i < nDepth; ++i)
{
size_t nCount = rRowArray.GetCount(i);
for (size_t j = 0; j < nCount; ++j)
{
const ScOutlineEntry* pEntry = rRowArray.GetEntry(i, j);
if (pEntry->IsHidden())
rRowArray.SetVisibleBelow(i, j, false);
}
}
}
if (rTables.HasDrawPage())
{
if (rTables.HasXShapes())
{
rImport.GetShapeImport()->popGroupAndSort();
uno::Reference < drawing::XShapes > xTempShapes(rTables.GetCurrentXShapes());
rImport.GetShapeImport()->endPage(xTempShapes);
}
if (bStartFormPage)
rImport.GetFormImport()->endPage();
}
rTables.DeleteTable();
rImport.ProgressBarIncrement();
// store stream positions
if (!pExternalRefInfo.get() && nStartOffset >= 0 /* && nEndOffset >= 0 */)
{
ScSheetSaveData* pSheetData = ScModelObj::getImplementation(rImport.GetModel())->GetSheetSaveData();
SCTAB nTab = rTables.GetCurrentSheet();
// pSheetData->AddStreamPos( nTab, nStartOffset, nEndOffset );
pSheetData->StartStreamPos( nTab, nStartOffset );
}
}
ScXMLImport& ScXMLTableProtectionContext::GetScImport()
{
return static_cast<ScXMLImport&>(GetImport());
}
ScXMLTableProtectionContext::ScXMLTableProtectionContext(
ScXMLImport& rImport, sal_uInt16 nPrefix, const OUString& rLName,
const Reference<XAttributeList>& xAttrList ) :
SvXMLImportContext( rImport, nPrefix, rLName )
{
const SvXMLTokenMap& rAttrTokenMap = GetScImport().GetTableProtectionAttrTokenMap();
bool bSelectProtectedCells = false;
bool bSelectUnprotectedCells = false;
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
for (sal_Int16 i = 0; i < nAttrCount; ++i)
{
const OUString& aAttrName = xAttrList->getNameByIndex(i);
const OUString aValue = xAttrList->getValueByIndex(i);
OUString aLocalName;
sal_uInt16 nLocalPrefix = GetScImport().GetNamespaceMap().GetKeyByAttrName(
aAttrName, &aLocalName);
switch (rAttrTokenMap.Get(nLocalPrefix, aLocalName))
{
case XML_TOK_TABLE_SELECT_PROTECTED_CELLS:
case XML_TOK_TABLE_SELECT_PROTECTED_CELLS_EXT:
bSelectProtectedCells = IsXMLToken(aValue, XML_TRUE);
break;
case XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS:
case XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS_EXT:
bSelectUnprotectedCells = IsXMLToken(aValue, XML_TRUE);
break;
default:
SAL_WARN("sc", "unknown attribute: " << aAttrName);
}
}
ScXMLTabProtectionData& rProtectData = GetScImport().GetTables().GetCurrentProtectionData();
rProtectData.mbSelectProtectedCells = bSelectProtectedCells;
rProtectData.mbSelectUnprotectedCells = bSelectUnprotectedCells;
}
ScXMLTableProtectionContext::~ScXMLTableProtectionContext()
{
}
SvXMLImportContext* ScXMLTableProtectionContext::CreateChildContext(
sal_uInt16 /*nPrefix*/, const OUString& /*rLocalName*/, const Reference<XAttributeList>& /*xAttrList*/ )
{
return nullptr;
}
void ScXMLTableProtectionContext::EndElement()
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|