tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Filesystem / Path.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef WRTDEVICEAPIS_FILESYSTEM_PATH_H_
17 #define WRTDEVICEAPIS_FILESYSTEM_PATH_H_
18
19 #include <string>
20 #include <vector>
21 #include <dpl/enable_shared_from_this.h>
22 #include <Filesystem/IPath.h>
23
24 namespace WrtDeviceApis {
25 namespace Filesystem {
26
27 class Path : public Api::IPath,
28     public DPL::EnableSharedFromThis<Path>
29 {
30   public:
31     static Api::IPathPtr create(const std::string& path);
32     static Api::IPath::SeparatorType getSeparator();
33
34   public:
35     std::string getFullPath() const;
36     std::string getPath() const;
37     std::string getName() const;
38     Api::IPathPtr append(const std::string& path);
39     Api::IPathPtr append(const Api::IPathPtr& path);
40     bool isAbsolute() const;
41     Api::IPathPtr clone() const;
42
43   private:
44     /**
45      * Checks whether specified string is a valid path.
46      * @param path String to verify.
47      * @return True when string is a valid path, false otherwise.
48      */
49     static bool isValid(const std::string& str);
50
51   private:
52     Path();
53     void reset(const std::string& str);
54
55   private:
56     static const SeparatorType m_pathSeparator; ///< Path separator.
57
58   private:
59     std::string m_fullPath; ///< Full path.
60     std::string m_path;   ///< Base path.
61     std::string m_name;   ///< Last part of the path.
62 };
63
64 } // Filesystem
65 } // WrtDeviceApis
66
67 #endif /* WRTDEVICEAPIS_FILESYSTEM_PATH_H_ */