00001 /* 00002 ** ClanLib SDK 00003 ** Copyright (c) 1997-2005 The ClanLib Team 00004 ** 00005 ** This software is provided 'as-is', without any express or implied 00006 ** warranty. In no event will the authors be held liable for any damages 00007 ** arising from the use of this software. 00008 ** 00009 ** Permission is granted to anyone to use this software for any purpose, 00010 ** including commercial applications, and to alter it and redistribute it 00011 ** freely, subject to the following restrictions: 00012 ** 00013 ** 1. The origin of this software must not be misrepresented; you must not 00014 ** claim that you wrote the original software. If you use this software 00015 ** in a product, an acknowledgment in the product documentation would be 00016 ** appreciated but is not required. 00017 ** 2. Altered source versions must be plainly marked as such, and must not be 00018 ** misrepresented as being the original software. 00019 ** 3. This notice may not be removed or altered from any source distribution. 00020 ** 00021 ** Note: Some of the libraries ClanLib link to may have additional 00022 ** requirements or restrictions. 00023 ** 00024 ** File Author(s): 00025 ** 00026 ** Magnus Norddahl 00027 */ 00028 00029 #include "precomp.h" 00030 #include "virtual_directory.h" 00031 #include "virtual_file_system.h" 00032 #include "weakptr.h" 00033 00035 // CL_VirtualDirectory_Impl Class: 00036 00037 class CL_VirtualDirectory_Impl 00038 { 00040 public: 00041 CL_WeakPtr<CL_VirtualFileSystem_Impl> file_system; 00042 00043 CL_StringA absolute_path; 00044 }; 00045 00047 // CL_VirtualDirectory Construction: 00048 00049 CL_VirtualDirectory::CL_VirtualDirectory() 00050 { 00051 } 00052 00053 CL_VirtualDirectory::CL_VirtualDirectory( 00054 CL_VirtualFileSystem &file_system, 00055 const CL_StringA &absolute_path) 00056 : impl(new CL_VirtualDirectory_Impl) 00057 { 00058 impl->file_system = CL_WeakPtr<CL_VirtualFileSystem_Impl>(file_system.impl); 00059 impl->absolute_path = absolute_path; 00060 } 00061 00062 CL_VirtualDirectory::~CL_VirtualDirectory() 00063 { 00064 } 00065 00067 // CL_VirtualDirectory Attributes: 00068 00069 CL_VirtualFileSystem CL_VirtualDirectory::get_file_system() 00070 { 00071 return CL_VirtualFileSystem(impl->file_system); 00072 } 00073 00074 const CL_StringA &CL_VirtualDirectory::get_path() const 00075 { 00076 return impl->absolute_path; 00077 } 00078 00080 // CL_VirtualDirectory Operations: 00081 00082 CL_VirtualDirectory CL_VirtualDirectory::open_directory(const CL_StringA &path) 00083 { 00084 return CL_VirtualDirectory(get_file_system(), make_path_absolute(path)); 00085 } 00086 00087 CL_IODevice *CL_VirtualDirectory::open_file(const CL_StringA &filename) 00088 { 00089 return get_file_system().open_file(make_path_absolute(filename)); 00090 } 00091 00092 CL_StringA CL_VirtualDirectory::make_path_absolute(const CL_StringA &relative_path) const 00093 { 00094 return CL_StringA(); 00095 } 00096 00097 CL_StringA CL_VirtualDirectory::make_path_relative(const CL_StringA &absolute_path) const 00098 { 00099 return CL_StringA(); 00100 } 00101 00103 // CL_VirtualDirectory Implementation:
1.4.1