]> git.sesse.net Git - casparcg/blob - server/frame/SystemFrameManager.h
4bd4f78e687529311044152bda65760ff8273022
[casparcg] / server / frame / SystemFrameManager.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #ifndef _CASPAR_SYSTEMFRAMEMANAGER_H__\r
22 #define _CASPAR_SYSTEMFRAMEMANAGER_H__\r
23 \r
24 #pragma once\r
25 \r
26 #include "..\utils\Allocator.h"\r
27 #include "..\utils\Noncopyable.hpp"\r
28 \r
29 #include "FrameManager.h"\r
30 \r
31 #include <unordered_map>\r
32 \r
33 namespace caspar {\r
34 \r
35 class Frame;\r
36 typedef std::tr1::shared_ptr<Frame> FramePtr;\r
37 \r
38 /*\r
39         SystemFrameManager\r
40 \r
41         Changes:\r
42         2009-06-14 (R.N) : Refactored, note: Is thread-safe since "FixedAllocator" is thread-safe\r
43 */\r
44 \r
45 class SystemFrameManager : public FrameManager, private utils::Noncopyable, private utils::LockableObject\r
46 {\r
47 public:\r
48         explicit SystemFrameManager(const FrameFormatDescription&);\r
49         virtual ~SystemFrameManager();\r
50 \r
51         virtual FramePtr CreateFrame();\r
52         virtual const FrameFormatDescription& GetFrameFormatDescription() const;\r
53 \r
54 private:\r
55         class FrameDeallocator;\r
56         const FrameFormatDescription fmtDesc_;\r
57         utils::FixedAllocatorPtr pAllocator_;\r
58 \r
59         class LockableAllocatorAssoc : public std::tr1::unordered_map<size_t, utils::FixedAllocatorPtr>, public utils::LockableObject{};\r
60 \r
61         static LockableAllocatorAssoc allocators;\r
62 };\r
63 typedef std::tr1::shared_ptr<SystemFrameManager> SystemFrameManagerPtr;\r
64 \r
65 }       //namespace caspar\r
66 #endif  //_CASPAR_SYSTEMFRAMEMANAGER_H__