home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _51e15eaf228cb77136f745ec1b82ed3a < prev    next >
Text File  |  2000-03-15  |  3KB  |  121 lines

  1. /*
  2. The contents of this file are subject to the Mozilla Public License
  3. Version 1.1 (the "License"); you may not use this file except in
  4. compliance with the License. You may obtain a copy of the License at
  5. http://www.mozilla.org/MPL/
  6.  
  7. Software distributed under the License is distributed on an "AS IS"
  8. basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. License for the specific language governing rights and limitations
  10. under the License.
  11.  
  12. The Original Code is expat.
  13.  
  14. The Initial Developer of the Original Code is James Clark.
  15. Portions created by James Clark are Copyright (C) 1998, 1999
  16. James Clark. All Rights Reserved.
  17.  
  18. Contributor(s):
  19.  
  20. Alternatively, the contents of this file may be used under the terms
  21. of the GNU General Public License (the "GPL"), in which case the
  22. provisions of the GPL are applicable instead of those above.  If you
  23. wish to allow use of your version of this file only under the terms of
  24. the GPL and not to allow others to use your version of this file under
  25. the MPL, indicate your decision by deleting the provisions above and
  26. replace them with the notice and other provisions required by the
  27. GPL. If you do not delete the provisions above, a recipient may use
  28. your version of this file under either the MPL or the GPL.
  29. */
  30.  
  31. #define STRICT 1
  32. #define WIN32_LEAN_AND_MEAN 1
  33.  
  34. #ifdef XML_UNICODE_WCHAR_T
  35. #ifndef XML_UNICODE
  36. #define XML_UNICODE
  37. #endif
  38. #endif
  39.  
  40. #ifdef XML_UNICODE
  41. #define UNICODE
  42. #define _UNICODE
  43. #endif /* XML_UNICODE */
  44. #include <windows.h>
  45. #include <stdio.h>
  46. #include <tchar.h>
  47. #include "filemap.h"
  48.  
  49. static void win32perror(const TCHAR *);
  50.  
  51. int filemap(const TCHAR *name,
  52.         void (*processor)(const void *, size_t, const TCHAR *, void *arg),
  53.         void *arg)
  54. {
  55.   HANDLE f;
  56.   HANDLE m;
  57.   DWORD size;
  58.   DWORD sizeHi;
  59.   void *p;
  60.  
  61.   f = CreateFile(name, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
  62.               FILE_FLAG_SEQUENTIAL_SCAN, NULL);
  63.   if (f == INVALID_HANDLE_VALUE) {
  64.     win32perror(name);
  65.     return 0;
  66.   }
  67.   size = GetFileSize(f, &sizeHi);
  68.   if (size == (DWORD)-1) {
  69.     win32perror(name);
  70.     return 0;
  71.   }
  72.   if (sizeHi) {
  73.     _ftprintf(stderr, _T("%s: bigger than 2Gb\n"), name);
  74.     return 0;
  75.   }
  76.   /* CreateFileMapping barfs on zero length files */
  77.   if (size == 0) {
  78.     static const char c = '\0';
  79.     processor(&c, 0, name, arg);
  80.     CloseHandle(f);
  81.     return 1;
  82.   }
  83.   m = CreateFileMapping(f, NULL, PAGE_READONLY, 0, 0, NULL);
  84.   if (m == NULL) {
  85.     win32perror(name);
  86.     CloseHandle(f);
  87.     return 0;
  88.   }
  89.   p = MapViewOfFile(m, FILE_MAP_READ, 0, 0, 0);
  90.   if (p == NULL) {
  91.     win32perror(name);
  92.     CloseHandle(m);
  93.     CloseHandle(f);
  94.     return 0;
  95.   }
  96.   processor(p, size, name, arg); 
  97.   UnmapViewOfFile(p);
  98.   CloseHandle(m);
  99.   CloseHandle(f);
  100.   return 1;
  101. }
  102.  
  103. static
  104. void win32perror(const TCHAR *s)
  105. {
  106.   LPVOID buf;
  107.   if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
  108.             NULL,
  109.             GetLastError(),
  110.             MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  111.             (LPTSTR) &buf,
  112.             0,
  113.             NULL)) {
  114.     _ftprintf(stderr, _T("%s: %s"), s, buf);
  115.     fflush(stderr);
  116.     LocalFree(buf);
  117.   }
  118.   else
  119.     _ftprintf(stderr, _T("%s: unknown Windows error\n"), s);
  120. }
  121.