LibreOffice Module sw (master) 1
dbgoutsw.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef INCLUDED_SW_INC_DBGOUTSW_HXX
20#define INCLUDED_SW_INC_DBGOUTSW_HXX
21
22#ifdef DBG_UTIL
23
24#include <rtl/ustring.hxx>
25#include <rtl/ustrbuf.hxx>
26#include "tox.hxx"
27#include <cstdio>
28#include <string_view>
29#include <unordered_map>
30
31class SwContentNode;
32class SwNode;
33class SwTextAttr;
34class SwTextNode;
35class SwpHints;
36class SfxPoolItem;
37class SfxItemSet;
38struct SwPosition;
39class SwPaM;
40class SwNodeNum;
41class SwUndo;
42class SwRect;
43class SwFrameFormat;
44class SwNumRuleTable;
45class SwNumRule;
46class SwOutlineNodes;
48class SwNodeRange;
49
50extern bool bDbgOutStdErr;
51extern bool bDbgOutPrintAttrSet;
52
53const char* dbg_out(const void* pVoid);
54const char* dbg_out(std::u16string_view aStr);
55const char* dbg_out(const SwRect& rRect);
56const char* dbg_out(const SwFrameFormat& rFrameFormat);
57SW_DLLPUBLIC const char* dbg_out(const SwNode& rNode);
58SW_DLLPUBLIC const char* dbg_out(const SwNode* pNode);
59const char* dbg_out(const SwContentNode* pNode);
60const char* dbg_out(const SwTextNode* pNode);
61const char* dbg_out(const SwTextAttr& rAttr);
62const char* dbg_out(const SwpHints& rHints);
63const char* dbg_out(const SfxPoolItem& rItem);
64const char* dbg_out(const SfxPoolItem* pItem);
65const char* dbg_out(const SfxItemSet& rSet);
66const char* dbg_out(const SwPosition& rPos);
67const char* dbg_out(const SwPaM& rPam);
68const char* dbg_out(const SwNodeNum& rNum);
69const char* dbg_out(const SwUndo& rUndo);
70const char* dbg_out(SwOutlineNodes const& rNodes);
71const char* dbg_out(const SwNumRule& rRule);
72const char* dbg_out(const SwTextFormatColl& rFormat);
73const char* dbg_out(const SwNumRuleTable& rTable);
74const char* dbg_out(const SwNodeRange& rRange);
75const char* dbg_out(const sw::FrameFormats<sw::SpzFrameFormat*>& rFrameFormats);
76
77template <typename tKey, typename tMember, typename fHashFunction>
78OUString lcl_dbg_out(const std::unordered_map<tKey, tMember, fHashFunction>& rMap)
79{
80 OUStringBuffer aResult("[");
81
82 typename std::unordered_map<tKey, tMember, fHashFunction>::const_iterator aIt;
83
84 for (aIt = rMap.begin(); aIt != rMap.end(); ++aIt)
85 {
86 if (aIt != rMap.begin())
87 aResult.append(", ");
88
89 aResult += aIt->first;
90
91 char sBuffer[256];
92 sprintf(sBuffer, "(%p)", aIt->second);
93 aResult.appendAscii(sBuffer);
94 }
95
96 aResult.append("]");
97
98 return aResult.makeStringAndClear();
99}
100
101template <typename tKey, typename tMember, typename fHashFunction>
102const char* dbg_out(const std::unordered_map<tKey, tMember, fHashFunction>& rMap)
103{
104 return dbg_out(lcl_dbg_out(rMap));
105}
106const char* dbg_out(const SwFormToken& rToken);
107const char* dbg_out(const SwFormTokens& rTokens);
108#endif // DBG_UTIL
109#endif // INCLUDED_SW_INC_DBGOUTSW_HXX
110
111/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Style of a layout element.
Definition: frmfmt.hxx:72
Base class of the Writer document model elements.
Definition: node.hxx:98
PaM is Point and Mark: a selection of the document model.
Definition: pam.hxx:188
Of course Writer needs its own rectangles.
Definition: swrect.hxx:35
A wrapper around SfxPoolItem to store the start position of (usually) a text portion,...
Definition: txatbase.hxx:44
Represents the style of a paragraph.
Definition: fmtcol.hxx:61
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112
An SwTextAttr container, stores all directly formatted text portions for a text node.
Definition: ndhints.hxx:68
const char * dbg_out(const void *pVoid)
Definition: dbgoutsw.cxx:71
bool bDbgOutPrintAttrSet
Definition: dbgoutsw.cxx:48
OUString lcl_dbg_out(const std::unordered_map< tKey, tMember, fHashFunction > &rMap)
Definition: dbgoutsw.hxx:78
bool bDbgOutStdErr
Definition: dbgoutsw.cxx:47
int sprintf(char(&s)[N], char const *format, T &&... arguments)
Marks a position in the document model.
Definition: pam.hxx:38
#define SW_DLLPUBLIC
Definition: swdllapi.h:28
std::vector< SwFormToken > SwFormTokens
Vector of tokens.
Definition: tox.hxx:286