1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_XLTRACER_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_XLTRACER_HXX
24 #include "xltools.hxx"
26 // As Trace features become implemented, we can safely delete the enum entry as
27 // we use the member mnID to keep track of the actual trace tag ID value.
30 eUnKnown
, /// unused but allows us to set the correct index
60 eTraceLength
/// this *should* always be the final entry
63 struct XclTracerDetails
65 XclTracerId meProblemId
; /// Excel Import Trace index.
66 sal_uInt32 mnID
; /// actual ID Index trace tag Value
67 const sal_Char
* mpContext
; /// Context for problem e.g. Limits
68 const sal_Char
* mpDetail
; /// Context Detail e.g. SheetX
69 const sal_Char
* mpProblem
; /// Description of problem
72 /** This class wraps an MSFilterTracer to create trace logs for import/export filters. */
76 explicit XclTracer( const OUString
& rDocUrl
);
79 /** Returns true, if tracing is enabled. */
80 inline bool IsEnabled() const { return mbEnabled
; }
82 /** Ensure that particular traces are logged once per document. */
83 void ProcessTraceOnce(XclTracerId eProblem
);
85 void TraceInvalidAddress(const ScAddress
& rPos
, const ScAddress
& rMaxPos
);
86 void TraceInvalidRow( sal_uInt32 nRow
, sal_uInt32 nMaxrow
);
87 void TraceInvalidTab( SCTAB nTab
, SCTAB nMaxTab
);
88 void TracePrintRange();
89 void TraceDates(sal_uInt16 nNumFmt
);
90 void TraceBorderLineStyle(bool bBorderLineStyle
);
91 void TraceFillPattern(bool bFillPattern
);
92 void TraceFormulaMissingArg();
93 void TracePivotDataSource(bool bExternal
);
94 void TracePivotChartExists();
95 void TraceChartUnKnownType();
96 void TraceChartOnlySheet();
97 void TraceChartDataTable();
98 void TraceChartLegendPosition();
99 void TraceUnsupportedObjects();
100 void TraceObjectNotPrintable();
101 void TraceDVType(bool bType
);
105 typedef ::std::vector
< bool > BoolVec
;
106 /** array of flags corresponding to each entry in the XclTracerDetails table. */
107 BoolVec maFirstTimes
;
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */