source: NonGTP/FCollada/Documentation/_f_u_file_manager_8h-source.html @ 964

Revision 964, 6.0 KB checked in by igarcia, 18 years ago (diff)
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>FCollada: FUtils/FUFileManager.h Source File</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5<link href="tabs.css" rel="stylesheet" type="text/css">
6</head><body>
7<!-- Generated by Doxygen 1.4.6-NO -->
8<div class="tabs">
9  <ul>
10    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11    <li><a href="modules.html"><span>Modules</span></a></li>
12    <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13    <li><a href="classes.html"><span>Classes</span></a></li>
14    <li id="current"><a href="files.html"><span>Files</span></a></li>
15    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
16  </ul></div>
17<div class="tabs">
18  <ul>
19    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
20    <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
21  </ul></div>
22<h1>FUtils/FUFileManager.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
23<a name="l00002"></a>00002 <span class="comment">    Copyright (C) 2005-2006 Feeling Software Inc.</span>
24<a name="l00003"></a>00003 <span class="comment">    MIT License: http://www.opensource.org/licenses/mit-license.php</span>
25<a name="l00004"></a>00004 <span class="comment">*/</span>
26<a name="l00005"></a>00005 <span class="comment">/*</span>
27<a name="l00006"></a>00006 <span class="comment">    Based on the FS Import classes:</span>
28<a name="l00007"></a>00007 <span class="comment">    Copyright (C) 2005-2006 Feeling Software Inc</span>
29<a name="l00008"></a>00008 <span class="comment">    Copyright (C) 2005-2006 Autodesk Media Entertainment</span>
30<a name="l00009"></a>00009 <span class="comment">    MIT License: http://www.opensource.org/licenses/mit-license.php</span>
31<a name="l00010"></a>00010 <span class="comment">*/</span>
32<a name="l00011"></a>00011
33<a name="l00012"></a>00012 <span class="preprocessor">#ifndef _FU_FILE_MANAGER_H_</span>
34<a name="l00013"></a>00013 <span class="preprocessor"></span><span class="preprocessor">#define _FU_FILE_MANAGER_H_</span>
35<a name="l00014"></a>00014 <span class="preprocessor"></span>
36<a name="l00015"></a>00015 <span class="keyword">class </span>FUFile;
37<a name="l00016"></a>00016
38<a name="l00017"></a>00017 <span class="keyword">class </span>FCOLLADA_EXPORT FUFileManager
39<a name="l00018"></a>00018 {
40<a name="l00019"></a>00019 <span class="keyword">private</span>:
41<a name="l00020"></a>00020 <a class="code" href="classvector.html">FStringList</a> pathStack;
42<a name="l00021"></a>00021
43<a name="l00022"></a>00022 <span class="keyword">public</span>:
44<a name="l00023"></a>00023     FUFileManager();
45<a name="l00024"></a>00024     ~FUFileManager();
46<a name="l00025"></a>00025
47<a name="l00026"></a>00026     <span class="comment">// Root path stack</span>
48<a name="l00027"></a>00027 <span class="keyword">const</span> fstring&amp; GetCurrentPath() { <span class="keywordflow">return</span> pathStack.back(); }
49<a name="l00028"></a>00028 <span class="keywordtype">void</span> PushRootPath(<span class="keyword">const</span> fstring&amp; path);
50<a name="l00029"></a>00029 <span class="keywordtype">void</span> PopRootPath();
51<a name="l00030"></a>00030 <span class="keywordtype">void</span> PushRootFile(<span class="keyword">const</span> fstring&amp; filename);
52<a name="l00031"></a>00031 <span class="keywordtype">void</span> PopRootFile();
53<a name="l00032"></a>00032
54<a name="l00033"></a>00033     <span class="comment">// Some file access</span>
55<a name="l00034"></a>00034 FUFile* OpenFile(<span class="keyword">const</span> fstring&amp; filename, <span class="keywordtype">bool</span> write=<span class="keyword">true</span>);
56<a name="l00035"></a>00035
57<a name="l00036"></a>00036     <span class="comment">// Extract information from filenames</span>
58<a name="l00037"></a>00037 <span class="keyword">static</span> fstring StripFileFromPath(<span class="keyword">const</span> fstring&amp; filename);
59<a name="l00038"></a>00038 <span class="keyword">static</span> fstring GetFileExtension(<span class="keyword">const</span> fstring&amp; filename);
60<a name="l00039"></a>00039
61<a name="l00040"></a>00040     <span class="comment">// Make a file path relative/absolute</span>
62<a name="l00041"></a>00041 fstring MakeFilePathAbsolute(<span class="keyword">const</span> fstring&amp; filePath);
63<a name="l00042"></a>00042 fstring MakeFilePathRelative(<span class="keyword">const</span> fstring&amp; filePath);
64<a name="l00043"></a>00043
65<a name="l00044"></a>00044     <span class="comment">// Transform a file URL into a file path</span>
66<a name="l00045"></a>00045 fstring GetFilePath(<span class="keyword">const</span> fstring&amp; fileURL);
67<a name="l00046"></a>00046
68<a name="l00047"></a>00047     <span class="comment">// Transform a file path into a file URL</span>
69<a name="l00048"></a>00048 fstring GetFileURL(<span class="keyword">const</span> fstring&amp; filepath, <span class="keywordtype">bool</span> relative);
70<a name="l00049"></a>00049
71<a name="l00050"></a>00050     <span class="comment">// For a relative path, extract the list of the individual paths that must be traversed to get to the file.</span>
72<a name="l00051"></a>00051 <span class="keyword">static</span> <span class="keywordtype">void</span> ExtractPathStack(<span class="keyword">const</span> fstring&amp; filename, <a class="code" href="classvector.html">FStringList</a>&amp; list, <span class="keywordtype">bool</span> includeFilename);
73<a name="l00052"></a>00052 };
74<a name="l00053"></a>00053
75<a name="l00054"></a>00054 <span class="preprocessor">#endif // _FU_FILE_MANAGER_H_</span>
76<a name="l00055"></a>00055 <span class="preprocessor"></span>
77</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri May 12 16:44:39 2006 for FCollada by&nbsp;
78<a href="http://www.doxygen.org/index.html">
79<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6-NO </small></address>
80</body>
81</html>
Note: See TracBrowser for help on using the repository browser.