sync with tizen_2.0
[platform/framework/native/appfw.git] / src / io / inc / FIo_DirEntryImpl.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_DirEntryImpl.h
20  * @brief       This is the header file for the %_DirEntryImpl class.
21  *
22  * This header file contains the declarations of the %_DirEntryImpl class.
23  */
24
25 #ifndef _FIO_INTERNAL_DIRENTRY_IMPL_H_
26 #define _FIO_INTERNAL_DIRENTRY_IMPL_H_
27
28 #include <FBaseObject.h>
29 #include <FOspConfig.h>
30
31 namespace Tizen { namespace Base
32 {
33 class String;
34 class DateTime;
35 }}
36
37 namespace Tizen { namespace Io
38 {
39
40 class DirEntry;
41
42 class _OSP_EXPORT_ _DirEntryImpl
43         : public Tizen::Base::Object
44 {
45
46 public:
47         virtual ~_DirEntryImpl(void);
48
49         static _DirEntryImpl* GetInstance(DirEntry* pDirEntry);
50
51         static const _DirEntryImpl* GetInstance(const DirEntry* pDirEntry);
52
53         _DirEntryImpl(const _DirEntryImpl& dirEntry);
54
55         _DirEntryImpl& operator =(const _DirEntryImpl& dirEntry);
56
57         virtual bool Equals(const Object& object) const;
58
59         virtual int GetHashCode(void) const;
60
61         const Tizen::Base::String GetName(void) const;
62
63         unsigned long GetFileSize(void) const;
64
65         bool IsDirectory(void) const;
66
67         bool IsHidden(void) const;
68
69         bool IsReadOnly(void) const;
70
71         Tizen::Base::DateTime GetDateTime(void) const;
72
73         static DirEntry* CreateDirEntryInstanceN(void);
74
75 private:
76         _DirEntryImpl(void);
77
78         void Set(Tizen::Base::DateTime dateTime, unsigned long fileSize,
79                         Tizen::Base::String name, bool dir, bool readOnly, bool hidden);
80
81         Tizen::Base::DateTime __dateTime;
82         unsigned long __fileSize;
83         Tizen::Base::String __name;
84         bool __directory;
85         bool __hidden;
86         bool __readOnly;
87
88         friend class DirEntry;
89         friend class _DirEnumeratorImpl;
90
91 }; //_DirEntryImpl
92
93 }} // Tizen::Io
94
95 #endif //_FIO_INTERNAL_DIRENTRY_IMPL_H_
96