This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwasm_extensions.cxx
378 lines (327 loc) · 13.2 KB
/
wasm_extensions.cxx
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#include "sfx2/sfxsids.hrc"
#include <com/sun/star/document/MacroExecMode.hpp>
#include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/frame/XDesktop2.hpp>
#include <com/sun/star/ucb/OpenMode.hpp>
#include <com/sun/star/uno/Any.h>
#include <com/sun/star/uno/Reference.h>
#include <comphelper/base64.hxx>
#include <comphelper/diagnose_ex.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/seqstream.hxx>
#include <comphelper/vecstream.hxx>
#include <comphelper/storagehelper.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <lib/init.hxx>
#include <oox/helper/expandedstorage.hxx>
#include <sal/log.hxx>
#include <sot/stg.hxx>
#include <unotools/mediadescriptor.hxx>
#include <com/sun/star/uno/Reference.hxx>
#include <editeng/sizeitem.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/viewsh.hxx>
#include <svl/itemset.hxx>
#include <svl/poolitem.hxx>
#include <svx/rulritem.hxx>
#include <svx/xcolit.hxx>
#include <svx/xflclit.hxx>
#include <cstdlib>
#include <lib/wasm_extensions.hxx>
#include <emscripten/bind.h>
#include <emscripten/threading.h>
#include <rtl/ustring.hxx>
#include <rtl/string.hxx>
#include <svx/svxids.hrc>
namespace desktop
{
using cppu::getCaughtException;
static constexpr int MAX_THREADS_TO_NOTIFY = 2;
// Convert tile index to grid coordinates
std::array<int, 2> tileIndexToGridCoord(int tileIndex, int widthTileStride)
{
const int y = tileIndex / widthTileStride;
const int x = tileIndex % widthTileStride;
return { x, y };
}
// Convert tile index to twips rectangle
std::array<int, 4> tileIndexToTwipsRect(int tileIndex, int widthTileStride, int tileDimTwips)
{
const auto [x, y] = tileIndexToGridCoord(tileIndex, widthTileStride);
return { x * tileDimTwips, y * tileDimTwips, tileDimTwips, tileDimTwips };
}
WasmDocumentExtension::WasmDocumentExtension(css::uno::Reference<css::lang::XComponent> xComponent)
: mxComponent(std::move(xComponent))
{
}
void WasmDocumentExtension::paintTiles(uint32_t startIndex, uint32_t endIndex)
{
if (!tileRendererData_.has_value()) return;
auto& d = tileRendererData_.value();
// this shouldn't happen except for after the tile renderer is stopped
if (!d.paintedTiles)
return;
d.doc->pClass->setView(d.doc, d.viewId);
// without clearing the painted tiles, any later paints will be composited on top of the existing data
__builtin_memset(d.paintedTiles.get(), 0, d.tileAllocSize * (endIndex - startIndex + 1));
for (uint32_t i = startIndex; i <= endIndex; ++i)
{
uint32_t byteOffset = (i - startIndex) * d.tileAllocSize;
auto rect = tileIndexToTwipsRect(i, d.widthTileStride, d.tileDimTwips);
d.doc->pClass->paintTile(d.doc, &d.paintedTiles[byteOffset], d.tileSize,
d.tileSize, rect[0], rect[1], rect[2], rect[3]);
}
}
TileRendererData& WasmDocumentExtension::startTileRenderer(int32_t viewId, int32_t tileSize)
{
long w, h;
pClass->getDocumentSize(this, &w, &h);
TileRendererData& data = tileRendererData_.emplace(this, viewId, tileSize, w, h);
g_activeTileRenderData = &data;
return data;
}
void WasmDocumentExtension::stopTileRenderer(int32_t /* viewId */)
{
if (tileRendererData_.has_value())
{
if (g_activeTileRenderData == &tileRendererData_.value())
{
g_activeTileRenderData = nullptr;
}
// This probably isn't necessary anymore, but just in case
tileRendererData_->paintedTiles.reset();
tileRendererData_.reset();
}
else
{
SAL_WARN("tile", "missing tile render data");
}
}
void TileRendererData::pushInvalidation(uint32_t invalidation[4])
{
int32_t head = __c11_atomic_fetch_add(&invalidationStackHead, 1, __ATOMIC_RELAXED) + 1;
if (head > MAX_INVALIDATION_STACK)
{
// TODO: should probably warn here, but unlikely
return;
}
for (int i = 0; i < 4; ++i)
{
__c11_atomic_store(&invalidationStack[head][i], invalidation[i], __ATOMIC_RELAXED);
}
__c11_atomic_store(&hasInvalidations, 1, __ATOMIC_RELAXED);
__builtin_wasm_memory_atomic_notify((int32_t*)&hasInvalidations, MAX_THREADS_TO_NOTIFY);
}
void TileRendererData::reset()
{
__c11_atomic_store(&invalidationStackHead, -1, __ATOMIC_RELAXED);
__c11_atomic_store(&pendingFullPaint, 1, __ATOMIC_SEQ_CST);
__c11_atomic_store(&hasInvalidations, 1, __ATOMIC_SEQ_CST);
__builtin_wasm_memory_atomic_notify((int32_t*)&hasInvalidations, MAX_THREADS_TO_NOTIFY);
}
static std::string OUStringToString(OUString str)
{
return OUStringToOString(str, RTL_TEXTENCODING_UTF8).getStr();
}
std::string WasmDocumentExtension::getPageColor()
{
SfxViewFrame* pViewFrame = SfxViewFrame::Current();
SfxDispatcher* pDispatch(pViewFrame->GetDispatcher());
if (!pViewFrame)
{
return nullptr;
}
static constexpr std::string_view defaultColorHex = "#ffffff";
SfxPoolItemHolder pState;
const SfxItemState eState(pDispatch->QueryState(SID_ATTR_PAGE_COLOR, pState));
if (eState < SfxItemState::DEFAULT)
{
return std::string(defaultColorHex);
}
if (pState.getItem())
{
XColorItem* pColor = static_cast<XColorItem*>(pState.getItem()->Clone());
OUString aColorHex = pColor->GetColorValue().AsRGBHEXString();
return OUStringToString(aColorHex);
}
return std::string(defaultColorHex);
}
std::string WasmDocumentExtension::getPageOrientation()
{
SfxViewFrame* pViewFrm = SfxViewFrame::Current();
if (!pViewFrm)
{
return nullptr;
}
SfxPoolItemHolder pState;
pViewFrm->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_SIZE, pState);
SvxSizeItem* pSize = static_cast<SvxSizeItem*>(pState.getItem()->Clone());
bool bIsLandscape = (pSize->GetSize().Width() >= pSize->GetSize().Height());
return bIsLandscape ? "landscape" : "portrait";
}
_LibreOfficeKitDocument*
WasmOfficeExtension::documentExpandedLoad(desktop::ExpandedDocument expandedDoc,
std::string /* name */ /* why is this unused? */,
const int documentId, const bool readOnly)
{
LibreOfficeKitDocument* pDoc = NULL;
desktop::WasmDocumentExtension* ext = static_cast<desktop::WasmDocumentExtension*>(pDoc);
LibreOfficeKit* pThis = static_cast<LibreOfficeKit*>(this);
return ext->loadFromExpanded(pThis, expandedDoc, documentId, readOnly);
}
void ExpandedDocument::addPart(std::string path, std::string content)
{
parts.emplace_back(std::move(path), std::move(content));
}
_LibreOfficeKitDocument*
WasmDocumentExtension::loadFromExpanded(LibreOfficeKit* /* pThis */,
desktop::ExpandedDocument expandedDoc, const int documentId,
const bool readOnly)
{
using namespace com::sun::star;
uno::Reference<uno::XComponentContext> xContext = comphelper::getProcessComponentContext();
if (!xContext)
{
return nullptr;
}
uno::Reference<frame::XDesktop2> xComponentLoader = frame::Desktop::create(xContext);
if (!xComponentLoader.is())
{
SAL_WARN("lok", "ComponentLoader is not available");
return nullptr;
}
// Parts of the import pipeline expect a stream
// this stream isn't actually used, but is required to be passed along
uno::Reference<io::XInputStream> xEmptyInputStream(
new comphelper::VectorInputStream(std::make_shared<std::vector<sal_Int8>>()));
uno::Reference<oox::ExpandedStorage> storage(
new oox::ExpandedStorage(xContext, xEmptyInputStream));
auto it = expandedDoc.parts.begin();
while (it != expandedDoc.parts.end())
{
if (it->content.length() == 0 || it->path.length() == 0)
continue;
storage->addPart(std::move(it->path), std::move(it->content));
it = expandedDoc.parts.erase(it);
}
storage->readRelationshipInfo();
// Is this necesarry ?
storage->setPropertyValue("OpenMode", uno::Any(ucb::OpenMode::ALL));
storage->setPropertyValue("Version", uno::Any(OUString("1")));
storage->setPropertyValue("MS Word 2007 XML", uno::Any(OUString("1")));
uno::Reference<embed::XStorage> xStorage(storage, uno::UNO_QUERY);
storage->acquire();
auto storageBase = std::shared_ptr<oox::StorageBase>(storage.get());
// ExpandedStorage can represent both a BaseStorage and an XStorage
//
// Unlike conventional XStorage we don't want to be constantly re-initializing
// a storage object since the file content is stored in memory.
// Thus we set a storageBase and xStorage globals to be used
// throughout the load process.
comphelper::OStorageHelper::SetIsExpandedStorage(true);
comphelper::OStorageHelper::SetExpandedStorage(xStorage);
/*
storage instance MUST be set before storage base
instance and base are the same objects, just casted differently
instance is stored in an uno::Reference while base is stored in a shared_ptr
if the base is released first (as the shared_ptr is set), the uno reference
has a bad time when it tries to access a null object at with it's pointer
*/
comphelper::OStorageHelper::SetExpandedStorageInstance(storage);
comphelper::OStorageHelper::SetExpandedStorageBase(storageBase);
utl::MediaDescriptor aMediaDescriptor;
// Expanded Storage only supports .DOCX
aMediaDescriptor[utl::MediaDescriptor::PROP_FILTERNAME]
<<= OUString("MS Word 2007 XML"); // just hardcode this for now
aMediaDescriptor[utl::MediaDescriptor::PROP_MACROEXECUTIONMODE]
<<= document::MacroExecMode::NEVER_EXECUTE;
// We don't have a general document input stream,
// so we pass in an empty one. Down the line its crucial we
// check if we are currently loading from expanded storage
// and use the storage instead of the stream
aMediaDescriptor[utl::MediaDescriptor::PROP_INPUTSTREAM] <<= xEmptyInputStream;
// Silences various exceptions
aMediaDescriptor[utl::MediaDescriptor::PROP_SILENT] <<= true;
if (readOnly)
{
aMediaDescriptor[utl::MediaDescriptor::PROP_READONLY] <<= true;
// disable comments which are still enabled with read only:
aMediaDescriptor[utl::MediaDescriptor::PROP_VIEWONLY] <<= true;
}
{
SolarMutexGuard aGuard;
try
{
Application::SetDialogCancelMode(DialogCancelMode::LOKSilent);
SfxViewShell::SetCurrentDocId(ViewShellDocId(documentId));
uno::Reference<lang::XComponent> xComponent = xComponentLoader->loadComponentFromURL(
"private:stream", "_blank", documentId,
aMediaDescriptor.getAsConstPropertyValueList());
if (!xComponent.is())
{
SAL_WARN("lok", "Could not load in memory doc");
return nullptr;
}
return new LibLODocument_Impl(xComponent, documentId);
}
catch (const uno::Exception& /*exception*/)
{
uno::Any exAny(getCaughtException());
SAL_WARN("lok", "Failed to load to in-memory stream: " + exceptionToString(exAny));
}
}
SAL_WARN("lok", "Failed to load to in-memory stream");
return nullptr;
}
std::optional<std::pair<std::string, std::shared_ptr<std::vector<sal_Int8>>>>
WasmDocumentExtension::getExpandedPart(const std::string& path) const
{
return comphelper::OStorageHelper::GetExpandedStorageInstance()->getPart(path);
}
void WasmDocumentExtension::removePart(const std::string& path) const
{
return comphelper::OStorageHelper::GetExpandedStorageInstance()->removePart(path);
}
std::vector<std::pair<const std::string, const std::string>>
WasmDocumentExtension::listParts() const
{
return comphelper::OStorageHelper::GetExpandedStorageInstance()->listParts();
}
std::vector<std::pair<std::string, std::string>> WasmDocumentExtension::save()
{
SfxViewFrame* viewFrame = SfxViewFrame::Current();
if (!viewFrame)
{
return {};
}
viewFrame->GetBindings().ExecuteSynchron(SID_SAVEDOC);
// TODO: @synoet it shouldn't be necessary to commit relationships seperately
// from the implCommit call from save. But there is some funky behavior going on
// with relationship ptr's not existing if called from within save.
// Accessing the relationship access for the document.xml.rels file's shared_ptr shows
// up as a nullptr, even though in previous and later method invocations it is a valid pointer
// even within the same expanded storage instance.
// Investigate more post Aug 1st.
comphelper::OStorageHelper::GetExpandedStorageInstance()->commitRelationships();
auto files
= comphelper::OStorageHelper::GetExpandedStorageInstance()->getRecentlyChangedFiles();
return files;
}
std::optional<std::string> WasmDocumentExtension::getCursor(int viewId)
{
if (SfxViewShell* viewShell
= SfxViewShell::GetFirst(false, [viewId](const SfxViewShell* shell)
{ return shell->GetViewShellId().get() == viewId; }))
{
std::optional<OString> payload
= viewShell->getLOKPayload(LOK_CALLBACK_INVALIDATE_VISIBLE_CURSOR, viewId);
if (payload)
{
return std::string(static_cast<std::string_view>(*payload));
}
}
return {};
}
}