What is a "Handle" when discussing resources in Windows? How do they work?
|
feedback
|
|
It's an abstract reference value to a resource, often memory or an open file, or a pipe. Properly, in Windows, (and generally in computing) a handle is an abstraction which hides a real memory address from the API user, allowing the system to reorganize physical memory transparently to the program. Resolving a handle into a pointer locks the memory, and releasing the handle invalidates the pointer. In this case think of it as an index into a table of pointers... you use the index for the system API calls, and the system can change the pointer in the table at will. Alternatively a real pointer may be given as the handle when the API writer intends that the user of the API be insulated from the specifics of what the address returned points to; in this case it must be considered that what the handle points to may change at any time (from API version to version or even from call to call of the API that returns the handle) - the handle should therefore be treated as simply an opaque value meaningful only to the API. | |||||||||||
feedback
|
|
A For example, The
Consider these three different internal implementations of a Win32 API that I just made up, and assume that
The first example exposes the internal details about the API: it allows the user code to know that
Both of these consequences may be undesirable. The second example hides this internal detail from the user code, by returning just The third example is exactly the same as the second, but we just call the Why go through this trouble? Consider this fourth example of a newer version of this same API:
Notice that the function's interface is identical to the third example above. This means that user code can continue to use this new version of the API, without any changes, even though the "behind the scenes" implementation has changed to use the The handles in these example are really just a new, presumably friendlier, name for | |||||||||
feedback
|
|
A HANDLE in Win32 programming is a token that represents a resource that is managed by the Windows kernel. A handle can be to a window, a file, etc. Handles are simply a way of identifying a particulate resource that you want to work with using the Win32 APIs. So for instance, if you want to create a Window, and show it on the screen you could do the following:
In the above example HWND means "a handle to a window". If you are used to an object oriented language you can think of a HANDLE as an instance of a class with no methods who's state is only modifiable by other functions. In this case the ShowWindow function modifies the state of the Window HANDLE. See Handles and Data Types for more information. | ||||
|
feedback
|
|
Think of the window in Windows as being a struct that describes it. This struct is an internal part of Windows and you don't need to know the details of it. Instead, Windows provides a typedef for pointer to struct for that struct. That's the "handle" by which you can get hold on the window., | |||
feedback
|
|
So at the most basic level a HANDLE of any sort is a pointer to a pointer or
Now as to why you would want to use it Lets take a setup:
So because obj was passed by value (make a copy and give that to the function) to foo, the printf will print the original value of 1. Now if we update foo to:
There is a chance that the printf will print the updated value of 2. But there is also the possibility that foo will cause some form of memory corruption or exception. The reason is this while you are now using a pointer to pass obj to the function you are also allocating 2 Megs of memory, this could cause the OS to move the memory around updating the location of obj. Since you have passed the pointer by value, if obj gets moved then the OS updates the pointer but not the copy in the function and potentially causing problems. A final update to foo of:
This will always print the updated value. See, when the compiler allocates memory for pointers it marks them as immovable, so any re-shuffling of memory caused by the large object being allocated the value passed to the function will point to the correct address to find out the final location in memory to update. Any particular types of HANDLEs (hWnd, FILE, etc) are domain specific and point to a certain type of structure to protect against memory corruption. | ||||
|
feedback
|
|
A handle is a unique identifier for an object managed by Windows. It's like a pointer, but not a pointer in the sence that it's not an address that could be dereferenced by user code to gain access to some data. Instead a handle is to be passed to a set of functions that can perform actions on the object the handle identifies. | |||
|
feedback
|