| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | # Module 'riscospath' -- common operations on RISC OS pathnames. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # contributed by Andrew Clover  ( andrew@oaktree.co.uk ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The "os.path" name is an alias for this module on RISC OS systems; | 
					
						
							|  |  |  | # on other systems (e.g. Mac, Windows), os.path provides the same | 
					
						
							|  |  |  | # operations in a manner specific to that platform, and is an alias | 
					
						
							|  |  |  | # to another module (e.g. macpath, ntpath). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | Instead of importing this module directly, import os and refer to this module | 
					
						
							|  |  |  | as os.path. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-14 19:35:31 +00:00
										 |  |  | # strings representing various path-related bits and pieces | 
					
						
							|  |  |  | curdir = '@' | 
					
						
							|  |  |  | pardir = '^' | 
					
						
							| 
									
										
										
										
											2003-05-10 07:36:56 +00:00
										 |  |  | extsep = '/' | 
					
						
							| 
									
										
										
										
											2003-02-14 19:35:31 +00:00
										 |  |  | sep = '.' | 
					
						
							|  |  |  | pathsep = ',' | 
					
						
							|  |  |  | defpath = '<Run$Dir>' | 
					
						
							|  |  |  | altsep = None | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Imports - make an error-generating swi object if the swi module is not | 
					
						
							|  |  |  | # available (ie. we are not running on RISC OS Python) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import os, stat, string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | try: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     import swi | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     class _swi: | 
					
						
							|  |  |  |         def swi(*a): | 
					
						
							|  |  |  |             raise AttributeError, 'This function only available under RISC OS' | 
					
						
							|  |  |  |         block= swi | 
					
						
							|  |  |  |     swi= _swi() | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | [_false, _true]= range(2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _roots= ['$', '&', '%', '@', '\\'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # _allowMOSFSNames | 
					
						
							|  |  |  | # After importing riscospath, set _allowMOSFSNames true if you want the module | 
					
						
							|  |  |  | # to understand the "-SomeFS-" notation left over from the old BBC Master MOS, | 
					
						
							|  |  |  | # as well as the standard "SomeFS:" notation. Set this to be fully backwards | 
					
						
							|  |  |  | # compatible but remember that "-SomeFS-" can also be a perfectly valid file | 
					
						
							|  |  |  | # name so care must be taken when splitting and joining paths. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _allowMOSFSNames= _false | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Path manipulation, RISC OS stylee. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _split(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   split filing system name (including special field) and drive specifier from rest | 
					
						
							|  |  |  |   of path. This is needed by many riscospath functions. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     dash= _allowMOSFSNames and p[:1]=='-' | 
					
						
							|  |  |  |     if dash: | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         q= p.find('-', 1)+1 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         if p[:1]==':': | 
					
						
							|  |  |  |             q= 0 | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |             q= p.find(':')+1 # q= index of start of non-FS portion of path | 
					
						
							|  |  |  |     s= p.find('#') | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     if s==-1 or s>q: | 
					
						
							|  |  |  |         s= q # find end of main FS name, not including special field | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         for c in p[dash:s]: | 
					
						
							| 
									
										
										
										
											2001-07-20 19:05:50 +00:00
										 |  |  |             if c not in string.ascii_letters: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |                 q= 0 | 
					
						
							|  |  |  |                 break # disallow invalid non-special-field characters in FS name | 
					
						
							|  |  |  |     r= q | 
					
						
							|  |  |  |     if p[q:q+1]==':': | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         r= p.find('.', q+1)+1 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         if r==0: | 
					
						
							|  |  |  |             r= len(p) # find end of drive name (if any) following FS name (if any) | 
					
						
							|  |  |  |     return (p[:q], p[q:r], p[r:]) | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def normcase(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Normalize the case of a pathname. This converts to lowercase as the native RISC | 
					
						
							|  |  |  |   OS filesystems are case-insensitive. However, not all filesystems have to be, | 
					
						
							|  |  |  |   and there's no simple way to find out what type an FS is argh. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     return p.lower() | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def isabs(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Return whether a path is absolute. Under RISC OS, a file system specifier does | 
					
						
							|  |  |  |   not make a path absolute, but a drive name or number does, and so does using the | 
					
						
							|  |  |  |   symbol for root, URD, library, CSD or PSD. This means it is perfectly possible | 
					
						
							|  |  |  |   to have an "absolute" URL dependent on the current working directory, and | 
					
						
							|  |  |  |   equally you can have a "relative" URL that's on a completely different device to | 
					
						
							|  |  |  |   the current one argh. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (fs, drive, path)= _split(p) | 
					
						
							|  |  |  |     return drive!='' or path[:1] in _roots | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def join(a, *p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Join path elements with the directory separator, replacing the entire path when | 
					
						
							|  |  |  |   an absolute or FS-changing path part is found. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     j= a | 
					
						
							|  |  |  |     for b in p: | 
					
						
							|  |  |  |         (fs, drive, path)= _split(b) | 
					
						
							| 
									
										
										
										
											2001-10-24 20:42:55 +00:00
										 |  |  |         if j=='' or fs!='' or drive!='' or path[:1] in _roots: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |             j= b | 
					
						
							| 
									
										
										
										
											2001-10-24 20:42:55 +00:00
										 |  |  |         elif j[-1]==':': | 
					
						
							|  |  |  |             j= j+b | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             j= j+'.'+b | 
					
						
							|  |  |  |     return j | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def split(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Split a path in head (everything up to the last '.') and tail (the rest). FS | 
					
						
							|  |  |  |   name must still be dealt with separately since special field may contain '.'. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (fs, drive, path)= _split(p) | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     q= path.rfind('.') | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     if q!=-1: | 
					
						
							|  |  |  |         return (fs+drive+path[:q], path[q+1:]) | 
					
						
							|  |  |  |     return ('', p) | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def splitext(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Split a path in root and extension. This assumes the 'using slash for dot and | 
					
						
							|  |  |  |   dot for slash with foreign files' convention common in RISC OS is in force. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (tail, head)= split(p) | 
					
						
							|  |  |  |     if '/' in head: | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         q= len(head)-head.rfind('/') | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         return (p[:-q], p[-q:]) | 
					
						
							|  |  |  |     return (p, '') | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def splitdrive(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Split a pathname into a drive specification (including FS name) and the rest of | 
					
						
							|  |  |  |   the path. The terminating dot of the drive name is included in the drive | 
					
						
							|  |  |  |   specification. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (fs, drive, path)= _split(p) | 
					
						
							|  |  |  |     return (fs+drive, p) | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def basename(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Return the tail (basename) part of a path. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     return split(p)[1] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def dirname(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Return the head (dirname) part of a path. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     return split(p)[0] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-03 07:30:12 +00:00
										 |  |  | def commonprefix(m): | 
					
						
							|  |  |  |     "Given a list of pathnames, returns the longest common leading component" | 
					
						
							|  |  |  |     if not m: return '' | 
					
						
							|  |  |  |     s1 = min(m) | 
					
						
							|  |  |  |     s2 = max(m) | 
					
						
							|  |  |  |     n = min(len(s1), len(s2)) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |     for i in range(n): | 
					
						
							| 
									
										
										
										
											2005-08-03 07:30:12 +00:00
										 |  |  |         if s1[i] != s2[i]: | 
					
						
							|  |  |  |             return s1[:i] | 
					
						
							|  |  |  |     return s1[:n] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## File access functions. Why are we in os.path? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def getsize(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Return the size of a file, reported by os.stat(). | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     st= os.stat(p) | 
					
						
							|  |  |  |     return st[stat.ST_SIZE] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def getmtime(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Return the last modification time of a file, reported by os.stat(). | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     st = os.stat(p) | 
					
						
							|  |  |  |     return st[stat.ST_MTIME] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | getatime= getmtime | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # RISC OS-specific file access functions | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def exists(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Test whether a path exists. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         return swi.swi('OS_File', '5s;i', p)!=0 | 
					
						
							|  |  |  |     except swi.error: | 
					
						
							|  |  |  |         return 0 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-30 10:19:56 +00:00
										 |  |  | lexists = exists | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def isdir(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Is a path a directory? Includes image files. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         return swi.swi('OS_File', '5s;i', p) in [2, 3] | 
					
						
							|  |  |  |     except swi.error: | 
					
						
							|  |  |  |         return 0 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def isfile(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Test whether a path is a file, including image files. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         return swi.swi('OS_File', '5s;i', p) in [1, 3] | 
					
						
							|  |  |  |     except swi.error: | 
					
						
							|  |  |  |         return 0 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def islink(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   RISC OS has no links or mounts. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     return _false | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ismount= islink | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Same-file testing. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # samefile works on filename comparison since there is no ST_DEV and ST_INO is | 
					
						
							|  |  |  | # not reliably unique (esp. directories). First it has to normalise the | 
					
						
							|  |  |  | # pathnames, which it can do 'properly' using OS_FSControl since samefile can | 
					
						
							|  |  |  | # assume it's running on RISC OS (unlike normpath). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def samefile(fa, fb): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Test whether two pathnames reference the same actual file. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     l= 512 | 
					
						
							|  |  |  |     b= swi.block(l) | 
					
						
							|  |  |  |     swi.swi('OS_FSControl', 'isb..i', 37, fa, b, l) | 
					
						
							|  |  |  |     fa= b.ctrlstring() | 
					
						
							|  |  |  |     swi.swi('OS_FSControl', 'isb..i', 37, fb, b, l) | 
					
						
							|  |  |  |     fb= b.ctrlstring() | 
					
						
							|  |  |  |     return fa==fb | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def sameopenfile(a, b): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Test whether two open file objects reference the same file. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     return os.fstat(a)[stat.ST_INO]==os.fstat(b)[stat.ST_INO] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Path canonicalisation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 'user directory' is taken as meaning the User Root Directory, which is in | 
					
						
							|  |  |  | # practice never used, for anything. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def expanduser(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (fs, drive, path)= _split(p) | 
					
						
							|  |  |  |     l= 512 | 
					
						
							|  |  |  |     b= swi.block(l) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if path[:1]!='@': | 
					
						
							|  |  |  |         return p | 
					
						
							|  |  |  |     if fs=='': | 
					
						
							|  |  |  |         fsno= swi.swi('OS_Args', '00;i') | 
					
						
							|  |  |  |         swi.swi('OS_FSControl', 'iibi', 33, fsno, b, l) | 
					
						
							|  |  |  |         fsname= b.ctrlstring() | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         if fs[:1]=='-': | 
					
						
							|  |  |  |             fsname= fs[1:-1] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             fsname= fs[:-1] | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         fsname= fsname.split('#', 1)[0] # remove special field from fs | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     x= swi.swi('OS_FSControl', 'ib2s.i;.....i', 54, b, fsname, l) | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |     if x<l: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |         urd= b.tostring(0, l-x-1) | 
					
						
							|  |  |  |     else: # no URD! try CSD | 
					
						
							|  |  |  |         x= swi.swi('OS_FSControl', 'ib0s.i;.....i', 54, b, fsname, l) | 
					
						
							|  |  |  |         if x<l: | 
					
						
							|  |  |  |             urd= b.tostring(0, l-x-1) | 
					
						
							|  |  |  |         else: # no CSD! use root | 
					
						
							|  |  |  |             urd= '$' | 
					
						
							|  |  |  |     return fsname+':'+urd+path[1:] | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Environment variables are in angle brackets. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def expandvars(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Expand environment variables using OS_GSTrans. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     l= 512 | 
					
						
							|  |  |  |     b= swi.block(l) | 
					
						
							|  |  |  |     return b.tostring(0, swi.swi('OS_GSTrans', 'sbi;..i', p, b, l)) | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-15 22:12:47 +00:00
										 |  |  | # Return an absolute path. RISC OS' osfscontrol_canonicalise_path does this among others | 
					
						
							|  |  |  | abspath = os.expand | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-17 15:16:09 +00:00
										 |  |  | # realpath is a no-op on systems without islink support | 
					
						
							|  |  |  | realpath = abspath | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | # Normalize a path. Only special path element under RISC OS is "^" for "..". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def normpath(p): | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |   Normalize path, eliminating up-directory ^s. | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |   """
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     (fs, drive, path)= _split(p) | 
					
						
							|  |  |  |     rhs= '' | 
					
						
							|  |  |  |     ups= 0 | 
					
						
							|  |  |  |     while path!='': | 
					
						
							|  |  |  |         (path, el)= split(path) | 
					
						
							|  |  |  |         if el=='^': | 
					
						
							|  |  |  |             ups= ups+1 | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |             if ups>0: | 
					
						
							|  |  |  |                 ups= ups-1 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 if rhs=='': | 
					
						
							|  |  |  |                     rhs= el | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     rhs= el+'.'+rhs | 
					
						
							|  |  |  |     while ups>0: | 
					
						
							|  |  |  |         ups= ups-1 | 
					
						
							|  |  |  |         rhs= '^.'+rhs | 
					
						
							|  |  |  |     return fs+drive+rhs | 
					
						
							| 
									
										
										
										
											2001-03-02 05:58:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Directory tree walk. | 
					
						
							|  |  |  | # Independent of host system. Why am I in os.path? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def walk(top, func, arg): | 
					
						
							| 
									
										
										
										
											2001-10-10 04:16:20 +00:00
										 |  |  |     """Directory tree walk with callback function.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     For each directory in the directory tree rooted at top (including top | 
					
						
							|  |  |  |     itself, but excluding '.' and '..'), call func(arg, dirname, fnames). | 
					
						
							|  |  |  |     dirname is the name of the directory, and fnames a list of the names of | 
					
						
							|  |  |  |     the files and subdirectories in dirname (excluding '.' and '..').  func | 
					
						
							|  |  |  |     may modify the fnames list in-place (e.g. via del or slice assignment), | 
					
						
							|  |  |  |     and walk will only recurse into the subdirectories whose names remain in | 
					
						
							|  |  |  |     fnames; this can be used to implement a filter, or to impose a specific | 
					
						
							|  |  |  |     order of visiting.  No semantics are defined for, or required of, arg, | 
					
						
							|  |  |  |     beyond that arg is always passed to func.  It can be used, e.g., to pass | 
					
						
							|  |  |  |     a filename pattern, or a mutable object designed to accumulate | 
					
						
							|  |  |  |     statistics.  Passing None for arg is common."""
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-02 04:59:35 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         names= os.listdir(top) | 
					
						
							|  |  |  |     except os.error: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     func(arg, top, names) | 
					
						
							|  |  |  |     for name in names: | 
					
						
							|  |  |  |         name= join(top, name) | 
					
						
							|  |  |  |         if isdir(name) and not islink(name): | 
					
						
							|  |  |  |             walk(name, func, arg) |