file.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:4k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* grabbag - Convenience lib for various routines common to several tools
  2.  * Copyright (C) 2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #if defined _MSC_VER || defined __MINGW32__
  19. #include <sys/utime.h> /* for utime() */
  20. #include <io.h> /* for chmod(), _setmode(), unlink() */
  21. #include <fcntl.h> /* for _O_BINARY */
  22. #else
  23. #include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */
  24. #include <utime.h> /* for utime() */
  25. #endif
  26. #ifdef __CYGWIN__
  27. #include <io.h> /* for setmode(), O_BINARY */
  28. #include <fcntl.h> /* for _O_BINARY */
  29. #endif
  30. #include <sys/stat.h> /* for stat(), maybe chmod() */
  31. #if defined _WIN32 && !defined __CYGWIN__
  32. #else
  33. #include <unistd.h> /* for unlink() */
  34. #endif
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include <string.h> /* for strrchr() */
  38. #include "share/grabbag.h"
  39. void grabbag__file_copy_metadata(const char *srcpath, const char *destpath)
  40. {
  41. struct stat srcstat;
  42. struct utimbuf srctime;
  43. if(0 == stat(srcpath, &srcstat)) {
  44. srctime.actime = srcstat.st_atime;
  45. srctime.modtime = srcstat.st_mtime;
  46. (void)chmod(destpath, srcstat.st_mode);
  47. (void)utime(destpath, &srctime);
  48. }
  49. }
  50. off_t grabbag__file_get_filesize(const char *srcpath)
  51. {
  52. struct stat srcstat;
  53. if(0 == stat(srcpath, &srcstat))
  54. return srcstat.st_size;
  55. else
  56. return -1;
  57. }
  58. const char *grabbag__file_get_basename(const char *srcpath)
  59. {
  60. const char *p;
  61. p = strrchr(srcpath, '/');
  62. if(0 == p) {
  63. p = strrchr(srcpath, '\');
  64. if(0 == p)
  65. return srcpath;
  66. }
  67. return ++p;
  68. }
  69. FLAC__bool grabbag__file_change_stats(const char *filename, FLAC__bool read_only)
  70. {
  71. struct stat stats;
  72. if(0 == stat(filename, &stats)) {
  73. #if !defined _MSC_VER && !defined __MINGW32__
  74. if(read_only) {
  75. stats.st_mode &= ~S_IWUSR;
  76. stats.st_mode &= ~S_IWGRP;
  77. stats.st_mode &= ~S_IWOTH;
  78. }
  79. else {
  80. stats.st_mode |= S_IWUSR;
  81. }
  82. #else
  83. if(read_only)
  84. stats.st_mode &= ~S_IWRITE;
  85. else
  86. stats.st_mode |= S_IWRITE;
  87. #endif
  88. if(0 != chmod(filename, stats.st_mode))
  89. return false;
  90. }
  91. else
  92. return false;
  93. return true;
  94. }
  95. FLAC__bool grabbag__file_remove_file(const char *filename)
  96. {
  97. return grabbag__file_change_stats(filename, /*read_only=*/false) && 0 == unlink(filename);
  98. }
  99. FILE *grabbag__file_get_binary_stdin()
  100. {
  101. /* if something breaks here it is probably due to the presence or
  102.  * absence of an underscore before the identifiers 'setmode',
  103.  * 'fileno', and/or 'O_BINARY'; check your system header files.
  104.  */
  105. #if defined _MSC_VER || defined __MINGW32__
  106. _setmode(_fileno(stdin), _O_BINARY);
  107. #elif defined __CYGWIN__
  108. /* almost certainly not needed for any modern Cygwin, but let's be safe... */
  109. setmode(_fileno(stdin), _O_BINARY);
  110. #endif
  111. return stdin;
  112. }
  113. FILE *grabbag__file_get_binary_stdout()
  114. {
  115. /* if something breaks here it is probably due to the presence or
  116.  * absence of an underscore before the identifiers 'setmode',
  117.  * 'fileno', and/or 'O_BINARY'; check your system header files.
  118.  */
  119. #if defined _MSC_VER || defined __MINGW32__
  120. _setmode(_fileno(stdout), _O_BINARY);
  121. #elif defined __CYGWIN__
  122. /* almost certainly not needed for any modern Cygwin, but let's be safe... */
  123. setmode(_fileno(stdout), _O_BINARY);
  124. #endif
  125. return stdout;
  126. }