mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
554 lines
21 KiB
C++
554 lines
21 KiB
C++
/*
|
||
* (c) Copyright Ascensio System SIA 2010-2019
|
||
*
|
||
* This program is a free software product. You can redistribute it and/or
|
||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||
* version 3 as published by the Free Software Foundation. In accordance with
|
||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||
* of any third-party rights.
|
||
*
|
||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||
*
|
||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||
* street, Riga, Latvia, EU, LV-1050.
|
||
*
|
||
* The interactive user interfaces in modified source and object code versions
|
||
* of the Program must display Appropriate Legal Notices, as required under
|
||
* Section 5 of the GNU AGPL version 3.
|
||
*
|
||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||
* grant you any rights under trademark law for use of our trademarks.
|
||
*
|
||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||
* well as technical writing content are licensed under the terms of the
|
||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||
*
|
||
*/
|
||
#include "CSVWriter.h"
|
||
#include "../../UnicodeConverter/UnicodeConverter.h"
|
||
#include "../../UnicodeConverter/UnicodeConverter_Encodings.h"
|
||
#include "../../DesktopEditor/common/StringBuilder.h"
|
||
|
||
#include "../../Common/DocxFormat/Source/XlsxFormat/Workbook/Workbook.h"
|
||
#include "../../Common/DocxFormat/Source/XlsxFormat/SharedStrings/SharedStrings.h"
|
||
#include "../../Common/DocxFormat/Source/XlsxFormat/Styles/Styles.h"
|
||
#include "../../Common/DocxFormat/Source/XlsxFormat/Worksheets/Worksheet.h"
|
||
|
||
#include <boost/date_time.hpp>
|
||
|
||
namespace CSVWriter
|
||
{
|
||
std::wstring convert_date_time (const std::wstring & sValue, const std::wstring & format_code, bool bDate = true, bool bTime = true)
|
||
{
|
||
double dTime = XmlUtils::GetDouble(sValue);
|
||
int iDate = (int)dTime;
|
||
dTime -= iDate;
|
||
|
||
std::wstring date_str, time_str;
|
||
|
||
// format_code todooo
|
||
try
|
||
{
|
||
if (bDate)
|
||
{
|
||
boost::gregorian::date date_ = boost::gregorian::date(1900, 1, 1) + boost::gregorian::date_duration(iDate - 2);
|
||
|
||
date_str = boost::lexical_cast<std::wstring>(date_.year())
|
||
+ L"-" +
|
||
(date_.month() < 10 ? L"0" : L"") + boost::lexical_cast<std::wstring>(date_.month().as_number())
|
||
+ L"-" +
|
||
(date_.day() < 10 ? L"0" : L"") + boost::lexical_cast<std::wstring>(date_.day());
|
||
}
|
||
|
||
if (bTime)
|
||
{
|
||
int hours = 0, minutes = 0;
|
||
double sec = 0;
|
||
|
||
boost::posix_time::time_duration day(24, 0, 0);
|
||
|
||
double millisec = day.total_milliseconds() * dTime;
|
||
|
||
sec = millisec / 1000.;
|
||
hours = sec / 60. / 60.;
|
||
minutes = (sec - (hours * 60 * 60)) / 60.;
|
||
sec = sec - (hours * 60 + minutes) * 60.;
|
||
|
||
time_str =
|
||
(hours < 10 ? L"0" : L"") + std::to_wstring(hours) + L":" +
|
||
(minutes < 10 ? L"0" : L"") + std::to_wstring(minutes) + L":" +
|
||
(sec < 10 ? L"0" : L"") + std::to_wstring((int)sec);
|
||
}
|
||
}
|
||
catch (...)
|
||
{
|
||
return sValue;
|
||
}
|
||
return (bDate ? date_str : L"") + (bDate & bTime ? L" " : L"" ) + (bTime ? time_str : L"");
|
||
}
|
||
long gcd(long a, long b)
|
||
{
|
||
if (a == 0) return b;
|
||
else if (b == 0) return a;
|
||
|
||
if (a < b) return gcd(a, b % a);
|
||
else return gcd(b, a % b);
|
||
}
|
||
std::wstring convert_fraction(const std::wstring & sValue)
|
||
{
|
||
double dValue = XmlUtils::GetDouble(sValue);
|
||
|
||
double integral = std::floor(dValue);
|
||
double frac = dValue - integral;
|
||
|
||
const long precision = 1000000000;
|
||
|
||
long gcd_ = gcd(round(frac * precision), precision);
|
||
|
||
long denominator = precision / gcd_;
|
||
long numerator = round(frac * precision) / gcd_;
|
||
|
||
return std::to_wstring((int)integral) + L" " + std::to_wstring(numerator) + L"/" + std::to_wstring(denominator);
|
||
}
|
||
std::wstring convert_scientific(const std::wstring & sValue)
|
||
{
|
||
double dValue = XmlUtils::GetDouble(sValue);
|
||
|
||
std::wstringstream strm;
|
||
strm << std::setprecision(2) << std::scientific << dValue;
|
||
return strm.str();
|
||
}
|
||
//---------------------------------------------------------------------------------------------
|
||
static std::wstring g_sNewLineN = _T("\n");
|
||
static std::wstring g_sEndJson = _T("]");
|
||
static std::wstring g_sQuote = _T("\"");
|
||
static std::wstring g_sDoubleQuote = _T("\"\"");
|
||
static std::wstring g_sBkt = _T("[");
|
||
static std::wstring g_sBktComma = _T(",[");
|
||
|
||
void escapeJson(const std::wstring& sInput, NSStringUtils::CStringBuilder& oBuilder)
|
||
{
|
||
//http://stackoverflow.com/questions/7724448/simple-json-string-escape-for-c
|
||
for (size_t i = 0; i < sInput.length(); ++i)
|
||
{
|
||
wchar_t c = sInput[i];
|
||
switch (c)
|
||
{
|
||
case '"': oBuilder.WriteString(_T("\\\"")); break;
|
||
case '\\': oBuilder.WriteString(_T("\\\\")); break;
|
||
case '\b': oBuilder.WriteString(_T("\\b")); break;
|
||
case '\f': oBuilder.WriteString(_T("\\f")); break;
|
||
case '\n': oBuilder.WriteString(_T("\\n")); break;
|
||
case '\r': oBuilder.WriteString(_T("\\r")); break;
|
||
case '\t': oBuilder.WriteString(_T("\\t")); break;
|
||
default:
|
||
if ('\x00' <= c && c <= '\x1f')
|
||
{
|
||
oBuilder.WriteString(_T("\\u00"));
|
||
oBuilder.WriteHexByte((unsigned char)c);
|
||
}
|
||
else
|
||
{
|
||
oBuilder.AddCharSafe(c);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
void WriteFile(NSFile::CFileBinary *pFile, wchar_t **pWriteBuffer, int &nCurrentIndex, const std::wstring &sWriteString, unsigned int &nCodePage, bool bIsEnd = false)
|
||
{
|
||
if (NULL == pFile || NULL == pWriteBuffer)
|
||
return;
|
||
size_t nCountChars = sWriteString.length();
|
||
if (0 == nCountChars && !bIsEnd)
|
||
return;
|
||
|
||
const size_t c_nSize = 1048576; // 1024 * 1024
|
||
const size_t nSizeWchar = sizeof(wchar_t);
|
||
|
||
if (NULL == *pWriteBuffer)
|
||
{
|
||
*pWriteBuffer = new wchar_t[c_nSize];
|
||
memset(*pWriteBuffer, 0, nSizeWchar * c_nSize);
|
||
nCurrentIndex = 0;
|
||
}
|
||
|
||
if (nCountChars + nCurrentIndex > c_nSize || bIsEnd)
|
||
{
|
||
// Буффер заполнился, пишем
|
||
if (nCodePage == 48 && 2 == sizeof(wchar_t))//todo 48 временно CP_UTF16
|
||
{
|
||
pFile->WriteFile((BYTE*)*pWriteBuffer, sizeof (wchar_t) * nCurrentIndex);
|
||
}
|
||
else
|
||
{
|
||
const NSUnicodeConverter::EncodindId& oEncodindId = NSUnicodeConverter::Encodings[nCodePage];
|
||
NSUnicodeConverter::CUnicodeConverter oUnicodeConverter;
|
||
std::string sFileDataA = oUnicodeConverter.fromUnicode(*pWriteBuffer, nCurrentIndex, oEncodindId.Name);
|
||
pFile->WriteFile((BYTE*)sFileDataA.c_str(), (DWORD)sFileDataA.length());
|
||
}
|
||
|
||
memset(*pWriteBuffer, 0, nSizeWchar * c_nSize);
|
||
nCurrentIndex = 0;
|
||
}
|
||
|
||
if (!bIsEnd)
|
||
{
|
||
memcpy(*pWriteBuffer + nCurrentIndex, sWriteString.c_str(), nCountChars * nSizeWchar);
|
||
nCurrentIndex += (int)nCountChars;
|
||
}
|
||
}
|
||
void WriteFromXlsxToCsv(const std::wstring &sFileDst, OOX::Spreadsheet::CXlsx &oXlsx, unsigned int nCodePage, const std::wstring& sDelimiter, bool bJSON)
|
||
{
|
||
CCSVWriter oWriter(oXlsx, nCodePage, sDelimiter, bJSON);
|
||
oWriter.Start(sFileDst);
|
||
if ( oXlsx.m_pWorkbook )
|
||
{
|
||
LONG lActiveSheet = oXlsx.m_pWorkbook->GetActiveSheetIndex();
|
||
std::wstring sSheetRId = _T("Sheet1"); // Читаем не по rId, а по имени листа
|
||
// Get active sheet rId (для конвертации в CSV нужно использовать name, т.к. это наш бинарник из js-скриптов и еще нет rId
|
||
// А для json-а нужно пользовать rId, т.к. при открытии они используются
|
||
if ( oXlsx.m_pWorkbook->m_oSheets.IsInit() && !oXlsx.m_pWorkbook->m_oSheets->m_arrItems.empty())
|
||
{
|
||
OOX::Spreadsheet::CSheet* pSheet = NULL;
|
||
if (lActiveSheet >= 0 && lActiveSheet < (LONG)oXlsx.m_pWorkbook->m_oSheets->m_arrItems.size())
|
||
{
|
||
pSheet = oXlsx.m_pWorkbook-> m_oSheets->m_arrItems[lActiveSheet];
|
||
}
|
||
else
|
||
{
|
||
pSheet = oXlsx.m_pWorkbook->m_oSheets->m_arrItems.front();
|
||
}
|
||
sSheetRId = bJSON ? pSheet->m_oRid->GetValue() : *pSheet->m_oName;
|
||
}
|
||
|
||
std::map<std::wstring, OOX::Spreadsheet::CWorksheet*>::const_iterator pFind = oXlsx.m_mapWorksheets.find(sSheetRId);
|
||
if (pFind != oXlsx.m_mapWorksheets.end())
|
||
{
|
||
OOX::Spreadsheet::CWorksheet *pWorksheet = pFind->second;
|
||
if (NULL != pWorksheet && pWorksheet->m_oSheetData.IsInit())
|
||
{
|
||
oWriter.WriteSheetStart(pWorksheet);
|
||
|
||
for (size_t i = 0; i < pWorksheet->m_oSheetData->m_arrItems.size(); ++i)
|
||
{
|
||
OOX::Spreadsheet::CRow *pRow = pWorksheet->m_oSheetData->m_arrItems[i];
|
||
oWriter.WriteRowStart(pRow);
|
||
for (size_t j = 0; j < pRow->m_arrItems.size(); ++j)
|
||
{
|
||
oWriter.WriteCell(pRow->m_arrItems[j]);
|
||
}
|
||
oWriter.WriteRowEnd(pRow);
|
||
}
|
||
oWriter.WriteSheetEnd(pWorksheet);
|
||
}
|
||
}
|
||
}
|
||
oWriter.End();
|
||
}
|
||
CCSVWriter::CCSVWriter(OOX::Spreadsheet::CXlsx &m_oXlsx, unsigned int m_nCodePage, const std::wstring& m_sDelimiter, bool m_bJSON): m_oXlsx(m_oXlsx), m_nCodePage(m_nCodePage), m_sDelimiter(m_sDelimiter), m_bJSON(m_bJSON)
|
||
{
|
||
m_pWriteBuffer = NULL;
|
||
m_nCurrentIndex = 0;
|
||
m_sEscape = _T("\"\n");
|
||
m_sEscape += m_sDelimiter;
|
||
m_nRowCurrent = 1;
|
||
m_nColCurrent = 1;
|
||
m_bIsWriteCell = false;
|
||
m_bStartRow = true;
|
||
m_bStartCell = true;
|
||
|
||
m_nColDimension = 1;
|
||
}
|
||
CCSVWriter::~CCSVWriter()
|
||
{
|
||
Close();
|
||
}
|
||
void CCSVWriter::Start(const std::wstring &sFileDst)
|
||
{
|
||
m_oFile.CreateFileW(sFileDst);
|
||
|
||
// Нужно записать шапку
|
||
if (46 == m_nCodePage)//todo 46 временно CP_UTF8
|
||
{
|
||
BYTE arUTF8[3] = {0xEF, 0xBB, 0xBF};
|
||
m_oFile.WriteFile(arUTF8, 3);
|
||
}
|
||
else if (48 == m_nCodePage)//todo 48 временно CP_UTF16
|
||
{
|
||
BYTE arUTF16[2] = {0xFF, 0xFE};
|
||
m_oFile.WriteFile(arUTF16, 2);
|
||
}
|
||
else if (49 == m_nCodePage)//todo 49 временно CP_unicodeFFFE
|
||
{
|
||
BYTE arBigEndian[2] = {0xFE, 0xFF};
|
||
m_oFile.WriteFile(arBigEndian, 2);
|
||
}
|
||
}
|
||
void CCSVWriter::WriteSheetStart(OOX::Spreadsheet::CWorksheet* pWorksheet)
|
||
{
|
||
m_nColDimension = 1;
|
||
m_nRowCurrent = 1;
|
||
if (m_bJSON)
|
||
CSVWriter::WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sBkt, m_nCodePage);
|
||
}
|
||
void CCSVWriter::WriteRowStart(OOX::Spreadsheet::CRow *pRow)
|
||
{
|
||
int nRow = pRow->m_oR.IsInit() ? pRow->m_oR->GetValue() : m_bStartRow ? m_nRowCurrent : m_nRowCurrent + 1;
|
||
|
||
if (m_bJSON)
|
||
CSVWriter::WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, (m_bStartRow ? g_sBkt: g_sBktComma), m_nCodePage);
|
||
else
|
||
{
|
||
while (nRow > m_nRowCurrent)
|
||
{
|
||
// Write new line
|
||
++m_nRowCurrent;
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sNewLineN, m_nCodePage);
|
||
}
|
||
}
|
||
m_bStartRow = false;
|
||
m_bStartCell = true;
|
||
m_nColCurrent = 1;
|
||
m_bIsWriteCell = false;
|
||
}
|
||
void CCSVWriter::WriteCell(OOX::Spreadsheet::CCell *pCell)
|
||
{
|
||
int nRowTmp = 0;
|
||
int nCol = 0;
|
||
|
||
if (pCell->isInitRef() && pCell->getRowCol(nRowTmp, nCol))
|
||
{
|
||
nRowTmp++;
|
||
nCol++;
|
||
}
|
||
else
|
||
{
|
||
nCol = m_bStartCell ? m_nColCurrent : m_nColCurrent + 1;
|
||
}
|
||
|
||
while (nCol > m_nColCurrent)
|
||
{
|
||
if (m_bJSON && false == m_bIsWriteCell)
|
||
{
|
||
// Запишем пустые строки (для JSON-а)
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sDoubleQuote, m_nCodePage);
|
||
}
|
||
// Write delimiter
|
||
++m_nColCurrent;
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, m_sDelimiter, m_nCodePage);
|
||
m_bIsWriteCell = false;
|
||
}
|
||
|
||
if (m_nColDimension < m_nColCurrent)
|
||
m_nColDimension = m_nColCurrent;
|
||
|
||
// Get cell value
|
||
std::wstring sCellValue = _T("");
|
||
|
||
if (pCell->m_oValue.IsInit())
|
||
{
|
||
if (pCell->m_oType.IsInit() && SimpleTypes::Spreadsheet::celltypeNumber != pCell->m_oType->GetValue())
|
||
{
|
||
if(SimpleTypes::Spreadsheet::celltypeStr == pCell->m_oType->GetValue())
|
||
{
|
||
sCellValue = pCell->m_oValue->ToString();
|
||
}
|
||
else
|
||
{
|
||
int nValue = _wtoi(pCell->m_oValue->ToString().c_str());
|
||
|
||
if (nValue >= 0 && nValue < (int)m_oXlsx.m_pSharedStrings->m_arrItems.size())
|
||
{
|
||
OOX::Spreadsheet::CSi *pSi = m_oXlsx.m_pSharedStrings->m_arrItems[nValue];
|
||
if(NULL != pSi)
|
||
{
|
||
sCellValue = pSi->ToString();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
std::wstring format_code;
|
||
int format_type = SimpleTypes::Spreadsheet::celltypeNumber;
|
||
|
||
if (pCell->m_oStyle.IsInit() && m_oXlsx.m_pStyles)
|
||
{
|
||
OOX::Spreadsheet::CXfs* xfs = m_oXlsx.m_pStyles->m_oCellXfs->m_arrItems[*pCell->m_oStyle];
|
||
if (xfs)
|
||
{
|
||
if ((xfs->m_oApplyNumberFormat.IsInit()) && (xfs->m_oApplyNumberFormat->ToBool()))
|
||
{
|
||
if ((xfs->m_oNumFmtId.IsInit()) /*&& (xfs->m_oNumFmtId->GetValue() != 0*/)
|
||
{
|
||
int numFmt = xfs->m_oNumFmtId->GetValue();
|
||
//get default code
|
||
|
||
GetDefaultFormatCode(numFmt, format_code, format_type);
|
||
|
||
if (m_oXlsx.m_pStyles->m_oNumFmts.IsInit())
|
||
{
|
||
std::map<unsigned int, size_t>::iterator pFind = m_oXlsx.m_pStyles->m_oNumFmts->m_mapNumFmtIndex.find(numFmt);
|
||
if (pFind != m_oXlsx.m_pStyles->m_oNumFmts->m_mapNumFmtIndex.end())
|
||
{
|
||
OOX::Spreadsheet::CNumFmt *fmt = m_oXlsx.m_pStyles->m_oNumFmts->m_arrItems[pFind->second];
|
||
if (fmt)
|
||
{
|
||
if (fmt->m_oFormatCode.IsInit())
|
||
format_code = *fmt->m_oFormatCode;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
sCellValue = ConvertValueCellToString(pCell->m_oValue->ToString(), format_type, format_code);
|
||
}
|
||
}
|
||
|
||
// Escape cell value
|
||
if(m_bJSON)
|
||
{
|
||
NSStringUtils::CStringBuilder oBuilder;
|
||
oBuilder.WriteString(_T("\""));
|
||
escapeJson(sCellValue, oBuilder);
|
||
oBuilder.WriteString(_T("\""));
|
||
sCellValue = std::wstring(oBuilder.GetBuffer(), oBuilder.GetCurSize());
|
||
}
|
||
else if (std::wstring::npos != sCellValue.find_first_of(m_sEscape))
|
||
{
|
||
NSStringExt::Replace(sCellValue, g_sQuote, g_sDoubleQuote);
|
||
sCellValue = g_sQuote + sCellValue + g_sQuote;
|
||
}
|
||
// Write cell value
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, sCellValue, m_nCodePage);
|
||
m_bIsWriteCell = true;
|
||
m_bStartCell = false;
|
||
}
|
||
void CCSVWriter::WriteRowEnd(OOX::Spreadsheet::CRow* pWorksheet)
|
||
{
|
||
if (m_bJSON)
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sEndJson, m_nCodePage);
|
||
else
|
||
{
|
||
while (m_nColDimension > m_nColCurrent) // todooo - прописывать в бинарнике dimension - и данные брать оттуда
|
||
{
|
||
// Write delimiter
|
||
++m_nColCurrent;
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, m_sDelimiter, m_nCodePage);
|
||
m_bIsWriteCell = false;
|
||
}
|
||
}
|
||
}
|
||
void CCSVWriter::WriteSheetEnd(OOX::Spreadsheet::CWorksheet* pWorksheet)
|
||
{
|
||
if (m_bJSON)
|
||
{
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sEndJson, m_nCodePage);
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sEndJson, m_nCodePage, true);
|
||
}
|
||
}
|
||
void CCSVWriter::End()
|
||
{
|
||
// Теперь мы пишем как MS Excel (новую строку записываем в файл)
|
||
if (!m_bJSON)
|
||
{
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sNewLineN, m_nCodePage);
|
||
WriteFile(&m_oFile, &m_pWriteBuffer, m_nCurrentIndex, g_sNewLineN, m_nCodePage, true);
|
||
}
|
||
Close();
|
||
}
|
||
void CCSVWriter::Close()
|
||
{
|
||
RELEASEARRAYOBJECTS(m_pWriteBuffer);
|
||
m_oFile.CloseFile();
|
||
}
|
||
void CCSVWriter::GetDefaultFormatCode(int numFmt, std::wstring & format_code, int & format_type)
|
||
{
|
||
switch (numFmt)
|
||
{
|
||
case 1: format_code = L"0"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 2: format_code = L"0.00"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 3: format_code = L"#,##0"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 4: format_code = L"#,##0.00"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
|
||
case 9: format_code = L"0%"; format_type = SimpleTypes::Spreadsheet::celltypePercentage; break;
|
||
case 10: format_code = L"0.00%"; format_type = SimpleTypes::Spreadsheet::celltypePercentage; break;
|
||
|
||
case 11: format_code = L"0.00E+00"; format_type = SimpleTypes::Spreadsheet::celltypeScientific; break;
|
||
case 12: format_code = L"# ?/?"; format_type = SimpleTypes::Spreadsheet::celltypeFraction; break;
|
||
case 13: format_code = L"# ??/??"; format_type = SimpleTypes::Spreadsheet::celltypeFraction; break;
|
||
|
||
case 14: format_code = L"mm-dd-yy"; format_type = SimpleTypes::Spreadsheet::celltypeDate; break;
|
||
case 15: format_code = L"d-mmm-yy"; format_type = SimpleTypes::Spreadsheet::celltypeDate; break;
|
||
case 16: format_code = L"d-mmm"; format_type = SimpleTypes::Spreadsheet::celltypeDate; break;
|
||
case 17: format_code = L"mmm-yy"; format_type = SimpleTypes::Spreadsheet::celltypeDate; break;
|
||
|
||
case 18: format_code = L"h:mm AM/PM"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 19: format_code = L"h:mm:ss AM/PM"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 20: format_code = L"h:mm"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 21: format_code = L"h:mm:ss"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 22: format_code = L"m/d/yy h:mm"; format_type = SimpleTypes::Spreadsheet::celltypeDateTime; break;
|
||
|
||
case 37: format_code = L"#,##0 ;(#,##0)"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 38: format_code = L"#,##0 ;[Red](#,##0)"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 39: format_code = L"#,##0.00;(#,##0.00)"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
case 40: format_code = L"#,##0.00;[Red](#,##0.00)"; format_type = SimpleTypes::Spreadsheet::celltypeNumber; break;
|
||
|
||
case 41: format_code = L""; format_type = SimpleTypes::Spreadsheet::celltypeCurrency; break;
|
||
case 42: format_code = L""; format_type = SimpleTypes::Spreadsheet::celltypeCurrency; break;
|
||
|
||
case 45: format_code = L"mm:ss"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 46: format_code = L"[h]:mm:ss"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
case 47: format_code = L"mmss.0"; format_type = SimpleTypes::Spreadsheet::celltypeTime; break;
|
||
|
||
case 49: format_code = L"@"; format_type = SimpleTypes::Spreadsheet::celltypeStr; break;
|
||
|
||
default:
|
||
/////////////////////////////////// с неопределенным format_code .. он задается в файле
|
||
if (numFmt >= 5 && numFmt <= 8) format_type = SimpleTypes::Spreadsheet::celltypeCurrency;
|
||
if (numFmt >= 43 && numFmt <= 44) format_type = SimpleTypes::Spreadsheet::celltypeCurrency;
|
||
|
||
if (numFmt >= 27 && numFmt <= 31) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
if (numFmt >= 50 && numFmt <= 54) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
if (numFmt >= 57 && numFmt <= 58) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
if (numFmt == 36) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
|
||
if (numFmt >= 32 && numFmt <= 35) format_type = SimpleTypes::Spreadsheet::celltypeTime;
|
||
if (numFmt >= 55 && numFmt <= 56) format_type = SimpleTypes::Spreadsheet::celltypeTime;
|
||
|
||
if (numFmt >= 60 && numFmt <= 62) format_type = SimpleTypes::Spreadsheet::celltypeNumber;
|
||
if (numFmt >= 69 && numFmt <= 70) format_type = SimpleTypes::Spreadsheet::celltypeNumber;
|
||
|
||
if (numFmt >= 67 && numFmt <= 68) format_type = SimpleTypes::Spreadsheet::celltypePercentage;
|
||
|
||
if (numFmt >= 71 && numFmt <= 74) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
if (numFmt >= 75 && numFmt <= 80) format_type = SimpleTypes::Spreadsheet::celltypeTime;
|
||
if (numFmt == 81) format_type = SimpleTypes::Spreadsheet::celltypeDate;
|
||
}
|
||
}
|
||
std::wstring CCSVWriter::ConvertValueCellToString(const std::wstring &value, int format_type, const std::wstring & format_code)
|
||
{
|
||
switch (format_type)
|
||
{
|
||
case SimpleTypes::Spreadsheet::celltypeNumber:
|
||
case SimpleTypes::Spreadsheet::celltypeStr: return value;
|
||
case SimpleTypes::Spreadsheet::celltypePercentage: return value + L"%";
|
||
|
||
case SimpleTypes::Spreadsheet::celltypeDate: return convert_date_time(value, format_code, true, false);
|
||
case SimpleTypes::Spreadsheet::celltypeTime: return convert_date_time(value, format_code, false, true);
|
||
case SimpleTypes::Spreadsheet::celltypeDateTime: return convert_date_time(value, format_code);
|
||
case SimpleTypes::Spreadsheet::celltypeFraction: return convert_fraction(value);
|
||
case SimpleTypes::Spreadsheet::celltypeScientific: return convert_scientific(value);
|
||
default:
|
||
return value;
|
||
}
|
||
}
|
||
}
|