Files
libreoffice/sc/source/ui/dbgui/asciiopt.cxx

411 lines
11 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:07:07 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:07:07 +00:00
*
* 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.
2000-09-18 16:07:07 +00:00
*
* 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).
2000-09-18 16:07:07 +00:00
*
* 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.
2000-09-18 16:07:07 +00:00
*
************************************************************************/
2000-09-18 16:07:07 +00:00
#include "global.hxx"
#include "scresid.hxx"
#include "impex.hxx"
#include "asciiopt.hxx"
#include "asciiopt.hrc"
#include <comphelper/string.hxx>
2000-12-20 11:18:06 +00:00
#include <rtl/tencinfo.h>
#include <unotools/transliterationwrapper.hxx>
// ause
#include "editutil.hxx"
2000-09-18 16:07:07 +00:00
// ============================================================================
2000-09-18 16:07:07 +00:00
2010-12-06 10:36:07 +00:00
static const sal_Char pStrFix[] = "FIX";
static const sal_Char pStrMrg[] = "MRG";
2000-09-18 16:07:07 +00:00
// ============================================================================
2000-09-18 16:07:07 +00:00
ScAsciiOptions::ScAsciiOptions() :
bFixedLen ( false ),
2000-09-18 16:07:07 +00:00
aFieldSeps ( ';' ),
bMergeFieldSeps ( false ),
bQuotedFieldAsText(false),
bDetectSpecialNumber(false),
cTextSep ( cDefaultTextSep ),
eCharSet ( osl_getThreadTextEncoding() ),
eLang ( LANGUAGE_SYSTEM ),
bCharSetSystem ( false ),
2000-09-18 16:07:07 +00:00
nStartRow ( 1 ),
nInfoCount ( 0 ),
pColStart ( NULL ),
pColFormat ( NULL )
{
}
ScAsciiOptions::ScAsciiOptions(const ScAsciiOptions& rOpt) :
bFixedLen ( rOpt.bFixedLen ),
aFieldSeps ( rOpt.aFieldSeps ),
bMergeFieldSeps ( rOpt.bMergeFieldSeps ),
bQuotedFieldAsText(rOpt.bQuotedFieldAsText),
bDetectSpecialNumber(rOpt.bDetectSpecialNumber),
2000-09-18 16:07:07 +00:00
cTextSep ( rOpt.cTextSep ),
eCharSet ( rOpt.eCharSet ),
eLang ( rOpt.eLang ),
2000-12-20 11:18:06 +00:00
bCharSetSystem ( rOpt.bCharSetSystem ),
2000-09-18 16:07:07 +00:00
nStartRow ( rOpt.nStartRow ),
nInfoCount ( rOpt.nInfoCount )
{
if (nInfoCount)
{
pColStart = new sal_Int32[nInfoCount];
pColFormat = new sal_uInt8[nInfoCount];
for (sal_uInt16 i=0; i<nInfoCount; i++)
2000-09-18 16:07:07 +00:00
{
pColStart[i] = rOpt.pColStart[i];
pColFormat[i] = rOpt.pColFormat[i];
}
}
else
{
pColStart = NULL;
pColFormat = NULL;
}
}
ScAsciiOptions::~ScAsciiOptions()
{
delete[] pColStart;
delete[] pColFormat;
}
void ScAsciiOptions::SetColInfo( sal_uInt16 nCount, const sal_Int32* pStart, const sal_uInt8* pFormat )
2000-09-18 16:07:07 +00:00
{
delete[] pColStart;
delete[] pColFormat;
nInfoCount = nCount;
if (nInfoCount)
{
pColStart = new sal_Int32[nInfoCount];
pColFormat = new sal_uInt8[nInfoCount];
for (sal_uInt16 i=0; i<nInfoCount; i++)
2000-09-18 16:07:07 +00:00
{
pColStart[i] = pStart[i];
pColFormat[i] = pFormat[i];
}
}
else
{
pColStart = NULL;
pColFormat = NULL;
}
}
2002-08-15 08:29:12 +00:00
void ScAsciiOptions::SetColumnInfo( const ScCsvExpDataVec& rDataVec )
{
delete[] pColStart;
pColStart = NULL;
delete[] pColFormat;
pColFormat = NULL;
2002-08-15 08:29:12 +00:00
nInfoCount = static_cast< sal_uInt16 >( rDataVec.size() );
if( nInfoCount )
{
pColStart = new sal_Int32[ nInfoCount ];
pColFormat = new sal_uInt8[ nInfoCount ];
for( sal_uInt16 nIx = 0; nIx < nInfoCount; ++nIx )
{
2002-08-15 08:29:12 +00:00
pColStart[ nIx ] = rDataVec[ nIx ].mnIndex;
pColFormat[ nIx ] = rDataVec[ nIx ].mnType;
}
}
}
2000-09-18 16:07:07 +00:00
ScAsciiOptions& ScAsciiOptions::operator=( const ScAsciiOptions& rCpy )
{
SetColInfo( rCpy.nInfoCount, rCpy.pColStart, rCpy.pColFormat );
bFixedLen = rCpy.bFixedLen;
aFieldSeps = rCpy.aFieldSeps;
bMergeFieldSeps = rCpy.bMergeFieldSeps;
bQuotedFieldAsText = rCpy.bQuotedFieldAsText;
2000-09-18 16:07:07 +00:00
cTextSep = rCpy.cTextSep;
eCharSet = rCpy.eCharSet;
2000-12-20 11:18:06 +00:00
bCharSetSystem = rCpy.bCharSetSystem;
2000-09-18 16:07:07 +00:00
nStartRow = rCpy.nStartRow;
return *this;
}
sal_Bool ScAsciiOptions::operator==( const ScAsciiOptions& rCmp ) const
2000-09-18 16:07:07 +00:00
{
if ( bFixedLen == rCmp.bFixedLen &&
aFieldSeps == rCmp.aFieldSeps &&
bMergeFieldSeps == rCmp.bMergeFieldSeps &&
bQuotedFieldAsText == rCmp.bQuotedFieldAsText &&
2000-09-18 16:07:07 +00:00
cTextSep == rCmp.cTextSep &&
eCharSet == rCmp.eCharSet &&
2000-12-20 11:18:06 +00:00
bCharSetSystem == rCmp.bCharSetSystem &&
2000-09-18 16:07:07 +00:00
nStartRow == rCmp.nStartRow &&
nInfoCount == rCmp.nInfoCount )
{
OSL_ENSURE( !nInfoCount || (pColStart && pColFormat && rCmp.pColStart && rCmp.pColFormat),
2000-09-18 16:07:07 +00:00
"0-Zeiger in ScAsciiOptions" );
for (sal_uInt16 i=0; i<nInfoCount; i++)
2000-09-18 16:07:07 +00:00
if ( pColStart[i] != rCmp.pColStart[i] ||
pColFormat[i] != rCmp.pColFormat[i] )
return false;
2000-09-18 16:07:07 +00:00
return sal_True;
2000-09-18 16:07:07 +00:00
}
return false;
2000-09-18 16:07:07 +00:00
}
//
// Der Options-String darf kein Semikolon mehr enthalten (wegen Pickliste)
// darum ab Version 336 Komma stattdessen
//
void ScAsciiOptions::ReadFromString( const String& rString )
{
xub_StrLen nCount = comphelper::string::getTokenCount(rString, ',');
2000-09-18 16:07:07 +00:00
String aToken;
xub_StrLen nSub;
xub_StrLen i;
//
// Feld-Trenner
//
if ( nCount >= 1 )
{
bFixedLen = bMergeFieldSeps = false;
2000-09-18 16:07:07 +00:00
aFieldSeps.Erase();
aToken = rString.GetToken(0,',');
if ( aToken.EqualsAscii(pStrFix) )
bFixedLen = sal_True;
nSub = comphelper::string::getTokenCount(aToken, '/');
2000-09-18 16:07:07 +00:00
for ( i=0; i<nSub; i++ )
{
String aCode = aToken.GetToken( i, '/' );
if ( aCode.EqualsAscii(pStrMrg) )
bMergeFieldSeps = sal_True;
2000-09-18 16:07:07 +00:00
else
{
sal_Int32 nVal = aCode.ToInt32();
if ( nVal )
aFieldSeps += (sal_Unicode) nVal;
}
}
}
//
// Text-Trenner
//
if ( nCount >= 2 )
{
aToken = rString.GetToken(1,',');
sal_Int32 nVal = aToken.ToInt32();
cTextSep = (sal_Unicode) nVal;
}
//
// Zeichensatz
//
if ( nCount >= 3 )
{
aToken = rString.GetToken(2,',');
2000-12-20 11:18:06 +00:00
eCharSet = ScGlobal::GetCharsetValue( aToken );
2000-09-18 16:07:07 +00:00
}
//
// Startzeile
//
if ( nCount >= 4 )
2000-09-18 16:07:07 +00:00
{
aToken = rString.GetToken(3,',');
2000-09-18 16:07:07 +00:00
nStartRow = aToken.ToInt32();
}
//
// Spalten-Infos
//
if ( nCount >= 5 )
2000-09-18 16:07:07 +00:00
{
delete[] pColStart;
delete[] pColFormat;
aToken = rString.GetToken(4,',');
nSub = comphelper::string::getTokenCount(aToken, '/');
2000-09-18 16:07:07 +00:00
nInfoCount = nSub / 2;
if (nInfoCount)
{
pColStart = new sal_Int32[nInfoCount];
pColFormat = new sal_uInt8[nInfoCount];
for (sal_uInt16 nInfo=0; nInfo<nInfoCount; nInfo++)
2000-09-18 16:07:07 +00:00
{
pColStart[nInfo] = (sal_Int32) aToken.GetToken( 2*nInfo, '/' ).ToInt32();
pColFormat[nInfo] = (sal_uInt8) aToken.GetToken( 2*nInfo+1, '/' ).ToInt32();
2000-09-18 16:07:07 +00:00
}
}
else
{
pColStart = NULL;
pColFormat = NULL;
}
}
// Language
if (nCount >= 6)
{
aToken = rString.GetToken(5, ',');
eLang = static_cast<LanguageType>(aToken.ToInt32());
}
// Import quoted field as text.
if (nCount >= 7)
{
aToken = rString.GetToken(6, ',');
bQuotedFieldAsText = aToken.EqualsAscii("true") ? true : false;
}
// Detect special nubmers.
if (nCount >= 8)
{
aToken = rString.GetToken(7, ',');
bDetectSpecialNumber = aToken.EqualsAscii("true") ? true : false;
}
else
bDetectSpecialNumber = sal_True; // default of versions that didn't add the parameter
// 9th token is used for "Save as shown" in export options
2000-09-18 16:07:07 +00:00
}
String ScAsciiOptions::WriteToString() const
{
String aOutStr;
//
// Feld-Trenner
//
if ( bFixedLen )
aOutStr.AppendAscii(pStrFix);
else if ( !aFieldSeps.Len() )
aOutStr += '0';
else
{
xub_StrLen nLen = aFieldSeps.Len();
for (xub_StrLen i=0; i<nLen; i++)
{
if (i)
aOutStr += '/';
aOutStr += String::CreateFromInt32(aFieldSeps.GetChar(i));
}
if ( bMergeFieldSeps )
{
aOutStr += '/';
aOutStr.AppendAscii(pStrMrg);
}
}
aOutStr += ','; // Token-Ende
//
// Text-Trenner
//
aOutStr += String::CreateFromInt32(cTextSep);
aOutStr += ','; // Token-Ende
//
// Zeichensatz
//
2000-12-20 11:18:06 +00:00
if ( bCharSetSystem ) // force "SYSTEM"
aOutStr += ScGlobal::GetCharsetString( RTL_TEXTENCODING_DONTKNOW );
else
aOutStr += ScGlobal::GetCharsetString( eCharSet );
2000-09-18 16:07:07 +00:00
aOutStr += ','; // Token-Ende
//
// Startzeile
//
aOutStr += String::CreateFromInt32(nStartRow);
aOutStr += ','; // Token-Ende
//
// Spalten-Infos
//
OSL_ENSURE( !nInfoCount || (pColStart && pColFormat), "0-Zeiger in ScAsciiOptions" );
for (sal_uInt16 nInfo=0; nInfo<nInfoCount; nInfo++)
2000-09-18 16:07:07 +00:00
{
if (nInfo)
aOutStr += '/';
aOutStr += String::CreateFromInt32(pColStart[nInfo]);
aOutStr += '/';
aOutStr += String::CreateFromInt32(pColFormat[nInfo]);
}
// #i112025# the options string is used in macros and linked sheets,
// so new options must be added at the end, to remain compatible
aOutStr += ',';
// Language
aOutStr += String::CreateFromInt32(eLang);
aOutStr += ',';
// Import quoted field as text.
aOutStr += String::CreateFromAscii(bQuotedFieldAsText ? "true" : "false");
aOutStr += ',';
// Detect special nubmers.
aOutStr += String::CreateFromAscii(bDetectSpecialNumber ? "true" : "false");
// 9th token is used for "Save as shown" in export options
2000-09-18 16:07:07 +00:00
return aOutStr;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */