Merge "Fix Jira issue (db lock issue)" into tizen_2.1
[platform/framework/native/appfw.git] / src / io / inc / FIo_IFileCore.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FIo_IFileCore.h
20  * @brief       This is the header file for the _IFileCore class.
21  *
22  * This header file contains the declarations of the %_IFileCore class.
23  */
24
25 #ifndef _FIO_INTERNAL_IFILECORE_H_
26 #define _FIO_INTERNAL_IFILECORE_H_
27
28 #include <FBaseString.h>
29 #include <FBaseByteBuffer.h>
30 #include <FBaseResult.h>
31
32 namespace Tizen { namespace Io
33 {
34
35 class _IFileCore
36 {
37
38 public:
39         _IFileCore(void)
40         : _read(false)
41         , _write(false)
42         , _truncate(false)
43         , _append(false)
44         {}
45
46         virtual ~_IFileCore(void) {}
47
48         virtual result Read(Tizen::Base::ByteBuffer& buffer) = 0;
49
50         virtual int Read(void* buffer, int length) = 0;
51
52         virtual result Read(Tizen::Base::String& buffer) = 0;
53
54         virtual result Write(const Tizen::Base::ByteBuffer& buffer) = 0;
55
56         virtual result Write(const void* buffer, int length) = 0;
57
58         virtual result Write(const Tizen::Base::String& buffer) = 0;
59
60         virtual result Flush(void) = 0;
61
62         virtual int Tell(void) const = 0;
63
64         virtual result Seek(FileSeekPosition position, long offset) = 0;
65
66         virtual result Truncate(int length) = 0;
67
68         virtual Tizen::Base::String GetName(void) = 0;
69
70         virtual FILE* GetFilePointer(void) = 0;
71
72 protected:
73         bool _read;
74         bool _write;
75         bool _truncate;
76         bool _append;
77
78 }; // _IFileCore
79
80 }} // Tizen::Io
81
82 #endif // _FIO_INTERNAL_IFILECORE_H_
83