forked from CollaboraOnline/online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKitHelper.hpp
150 lines (129 loc) · 5.03 KB
/
KitHelper.hpp
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* 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/.
*/
#pragma once
#include <sstream>
#include <string>
#include <Util.hpp>
#define LOK_USE_UNSTABLE_API
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
namespace LOKitHelper
{
constexpr auto tunnelledDialogImageCacheSize = 100;
inline std::string documentTypeToString(LibreOfficeKitDocumentType type)
{
switch (type)
{
case LOK_DOCTYPE_TEXT:
return "text";
case LOK_DOCTYPE_SPREADSHEET:
return "spreadsheet";
case LOK_DOCTYPE_PRESENTATION:
return "presentation";
case LOK_DOCTYPE_DRAWING:
return "drawing";
default:
return "other-" + std::to_string(type);
}
}
inline std::string getDocumentTypeAsString(LibreOfficeKitDocument *loKitDocument)
{
assert(loKitDocument && "null loKitDocument");
const auto type = static_cast<LibreOfficeKitDocumentType>(loKitDocument->pClass->getDocumentType(loKitDocument));
return documentTypeToString(type);
}
inline std::string documentStatus(LibreOfficeKitDocument *loKitDocument)
{
char *ptrValue;
assert(loKitDocument && "null loKitDocument");
const auto type = static_cast<LibreOfficeKitDocumentType>(loKitDocument->pClass->getDocumentType(loKitDocument));
const int parts = loKitDocument->pClass->getParts(loKitDocument);
std::ostringstream oss;
oss << "type=" << documentTypeToString(type)
<< " parts=" << parts
<< " current=" << loKitDocument->pClass->getPart(loKitDocument);
long width, height;
loKitDocument->pClass->getDocumentSize(loKitDocument, &width, &height);
oss << " width=" << width
<< " height=" << height
<< " viewid=" << loKitDocument->pClass->getView(loKitDocument);
if (type == LOK_DOCTYPE_SPREADSHEET || type == LOK_DOCTYPE_PRESENTATION || type == LOK_DOCTYPE_DRAWING)
{
std::ostringstream hposs;
std::ostringstream sposs;
std::ostringstream rtlposs;
for (int i = 0; i < parts; ++i)
{
ptrValue = loKitDocument->pClass->getPartInfo(loKitDocument, i);
const std::string partinfo(ptrValue);
std::free(ptrValue);
for (const auto& prop : Util::JsonToMap(partinfo))
{
const std::string& name = prop.first;
if (name == "visible")
{
if (prop.second == "0")
hposs << i << ',';
}
else if (name == "selected")
{
if (prop.second == "1")
sposs << i << ',';
}
else if (name == "rtllayout")
{
if (prop.second == "1")
rtlposs << i << ',';
}
}
}
std::string hiddenparts = hposs.str();
if (!hiddenparts.empty())
{
hiddenparts.pop_back(); // Remove last ','
oss << " hiddenparts=" << hiddenparts;
}
std::string selectedparts = sposs.str();
if (!selectedparts.empty())
{
selectedparts.pop_back(); // Remove last ','
oss << " selectedparts=" << selectedparts;
}
std::string rtlparts = rtlposs.str();
if (!rtlparts.empty())
{
rtlparts.pop_back(); // Remove last ','
oss << " rtlparts=" << rtlparts;
}
for (int i = 0; i < parts; ++i)
{
oss << '\n';
ptrValue = loKitDocument->pClass->getPartName(loKitDocument, i);
oss << ptrValue;
std::free(ptrValue);
}
if (type == LOK_DOCTYPE_PRESENTATION || type == LOK_DOCTYPE_DRAWING)
{
for (int i = 0; i < parts; ++i)
{
oss << '\n';
ptrValue = loKitDocument->pClass->getPartHash(loKitDocument, i);
oss << ptrValue;
std::free(ptrValue);
}
}
}
if (type == LOK_DOCTYPE_TEXT)
{
std::string rectangles = loKitDocument->pClass->getPartPageRectangles(loKitDocument);
std::string::iterator end_pos = std::remove(rectangles.begin(), rectangles.end(), ' ');
rectangles.erase(end_pos, rectangles.end());
oss << " pagerectangles=" << rectangles.c_str();
}
return oss.str();
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */