push 702b67c62807859bace52b5858dd8d0af3c4fc10
[wine/hacks.git] / dlls / mountmgr.sys / diskarb.c
blob0c188ff2e0c14a7afc38502b68ce97b332cb5eac
1 /*
2 * Devices support using the MacOS Disk Arbitration library.
4 * Copyright 2006 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <errno.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <sys/time.h>
30 #include "mountmgr.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(mountmgr);
35 #ifdef HAVE_DISKARBITRATION_DISKARBITRATION_H
37 #include <DiskArbitration/DiskArbitration.h>
39 static void appeared_callback( DADiskRef disk, void *context )
41 CFDictionaryRef dict = DADiskCopyDescription( disk );
42 const void *ref;
43 char device[64];
44 char mount_point[PATH_MAX];
45 GUID guid, *guid_ptr = NULL;
46 enum device_type type = DEVICE_UNKNOWN;
48 if (!dict) return;
50 if ((ref = CFDictionaryGetValue( dict, CFSTR("DAVolumeUUID") )))
52 CFUUIDBytes bytes = CFUUIDGetUUIDBytes( ref );
53 memcpy( &guid, &bytes, sizeof(guid) );
54 guid_ptr = &guid;
57 /* get device name */
58 if (!(ref = CFDictionaryGetValue( dict, CFSTR("DAMediaBSDName") ))) goto done;
59 strcpy( device, "/dev/r" );
60 CFStringGetCString( ref, device + 6, sizeof(device) - 6, kCFStringEncodingASCII );
62 if ((ref = CFDictionaryGetValue( dict, CFSTR("DAVolumePath") )))
63 CFURLGetFileSystemRepresentation( ref, true, (UInt8 *)mount_point, sizeof(mount_point) );
64 else
65 mount_point[0] = 0;
67 if ((ref = CFDictionaryGetValue( dict, CFSTR("DAVolumeKind") )))
69 if (!CFStringCompare( ref, CFSTR("cd9660"), 0 ) ||
70 !CFStringCompare( ref, CFSTR("udf"), 0 ))
71 type = DEVICE_CDROM;
74 TRACE( "got mount notification for '%s' on '%s' uuid %s\n",
75 device, mount_point, wine_dbgstr_guid(guid_ptr) );
77 if ((ref = CFDictionaryGetValue( dict, CFSTR("DAMediaRemovable") )) && CFBooleanGetValue( ref ))
78 add_dos_device( -1, device, device, mount_point, type, guid_ptr );
79 else
80 if (guid_ptr) add_volume( device, device, mount_point, DEVICE_HARDDISK_VOL, guid_ptr );
82 done:
83 CFRelease( dict );
86 static void changed_callback( DADiskRef disk, CFArrayRef keys, void *context )
88 appeared_callback( disk, context );
91 static void disappeared_callback( DADiskRef disk, void *context )
93 CFDictionaryRef dict = DADiskCopyDescription( disk );
94 const void *ref;
95 char device[100];
97 if (!dict) return;
99 /* get device name */
100 if (!(ref = CFDictionaryGetValue( dict, CFSTR("DAMediaBSDName") ))) goto done;
101 strcpy( device, "/dev/r" );
102 CFStringGetCString( ref, device + 6, sizeof(device) - 6, kCFStringEncodingASCII );
104 TRACE( "got unmount notification for '%s'\n", device );
106 if ((ref = CFDictionaryGetValue( dict, CFSTR("DAMediaRemovable") )) && CFBooleanGetValue( ref ))
107 remove_dos_device( -1, device );
108 else
109 remove_volume( device );
111 done:
112 CFRelease( dict );
115 static DWORD WINAPI runloop_thread( void *arg )
117 DASessionRef session = DASessionCreate( NULL );
119 if (!session) return 1;
121 DASessionScheduleWithRunLoop( session, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode );
122 DARegisterDiskAppearedCallback( session, kDADiskDescriptionMatchVolumeMountable,
123 appeared_callback, NULL );
124 DARegisterDiskDisappearedCallback( session, kDADiskDescriptionMatchVolumeMountable,
125 disappeared_callback, NULL );
126 DARegisterDiskDescriptionChangedCallback( session, kDADiskDescriptionMatchVolumeMountable,
127 kDADiskDescriptionWatchVolumePath, changed_callback, NULL );
128 CFRunLoopRun();
129 DASessionUnscheduleFromRunLoop( session, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode );
130 CFRelease( session );
131 return 0;
134 void initialize_diskarbitration(void)
136 HANDLE handle;
138 if (!(handle = CreateThread( NULL, 0, runloop_thread, NULL, 0, NULL ))) return;
139 CloseHandle( handle );
142 #else /* HAVE_DISKARBITRATION_DISKARBITRATION_H */
144 void initialize_diskarbitration(void)
146 TRACE( "Skipping, Disk Arbitration support not compiled in\n" );
149 #endif /* HAVE_DISKARBITRATION_DISKARBITRATION_H */