Add file stream API.
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / file-stream.cpp
1 /*
2  * Copyright (c) 2019 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 // CLASS HEADER
18 #include <dali/devel-api/adaptor-framework/file-stream.h>
19
20 // EXTERNAL INCLUDES
21
22 // INTERNAL INCLUDES
23 #include <dali/internal/adaptor-framework/common/file-stream-impl.h>
24
25 namespace Dali
26 {
27
28 FileStream::FileStream(const std::string& filename, uint8_t mode)
29 {
30   mImpl.reset( new Impl( filename, mode ) );
31 }
32
33 FileStream::FileStream(uint8_t* buffer, size_t dataSize, uint8_t mode)
34 {
35   mImpl.reset( new Impl( buffer, dataSize, mode ) );
36 }
37
38 FileStream::FileStream(Dali::Vector<uint8_t>& buffer, size_t dataSize, uint8_t mode)
39 {
40   mImpl.reset( new Impl( buffer, dataSize, mode ) );
41 }
42
43 FileStream::~FileStream() = default;
44
45 FileStream& FileStream::operator=(FileStream&&) = default;
46
47 std::iostream& FileStream::GetStream()
48 {
49   return mImpl->GetStream();
50 }
51
52 FILE* FileStream::GetFile()
53 {
54   return mImpl->GetFile();
55 }
56
57 } // Dali