sync with tizen_2.0
[platform/framework/native/appfw.git] / src / io / inc / FIo_DirEnumeratorImpl.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_DirEnumeratorImpl.h
20  * @brief       This is the header file for the _DirEnumeratorImpl class.
21  *
22  * This header file contains the declarations of the _DirEnumeratorImpl class.
23  */
24
25 #ifndef _FIO_INTERNAL_DIR_ENUMERATOR_IMPL_H_
26 #define _FIO_INTERNAL_DIR_ENUMERATOR_IMPL_H_
27
28 #include <FOspConfig.h>
29 #include <FBaseObject.h>
30 #include <FBaseString.h>
31
32 #include <FIoDbEnumerator.h>
33
34 namespace Tizen { namespace Io
35 {
36
37 class DirEntry;
38 class _DirectoryImpl;
39
40 class _OSP_EXPORT_ _DirEnumeratorImpl
41         : public Tizen::Base::Object
42 {
43
44 public:
45         ~_DirEnumeratorImpl(void);
46
47         DirEntry GetCurrentDirEntry(void) const;
48
49         Tizen::Base::Object* GetCurrent(void) const;
50
51         result MoveNext(void);
52
53         result Reset(void);
54
55         static _DirEnumeratorImpl* GetInstance(DirEnumerator& dirEnumerator);
56
57         static const _DirEnumeratorImpl* GetInstance(const DirEnumerator& dirEnumerator);
58
59         static DirEnumerator* CreateDirEnumeratorInstanceN(const Tizen::Base::String& dirPath);
60
61 private:
62         _DirEnumeratorImpl(void);
63
64         _DirEnumeratorImpl(const _DirEnumeratorImpl& source);
65
66         _DirEnumeratorImpl(const Tizen::Base::String& dirPath);
67
68         _DirEnumeratorImpl& operator =(const _DirEnumeratorImpl& source);
69
70         bool __validAccess;
71         Tizen::Base::String __absoluteDirPath;
72         void* __pFileFindInfo;
73         DirEntry* __pCurDirEntry;
74
75         friend class DirEnumerator;
76         friend class _DirectoryImpl;
77 };
78
79 }} // Tizen::Io
80
81 #endif //_FIO_INTERNAL_DIR_ENUMERATOR_IMPL_H_
82