Making DALi public API typesafe using guaranteed types; uint8_t, uint32_t
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / property-buffer.cpp
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/rendering/property-buffer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/object/property-map.h>             // Dali::Property::Map
23 #include <dali/internal/event/common/property-buffer-impl.h> // Dali::Internal::PropertyBuffer
24
25 namespace Dali
26 {
27
28 PropertyBuffer PropertyBuffer::New( Dali::Property::Map& bufferFormat )
29 {
30   Internal::PropertyBufferPtr propertyBuffer = Internal::PropertyBuffer::New( bufferFormat );
31
32   return PropertyBuffer( propertyBuffer.Get() );
33 }
34
35 PropertyBuffer::PropertyBuffer()
36 {
37 }
38
39 PropertyBuffer::~PropertyBuffer()
40 {
41 }
42
43 PropertyBuffer::PropertyBuffer( const PropertyBuffer& handle )
44 : BaseHandle( handle )
45 {
46 }
47
48 PropertyBuffer PropertyBuffer::DownCast( BaseHandle handle )
49 {
50   return PropertyBuffer( dynamic_cast<Dali::Internal::PropertyBuffer*>(handle.GetObjectPtr()));
51 }
52
53 PropertyBuffer& PropertyBuffer::operator=( const PropertyBuffer& handle )
54 {
55   BaseHandle::operator=( handle );
56   return *this;
57 }
58
59 void PropertyBuffer::SetData( const void* data, std::size_t size )
60 {
61   GetImplementation(*this).SetData( data, static_cast<uint32_t>( size ) ); // only support 4,294,967,295 bytes
62 }
63
64 std::size_t PropertyBuffer::GetSize() const
65 {
66   return  GetImplementation(*this).GetSize();
67 }
68
69
70 PropertyBuffer::PropertyBuffer( Internal::PropertyBuffer* pointer )
71 : BaseHandle( pointer )
72 {
73 }
74
75 } // namespace Dali