全國最多中醫師線上諮詢網站-台灣中醫網
發文 回覆 瀏覽次數:2157
推到 Plurk!
推到 Facebook!

二個函數的使用方式

尚未結案
sundy6719
初階會員


發表:136
回覆:78
積分:42
註冊:2002-07-10

發送簡訊給我
#1 引用回覆 回覆 發表時間:2004-01-10 22:58:16 IP:211.74.xxx.xxx 未訂閱
請問一下createfilemapping()和mapviewoffile()這二個函數要怎麼使用 例如createfilemapping(dword(-1),nil,page_readwrite,0,size,cmmfilename); 是表示什麼意思???? 發表人 - sundy6719 於 2004/01/10 23:03:46
qoo1234
版主


發表:256
回覆:1167
積分:659
註冊:2003-02-24

發送簡訊給我
#2 引用回覆 回覆 發表時間:2004-01-10 23:51:15 IP:218.163.xxx.xxx 未訂閱
CreateFileMapping和MapViewOfFile用來實現Shared memory mapped file    其他請查Delphi幫助檔-Win 32 SDK Reference(Win32SDK.HLP)    網海無涯,學無止境! 發表人 - qoo1234 於 2004/01/10 23:55:32
sundy6719
初階會員


發表:136
回覆:78
積分:42
註冊:2002-07-10

發送簡訊給我
#3 引用回覆 回覆 發表時間:2004-01-10 23:54:29 IP:211.74.xxx.xxx 未訂閱
我有去查過搜尋了可是我想問的是 在cratefilemapping內的()參數和mapviewoffile()內的參數都是代表什麼意思有沒有範例 因為我在delphi軟體內的說明檔和本站的搜尋都找不到
qoo1234
版主


發表:256
回覆:1167
積分:659
註冊:2003-02-24

發送簡訊給我
#4 引用回覆 回覆 發表時間:2004-01-10 23:57:07 IP:218.163.xxx.xxx 未訂閱
引言: 我有去查過搜尋了可是我想問的是 在cratefilemapping內的()參數和mapviewoffile()內的參數都是代表什麼意思有沒有範例 因為我在delphi軟體內的說明檔和本站的搜尋都找不到
The CreateFileMapping function creates a named or unnamed file-mapping object for the specified file.     HANDLE CreateFileMapping(        HANDLE hFile,        // handle to file to map 
    LPSECURITY_ATTRIBUTES lpFileMappingAttributes,        // optional security attributes 
    DWORD flProtect,        // protection for mapping object 
    DWORD dwMaximumSizeHigh,        // high-order 32 bits of object size  
    DWORD dwMaximumSizeLow,        // low-order 32 bits of object size  
    LPCTSTR lpName         // name of file-mapping object 
   );        
     Parameters    hFile    Identifies the file from which to create a mapping object. The file must be opened with an access mode compatible with the protection flags specified by the flProtect parameter. It is recommended, though not required, that files you intend to map be opened for exclusive access.     If hFile is (HANDLE)0xFFFFFFFF, the calling process must also specify a mapping object size in the dwMaximumSizeHigh and 
dwMaximumSizeLow parameters. The function creates a file-mapping object of the specified size backed by the operating-system paging file rather than by a named file in the file system. The file-mapping object can be shared through duplication, through inheritance, or by name.     lpFileMappingAttributes    Pointer to a SECURITY_ATTRIBUTES structure that determines whether the returned handle can be inherited by child processes. If lpFileMappingAttributes is NULL, the handle cannot be inherited.     Windows NT: The lpSecurityDescriptor member of the structure specifies a security descriptor for the new file-mapping object. If lpFileMappingAttributes is NULL, the file-mapping object gets a default security descriptor. 
Windows 95: The lpSecurityDescriptor member of the structure is ignored.    flProtect    Specifies the protection desired for the file view, when the file is mapped. This parameter can be one of the following values:     Value        Description
PAGE_READONLY        Gives read-only access to the committed region of pages. An attempt to write to or execute the committed region results in an access violation. The file specified by the hFile parameter must have been created with GENERIC_READ access.
PAGE_READWRITE        Gives read-write access to the committed region of pages. The file specified by hFile must have been created with GENERIC_READ and GENERIC_WRITE access.
PAGE_WRITECOPY        Gives copy on write access to the committed region of pages. The files specified by the hFile parameter must have been created with GENERIC_READ and GENERIC_WRITE access.
     In addition, an application can specify certain section attributes by combining (using the bitwise OR operator) one or more of the following section attribute values with one of the preceding page protection values:     Value        Description
SEC_COMMIT        Allocates physical storage in memory or in the paging file on disk for all pages of a section. This is the default setting.
SEC_IMAGE        The file specified for a section's file mapping is an executable image file. Because the mapping information and file protection are taken from the image file, no other attributes are valid with SEC_IMAGE.
SEC_NOCACHE        All pages of a section are to be set as non-cacheable. This attribute is intended for architectures requiring various locking structures to be in memory that is never fetched into the processor's. On 80x86 and MIPS machines, using the cache for these structures only slows down the performance as the hardware keeps the caches coherent. Some device drivers require noncached data so that programs can write through to the physical memory. SEC_NOCACHE requires either the SEC_RESERVE or SEC_COMMIT to also be set.
SEC_RESERVE        Reserves all pages of a section without allocating physical storage. The reserved range of pages cannot be used by any other allocation operations until it is released. Reserved pages can be committed in subsequent calls to the VirtualAlloc function. This attribute is valid only if the hFile parameter is (HANDLE)0xFFFFFFFF; that is, a file mapping object backed by the operating sytem paging file.
     dwMaximumSizeHigh    Specifies the high-order 32 bits of the maximum size of the file-mapping object.     dwMaximumSizeLow    Specifies the low-order 32 bits of the maximum size of the file-mapping object. If this parameter and dwMaximumSizeHig are zero, the maximum size of the file-mapping object is equal to the current size of the file identified by hFile.     lpName    Points to a null-terminated string specifying the name of the mapping object. The name can contain any character except the backslash character (\).     If this parameter matches the name of an existing named mapping object, the function requests access to the mapping object with the protection specified by flProtect. 
If this parameter is NULL, the mapping object is created without a name.          Return Values    If the function succeeds, the return value is a handle to the file-mapping object. If the object existed before the function call, the GetLastError function returns ERROR_ALREADY_EXISTS, and the return value is a valid handle to the existing file-mapping object (with its current size, not the new specified size. If the mapping object did not exist, GetLastError returns zero. 
If the function fails, the return value is NULL. To get extended error information, call GetLastError.     Remarks    After a file-mapping object has been created, the size of the file must not exceed the size of the file-mapping object; if it does, not all of the file's contents will be available for sharing. 
If an application specifies a size for the file-mapping object that is larger than the size of the actual named file on disk, the file on disk is grown to match the specified size of the file-mapping object. 
The handle that CreateFileMapping returns has full access to the new file-mapping object. It can be used with any function that requires a handle to a file-mapping object. File-mapping objects can be shared either through process creation, through handle duplication, or by name. For information on duplicating handles, see DuplicateHandle. For information on opening a file-mapping object by name, see OpenFileMapping.     Windows 95: File handles that have been used to create file-mapping objects must not be used in subsequent calls to file I/O functions, such as ReadFile and WriteFile. In general, if a file handle has been used in a successful call to the CreateFileMapping
 function, do not use that handle unless you first close the corresponding file-mapping object.
Creating a file-mapping object creates the potential for mapping a view of the file but does not map the view. The MapViewOfFile and MapViewOfFileEx functions map a view of a file into a process's address space.     With one important exception, file views derived from a single file-mapping object are coherent, or identical, at a given time. If multiple processes have handles of the same file-mapping object, they see a coherent view of the data when they map a view of the file. 
The exception has to do with remote files. Although CreateFileMapping works with remote files, it does not keep them coherent. For example, if two computers both map a file as writable, and both change the same page, each computer will only see its own writes to the page. When the data gets updated on the disk, it is not merged.     A mapped file and a file accessed by means of the input and output (I/O) functions (ReadFile and WriteFile) are not necessarily coherent. 
To fully close a file mapping object, an application must unmap all mapped views of the file mapping object by calling UnmapViewOfFile, and close the file mapping object handle by calling CloseHandle. The order in which these functions are called does not matter. The call to UnmapViewOfFile is necessary because mapped views of a file mapping object maintain internal open handles to the object, and a file mapping object will not close until all open handles to it are closed.     Example    To implement a mapping-object creation function that fails if the object already exists, an application can use the following code.     hMap = CreateFileMapping(...);  
if (hMap != NULL && GetLastError() == ERROR_ALREADY_EXISTS) { 
    CloseHandle(hMap); 
    hMap = NULL; 
} 
return hMap; 
 
網海無涯,學無止境!
qoo1234
版主


發表:256
回覆:1167
積分:659
註冊:2003-02-24

發送簡訊給我
#5 引用回覆 回覆 發表時間:2004-01-10 23:59:15 IP:218.163.xxx.xxx 未訂閱
The MapViewOfFile function maps a view of a file into the address space of the calling process.     LPVOID MapViewOfFile(        HANDLE hFileMappingObject,        // file-mapping object to map into address space  
    DWORD dwDesiredAccess,        // access mode 
    DWORD dwFileOffsetHigh,        // high-order 32 bits of file offset 
    DWORD dwFileOffsetLow,        // low-order 32 bits of file offset 
    DWORD dwNumberOfBytesToMap         // number of bytes to map 
   );        
     Parameters    hFileMappingObject    Identifies an open handle of a file-mapping object. The CreateFileMapping and OpenFileMapping functions return this handle.     dwDesiredAccess    Specifies the type of access to the file view and, therefore, the protection of the pages mapped by the file. This parameter can be one of the following values:     Value        Meaning
FILE_MAP_WRITE        Read-write access. The hFileMappingObject parameter must have been created with PAGE_READWRITE protection. A read-write view of the file is mapped.
FILE_MAP_READ        Read-only access. The hFileMappingObject parameter must have been created with PAGE_READWRITE or PAGE_READONLY protection. A read-only view of the file is mapped.
FILE_MAP_ALL_ACCESS        Same as FILE_MAP_WRITE.
FILE_MAP_COPY        Copy on write access. If you create the map with PAGE_WRITECOPY and the view with FILE_MAP_COPY, you will receive a view to file. If you write to it, the pages are automatically swappable and the modifications you make will not go to the original data file.Windows 95: You must pass PAGE_WRITECOPY to CreateFileMapping; otherwise, an error will be returned.If you share the mapping between multiple processes using DuplicateHandle or OpenFileMapping and one process writes to a view, the modification is propagated to the other process. The original file does not change.Windows NT: There is no restriction as to how the hFileMappingObject parameter must be created. Copy on write is valid for any type of view. If you share the mapping between multiple processes using DuplicateHandle or OpenFileMapping and one process writes to a view, the modification is not propagated to the other process. The original file does not change.
     dwFileOffsetHigh    Specifies the high-order 32 bits of the file offset where mapping is to begin.     dwFileOffsetLow    Specifies the low-order 32 bits of the file offset where mapping is to begin. The combination of the high and low offsets must specify an offset within the file that matches the system's memory allocation granularity, or the function fails. That is, the offset must be a multiple of the allocation granularity. Use the GetSystemInfo function, which fills in the members of a SYSTEM_INFO structure, to obtain the system's memory allocation granularity.     dwNumberOfBytesToMap    Specifies the number of bytes of the file to map. If dwNumberOfBytesToMap is zero, the entire file is mapped.          Return Values    If the function succeeds, the return value is the starting address of the mapped view.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.     Remarks    Mapping a file makes the specified portion of the file visible in the address space of the calling process. 
Multiple views of a file (or a file-mapping object and its mapped file) are said to be "coherent" if they contain identical data at a specified time. This occurs if the file views are derived from the same file-mapping object. A process can duplicate a file-mapping object handle into another process by using the DuplicateHandle function, or another process can open a file-mapping object by name by using the OpenFileMapping function.     A mapped view of a file is not guaranteed to be coherent with a file being accessed by the ReadFile or WriteFile function. 
Windows 95: MapViewOfFile may require the swapfile to grow. If the swapfile cannot grow, the function fails.
Windows NT: If the file-mapping object is backed by the paging file (handle = 0xFFFFFFFF), the paging file must be large enough to hold the entire mapping. If it is not, MapViewOfFile fails. 
網海無涯,學無止境!
qoo1234
版主


發表:256
回覆:1167
積分:659
註冊:2003-02-24

發送簡訊給我
#6 引用回覆 回覆 發表時間:2004-01-11 00:13:52 IP:218.163.xxx.xxx 未訂閱
createfilemapping()和mapviewoffile()這二個函數要怎麼使用    ..網路範例粉多~請自己找找 http://groups.google.com/groups?q=delphi%2BCreateFileMapping&hl=zh-TW&lr=&ie=UTF-8&inlang=zh-TW&start=10&sa=N    網海無涯,學無止境!
系統時間:2024-05-21 18:13:40
聯絡我們 | Delphi K.Top討論版
本站聲明
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。
2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。
3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇!