7183a3d3de
Change-Id: Ice934380029bf27054e830fffc07a5d037d1430f Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* 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/.
|
|
*/
|
|
|
|
#include <cassert>
|
|
#include <map>
|
|
#include <mutex>
|
|
|
|
#include "Log.hpp"
|
|
#include "MobileApp.hpp"
|
|
|
|
#if MOBILEAPP
|
|
|
|
static std::map<unsigned, DocumentData*> idToDocDataMap;
|
|
static std::mutex idToDocDataMapMutex;
|
|
|
|
DocumentData &DocumentData::allocate(unsigned docId)
|
|
{
|
|
const std::lock_guard<std::mutex> lock(idToDocDataMapMutex);
|
|
|
|
assert(idToDocDataMap.find(docId) == idToDocDataMap.end());
|
|
auto p = new DocumentData();
|
|
idToDocDataMap[docId] = p;
|
|
return *p;
|
|
}
|
|
|
|
DocumentData & DocumentData::get(unsigned docId)
|
|
{
|
|
const std::lock_guard<std::mutex> lock(idToDocDataMapMutex);
|
|
|
|
assert(idToDocDataMap.find(docId) != idToDocDataMap.end());
|
|
return *idToDocDataMap[docId];
|
|
}
|
|
|
|
void DocumentData::deallocate(unsigned docId)
|
|
{
|
|
assert(idToDocDataMap.find(docId) != idToDocDataMap.end());
|
|
// Does get() really need to called during the destructor?
|
|
get(docId);
|
|
auto p = idToDocDataMap.find(docId);
|
|
delete p->second;
|
|
idToDocDataMap.erase(docId);
|
|
}
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|