Formatting API
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / file-stream.cpp
1 /*
2  * Copyright (c) 2020 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 FileStream::FileStream(const std::string& filename, uint8_t mode)
28 {
29   mImpl.reset(new Impl(filename, mode));
30 }
31
32 FileStream::FileStream(uint8_t* buffer, size_t dataSize, uint8_t mode)
33 {
34   mImpl.reset(new Impl(buffer, dataSize, mode));
35 }
36
37 FileStream::FileStream(Dali::Vector<uint8_t>& buffer, size_t dataSize, uint8_t mode)
38 {
39   mImpl.reset(new Impl(buffer, dataSize, mode));
40 }
41
42 FileStream::FileStream(FileStream&&) = default;
43
44 FileStream& FileStream::operator=(FileStream&&) = default;
45
46 FileStream::~FileStream() = default;
47
48 std::iostream& FileStream::GetStream()
49 {
50   return mImpl->GetStream();
51 }
52
53 FILE* FileStream::GetFile()
54 {
55   return mImpl->GetFile();
56 }
57
58 } // namespace Dali