7f25109f72
Seems to not cause any serious regressions in the iOS app or in "make run", but of course I am not able to run a comprehensive check of all functionality. Change-Id: I44a0e8d60bdbc0a885db88475961575c5e95ce88 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/93037 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* 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 "config.h"
|
|
|
|
#if MOBILEAPP
|
|
|
|
#include <LibreOfficeKit/LibreOfficeKit.hxx>
|
|
|
|
#ifdef IOS
|
|
#import "CODocument.h"
|
|
#endif
|
|
|
|
// On iOS at least we want to be able to have several documents open in the same app process.
|
|
|
|
// It is somewhat complicated to make sure we access the same LibreOfficeKit object for the document
|
|
// in both the iOS-specific Objective-C++ code and in the mostly generic Online C++ code.
|
|
|
|
// We pass around a numeric ever-increasing document identifier that gets biumped for each document
|
|
// the system asks the app to open.
|
|
|
|
// For iOS, it is the static std::atomic<unsigned> appDocIdCounter in CODocument.mm.
|
|
|
|
// In practice it will probably be equivalent to the DocumentBroker::DocBrokerId or the number that
|
|
// the core SfxViewShell::GetDocId() returns, but there might be situations where multi-threading
|
|
// and opening of several documents in sequence very quickly might cause discrepancies, so it is
|
|
// better to usea different counter to be sure. Patches to use just one counter welcome.
|
|
|
|
struct DocumentData
|
|
{
|
|
lok::Document *loKitDocument;
|
|
#ifdef IOS
|
|
CODocument *coDocument;
|
|
#endif
|
|
|
|
DocumentData() :
|
|
loKitDocument(nullptr)
|
|
#ifdef IOS
|
|
, coDocument(nil)
|
|
#endif
|
|
{
|
|
}
|
|
};
|
|
|
|
DocumentData &allocateDocumentDataForMobileAppDocId(unsigned docId);
|
|
DocumentData &getDocumentDataForMobileAppDocId(unsigned docId);
|
|
void deallocateDocumentDataForMobileAppDocId(unsigned docId);
|
|
|
|
#endif
|