pathname.c
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:10k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   pathname.c
  3.   Function dealing with the pathname. Mostly C-string work.
  4.   ---------------------------------------------------------------------------*/
  5. /*****************************************************************************/
  6. /*  Includes                                                                 */
  7. /*****************************************************************************/
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <unistd.h>
  11. #include "pathname.h"
  12. #include "helpers.h"
  13. #include "macstuff.h"
  14. /*****************************************************************************/
  15. /*  Global Vars                                                              */
  16. /*****************************************************************************/
  17. const char  ResourceMark[] = "XtraStuf.mac:";  /* see also macos.c */
  18. #include "zip.h"
  19. /*****************************************************************************/
  20. /*  Functions                                                                */
  21. /*****************************************************************************/
  22. /*
  23. **  return volumename from pathname
  24. **
  25. */
  26. unsigned short GetVolumeFromPath(const char *FullPath, char *VolumeName)
  27. {
  28. const char *VolEnd, *tmpPtr1;
  29. char *tmpPtr2 = VolumeName;
  30. for (VolEnd = FullPath; *VolEnd != '' && *VolEnd != ':'; VolEnd++)
  31.       ;
  32. if (*VolEnd == '') return 0;
  33. for (tmpPtr1 = FullPath; tmpPtr1 != VolEnd;)
  34.     {
  35.     *tmpPtr2++ = *tmpPtr1++;
  36.     }
  37. *tmpPtr2 = '';
  38. return (unsigned short) strlen(VolumeName);
  39. }
  40. /*
  41. **  return the path without the filename
  42. **
  43. */
  44. char *TruncFilename(char *CompletePath, const char *name, FSSpec *Spec,
  45.                     OSErr *err)
  46. {
  47. char *tmpPtr;
  48. char *dirPtr;
  49. short fullPathLength = 0;
  50. strcpy(CompletePath, name);
  51. for (tmpPtr = CompletePath; *tmpPtr; tmpPtr++)
  52.     if (*tmpPtr == ':') dirPtr = tmpPtr;
  53. *++dirPtr = '';
  54. fullPathLength = strlen(CompletePath);
  55. printerr("Warning path length exceeds limit: ", fullPathLength >= NAME_MAX,
  56.          fullPathLength, __LINE__, __FILE__, " chars ");
  57. *err = FSpLocationFromFullPath(fullPathLength, CompletePath, Spec);
  58. return CompletePath;
  59. }
  60. /*
  61. **  return only filename
  62. **
  63. */
  64. char *GetFilename(char *CompletePath, const char *name)
  65. {
  66. const char *tmpPtr;
  67. const char *dirPtr = NULL;
  68. for (tmpPtr = name; *tmpPtr; tmpPtr++)
  69.     if (*tmpPtr == ':') dirPtr = tmpPtr;
  70. return strcpy(CompletePath, (dirPtr == NULL ? name : ++dirPtr));
  71. }
  72. /*
  73. **  return fullpathname from folder/dir-id
  74. **
  75. */
  76. char *GetFullPathFromID(char *CompletePath, short vRefNum, long dirID,
  77.                         ConstStr255Param name, OSErr *err)
  78. {
  79. FSSpec      spec;
  80.     *err = FSMakeFSSpecCompat(vRefNum, dirID, name, &spec);
  81.     printerr("FSMakeFSSpecCompat:", (*err != -43) && (*err != 0), *err,
  82.              __LINE__, __FILE__, "");
  83.     if ( (*err == noErr) || (*err == fnfErr) )
  84.     {
  85.         return GetFullPathFromSpec(CompletePath, &spec, err);
  86.     }
  87. return NULL;
  88. }
  89. /*
  90. **  convert real-filename to archive-filename
  91. **
  92. */
  93. char *Real2RfDfFilen(char *RfDfFilen, const char *RealPath,
  94.                     short CurrentFork, short MacZipMode, Boolean DataForkOnly)
  95. {
  96. if (DataForkOnly) /* make no changes */
  97.     {
  98.     return strcpy(RfDfFilen, RealPath);
  99.     }
  100. switch (MacZipMode)
  101.     {
  102.     case JohnnyLee_EF:
  103.         {
  104.         strcpy(RfDfFilen, RealPath);
  105.         if (CurrentFork == DataFork)            /* data-fork  */
  106.             return strcat(RfDfFilen, "d");
  107.         if (CurrentFork == ResourceFork)        /* resource-fork */
  108.             return strcat(RfDfFilen, "r");
  109.         break;
  110.         }
  111.     case NewZipMode_EF:
  112.         {
  113.         switch (CurrentFork)
  114.             {
  115.             case DataFork:
  116.                 {
  117.                 strcpy(RfDfFilen, RealPath);
  118.                 return RfDfFilen;  /* data-fork  */
  119.                 break;
  120.                 }
  121.             case ResourceFork:
  122.                 {
  123.                 strcpy(RfDfFilen, ResourceMark);
  124.                 strcat(RfDfFilen, RealPath);  /* resource-fork */
  125.                 return RfDfFilen;
  126.                 break;
  127.                 }
  128.             default:
  129.                 {
  130.                 printerr("Real2RfDfFilen:", -1, -1,
  131.                          __LINE__, __FILE__, RealPath);
  132.                 return NULL;  /* function should never reach this point */
  133.                 }
  134.             }
  135.         break;
  136.         }
  137.     default:
  138.         {
  139.         printerr("Real2RfDfFilen:", -1, -1, __LINE__, __FILE__, RealPath);
  140.         return NULL;  /* function should never reach this point */
  141.         }
  142.     }
  143. printerr("Real2RfDfFilen:", -1, -1, __LINE__, __FILE__, RealPath);
  144. return NULL;  /* function should never come reach this point */
  145. }
  146. /*
  147. **  convert archive-filename into a real filename
  148. **
  149. */
  150. char *RfDfFilen2Real(char *RealFn, const char *RfDfFilen, short MacZipMode,
  151.                      Boolean DataForkOnly, short *CurrentFork)
  152. {
  153. short   length;
  154. int     result;
  155. if (DataForkOnly)
  156.     {
  157.     *CurrentFork = DataFork;
  158.     return strcpy(RealFn,RfDfFilen);
  159.     }
  160. switch (MacZipMode)
  161.     {
  162.     case JohnnyLee_EF:
  163.         {
  164.         strcpy(RealFn, RfDfFilen);
  165.         length = strlen(RealFn);       /* determine Fork type */
  166.         if (RealFn[length-1] == 'd') *CurrentFork = DataFork;
  167.         else *CurrentFork = ResourceFork;
  168.         RealFn[length-1] = '';       /* simply cut one char  */
  169.         return RealFn;
  170.         break;
  171.         }
  172.     case NewZipMode_EF:
  173.         {                                   /* determine Fork type */
  174.         result = strncmp(RfDfFilen, ResourceMark, sizeof(ResourceMark)-2);
  175.         if (result != 0)
  176.             {
  177.             *CurrentFork = DataFork;
  178.             strcpy(RealFn, RfDfFilen);
  179.             return RealFn;  /* data-fork  */
  180.             }
  181.         else
  182.             {
  183.             *CurrentFork = ResourceFork;
  184.             if (strlen(RfDfFilen) > (sizeof(ResourceMark) - 1))
  185.                 {
  186.                 strcpy(RealFn, &RfDfFilen[sizeof(ResourceMark)-1]);
  187.                 }
  188.             else RealFn[0] = '';
  189.             return RealFn;  /* resource-fork */
  190.             }
  191.         break;
  192.         }
  193.     default:
  194.         {
  195.         printerr("RfDfFilen2Real():", -1, MacZipMode,
  196.                  __LINE__, __FILE__, RfDfFilen);
  197.         return NULL;  /* function should never reach this point */
  198.         }
  199.     }
  200. printerr("RfDfFilen2Real():", -1, MacZipMode, __LINE__, __FILE__, RfDfFilen);
  201. return NULL;  /* function should never reach this point */
  202. }
  203. /*
  204. **  return the applications name (argv[0])
  205. **
  206. */
  207. char *GetAppName(void)
  208. {
  209. ProcessSerialNumber psn;
  210. static Str255       AppName;
  211. ProcessInfoRec      pinfo;
  212. OSErr               err;
  213. GetCurrentProcess(&psn);
  214. pinfo.processName = AppName;
  215. pinfo.processInfoLength = sizeof(pinfo);
  216. pinfo.processAppSpec = NULL;
  217. err = GetProcessInformation(&psn,&pinfo);
  218. AppName[AppName[0]+1] = 0x00;
  219. return (char *)&AppName[1];
  220. }
  221. /*
  222. **  return fullpathname from FSSpec
  223. **
  224. */
  225. char *GetFullPathFromSpec(char *CompletePath, FSSpec *Spec, OSErr *err)
  226. {
  227. Handle hFullPath;
  228. short len;
  229. memset(CompletePath, 0, sizeof(CompletePath));
  230. *err = 0;
  231. *err = FSpGetFullPath(Spec, &len, &hFullPath);
  232. printerr("FSpGetFullPath:", (*err != -43) && (*err != 0), *err,
  233.          __LINE__, __FILE__, "");
  234. strncpy(CompletePath, *hFullPath, len);
  235. DisposeHandle(hFullPath);   /* we don't need it any more */
  236. CompletePath[len] = '';  /* make c-string */
  237. printerr("Warning path length exceeds limit: ", len >= NAME_MAX, len,
  238.          __LINE__, __FILE__, " chars ");
  239. return CompletePath;
  240. }
  241. /*
  242. * This function expands a given partial path to a complete path.
  243. * Path expansions are relative to the running app.
  244. * This function follows the notation:
  245. *   1. relative path:
  246. *       a: ":subfolder:filename"    -> ":current folder:subfolder:filename"
  247. *       b: "::folder2:filename"     -> folder2 is beside the current
  248. *                                      folder on the same level
  249. *       c: "filename"               -> in current folder
  250. *
  251. * An absolute path will be returned.
  252. The following characteristics of Macintosh pathnames should be noted:
  253.        A full pathname never begins with a colon, but must contain at
  254.        least one colon.
  255.        A partial pathname always begins with a colon separator except in
  256.        the case where the file partial pathname is a simple file or
  257.        directory name.
  258.        Single trailing separator colons in full or partial pathnames are
  259.        ignored except in the case of full pathnames to volumes.
  260.        In full pathnames to volumes, the trailing separator colon is required.
  261.        Consecutive separator colons can be used to ascend a level from a
  262.        directory to its parent directory. Two consecutive separator colons
  263.        will ascend one level, three consecutive separator colons will ascend
  264.        two levels, and so on. Ascending can only occur from a directory;
  265.        not a file.
  266. */
  267. char *GetCompletePath(char *CompletePath, const char *name, FSSpec *Spec,
  268.                       OSErr *err)
  269. {
  270. Boolean hasDirName = false;
  271. char *tmpPtr;
  272. for (tmpPtr = name; *tmpPtr; tmpPtr++)
  273.     if (*tmpPtr == ':') hasDirName = true;
  274. if (name[0] != ':')   /* case c: path including volume name or only filename */
  275.     {
  276.     if (hasDirName)
  277.         {   /* okey, starts with volume name, so it must be a complete path */
  278.         strcpy(CompletePath, name);
  279.         }
  280.     else
  281.         {   /* only filename: add cwd and return */
  282.         getcwd(CompletePath, NAME_MAX);
  283.         strcat(CompletePath, name);
  284.         }
  285.     }
  286. else if (name[1] == ':')    /* it's case b: */
  287.     {
  288.             /* it's not yet implemented; do we really need this case ?*/
  289.     return NULL;
  290.     }
  291. else                        /* it's case a: */
  292.     {
  293.     getcwd(CompletePath, NAME_MAX);     /* we don't need a second colon */
  294.     CompletePath[strlen(CompletePath)-1] = '';
  295.     strcat(CompletePath, name);
  296.     }
  297. *err = FSpLocationFromFullPath((short)strlen(CompletePath),
  298.                                CompletePath, Spec);
  299. return CompletePath;
  300. }