uvgVPCCenc 1.1.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
commonMemory.hpp
Go to the documentation of this file.
1/*****************************************************************************
2 * This file is part of uvgVPCCenc V-PCC encoder.
3 *
4 * Copyright (c) 2024, Tampere University, ITU/ISO/IEC, project contributors
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without modification,
8 * are permitted provided that the following conditions are met:
9 *
10 * * Redistributions of source code must retain the above copyright notice, this
11 * list of conditions and the following disclaimer.
12 *
13 * * Redistributions in binary form must reproduce the above copyright notice, this
14 * list of conditions and the following disclaimer in the documentation and/or
15 * other materials provided with the distribution.
16 *
17 * * Neither the name of the Tampere University or ITU/ISO/IEC nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
28 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
31 ****************************************************************************/
32
34
35#pragma once
36
37#include <cassert>
38#include "../patchGeneration/robin_hood.h"
39#include "uvgvpcc/uvgvpcc.hpp"
40#include "constants.hpp"
41
42namespace uvgvpcc_enc {
43
44struct Patch;
45
47
48 public:
49 static CommonMemory& get(); // lf: leaky singleton
50
52
59
60
61 std::array<std::vector<Patch>, MAX_GOF_SIZE>* getOrCreateFramePatches (size_t gofId) { return getOrCreate(mapFramePatches, gofId); }
62 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameOccupancyMaps (size_t gofId) { return getOrCreate(mapFrameOccupancyMaps, gofId); }
63 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameOccupancyMapsDS(size_t gofId) { return getOrCreate(mapFrameOccupancyMapsDS, gofId); }
64 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameGeometryMapsL1 (size_t gofId) { return getOrCreate(mapFrameGeometryMapsL1, gofId); }
65 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameGeometryMapsL2 (size_t gofId) { return getOrCreate(mapFrameGeometryMapsL2, gofId); }
66 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameAttributeMapsL1(size_t gofId) { return getOrCreate(mapFrameAttributeMapsL1, gofId); }
67 std::array<std::vector<uint8_t>, MAX_GOF_SIZE>* getOrCreateFrameAttributeMapsL2(size_t gofId) { return getOrCreate(mapFrameAttributeMapsL2, gofId); }
68
69 void clearGofMaps(const size_t& gofId);
70
71 private:
72 std::mutex mapMutex;
73
74 template<typename Map>
75 typename Map::mapped_type::element_type* getOrCreate(Map& map, size_t gofId) {
76 std::lock_guard<std::mutex> lock(mapMutex);
77 auto& ptr = map[gofId];
78 if (!ptr) {
79 ptr = std::make_unique<typename Map::mapped_type::element_type>();
80 }
81 return ptr.get();
82 }
83
84};
85
86
87
88
89} // namespace uvgvpcc_enc
Definition robin_hood.h:921
Definition commonMemory.hpp:46
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameGeometryMapsL2
Definition commonMemory.hpp:56
std::array< std::vector< Patch >, MAX_GOF_SIZE > * getOrCreateFramePatches(size_t gofId)
Definition commonMemory.hpp:61
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameGeometryMapsL2(size_t gofId)
Definition commonMemory.hpp:65
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameGeometryMapsL1
Definition commonMemory.hpp:55
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameOccupancyMapsDS
Definition commonMemory.hpp:54
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameAttributeMapsL2(size_t gofId)
Definition commonMemory.hpp:67
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameOccupancyMapsDS(size_t gofId)
Definition commonMemory.hpp:63
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameGeometryMapsL1(size_t gofId)
Definition commonMemory.hpp:64
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameAttributeMapsL2
Definition commonMemory.hpp:58
void clearGofMaps(const size_t &gofId)
Definition commonMemory.cpp:46
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameOccupancyMaps(size_t gofId)
Definition commonMemory.hpp:62
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameAttributeMapsL1
Definition commonMemory.hpp:57
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< uint8_t >, MAX_GOF_SIZE > > > mapFrameOccupancyMaps
Definition commonMemory.hpp:53
robin_hood::unordered_map< size_t, std::unique_ptr< std::array< std::vector< Patch >, MAX_GOF_SIZE > > > mapFramePatches
Definition commonMemory.hpp:51
static CommonMemory & get()
Definition commonMemory.cpp:41
std::array< std::vector< uint8_t >, MAX_GOF_SIZE > * getOrCreateFrameAttributeMapsL1(size_t gofId)
Definition commonMemory.hpp:66
Definition uvgvpcc.hpp:56
constexpr size_t MAX_GOF_SIZE
Definition constants.hpp:62
size_t gofId
Definition uvgvpcc.cpp:92