2009-12-11 4 views
1

Je suis en train de développer un programme sous Mac OS et Linux qui répertorie les fichiers et dossiers du lecteur USB. J'ai besoin d'obtenir certains événements lorsque le périphérique USB est connecté et retiré. Je sais que sous Mac OS X je peux utiliser IOKit. Mais je ne sais pas comment obtenir le point de montage où l'appareil est monté. Puis-je l'obtenir en utilisant IOkit? Existe-t-il une solution multiplateforme pour Linux et Mac?Obtention du point de montage lors de l'insertion d'un périphérique USB Mac OS X et Linux

Répondre

0

Non, il n'y en a pas. Sous Linux, vous pouvez utiliser les interfaces HAL ou DeviceKit-disks D-Bus. Notez que ce sont des composants facultatifs et peuvent être absents. HAL est plus ancien et les DeviceKit-disks sont des implémentations plus récentes, avec DK-d remplaçant HAL.

+0

Merci beaucoup pour la réponse. En général, comment obtenir le chemin de montage d'un périphérique USB (j'utilise des iPods) sur Mac. J'utilise IOServiceMatching (kIOUSBDeviceClassName) et IOServiceAddMatchingNotification pour écouter les notifications d'ajout/suppression de périphérique USB. Une fois que je reçois la notification que je utilise IORegistryEntryCreateCFProperty (\t \t \t \t \t \t \t \t \t \t \t dispositif \t, \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t RRACC (kIOBSDNameKey), \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t kCFAllocatorDefault, 0); pour obtenir le nom de l'appareil. Mais cet appel renvoie NULL. – wantro

+0

Suite du commentaire précédent ... Lorsque j'ai utilisé IORegistryEntrySearchCFProperty (e, kIOServicePlane, CFSTR (kIOBSDNameKey), NULL, bits); Je reçois le nom BSD en tant que disk2. Est-ce ainsi que je devrais obtenir le nom BSD? Parce que le profler du système montre le périphérique en tant que/dev/disk2s1 – wantro

0

L'approche que j'ai utilisée pour obtenir les points de montage disponibles (avec Java) redirige la sortie de la commande "system_profiler SPUSBDataType -xml" vers le processeur dd-plist. Il récursive par la suite sur la hiérarchie USB, correspondant à ceux ayant une clé "volumes". Récupérez la clé "mount_point" pour chaque élément de ce tableau afin de récupérer l'emplacement où il est monté. Voir l'exemple de code ci-dessous:

/* 
Copyright © 2014 Edwin de Jong. All Rights Reserved. 

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 

3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. 

THIS SOFTWARE IS PROVIDED BY [LICENSOR] "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 

*/ 
package nl.topicuszorg.laos.util.osx; 

import java.io.IOException; 
import java.io.InputStream; 
import java.text.ParseException; 
import java.util.List; 
import java.util.Map; 

import javax.xml.parsers.ParserConfigurationException; 

import nl.topicuszorg.laos.model.response.MountState; 
import nl.topicuszorg.laos.model.response.MountedDevice; 

import org.xml.sax.SAXException; 

import com.dd.plist.NSArray; 
import com.dd.plist.NSDictionary; 
import com.dd.plist.NSObject; 
import com.dd.plist.NSString; 
import com.dd.plist.PropertyListFormatException; 
import com.dd.plist.PropertyListParser; 
import com.google.common.collect.ImmutableList; 
import com.google.common.collect.ImmutableList.Builder; 

public class USBHelpers 
{ 
    private static final String SYSTEM_PROFILER_COMMAND = "/usr/sbin/system_profiler"; 

    private static final String SPUSB_DATA_TYPE = "SPUSBDataType"; 

    private interface SpUSBDataTypeIdentifiers 
    { 
    String ITEMS = "_items"; 

    String VOLUMES = "volumes"; 

    String VENDOR_ID = "vendor_id"; 

    String MOUNT_POINT = "mount_point"; 

    String NAME = "_name"; 
    } 

    public static List<MountedDevice> findMountedDevicesOsX() throws IOException, PropertyListFormatException, 
    ParseException, ParserConfigurationException, SAXException 
    { 
    final Process process = new ProcessBuilder(SYSTEM_PROFILER_COMMAND, SPUSB_DATA_TYPE, "-xml") 
     .start(); 
    return findMountedDevicesInConfiguration(process.getInputStream()); 
    } 

    private static List<MountedDevice> findMountedDevicesInConfiguration(final InputStream processInputStream) 
    throws IOException, PropertyListFormatException, ParseException, ParserConfigurationException, SAXException 
    { 
    // Root is an array, the USB devices are hierarchical in _items (and eg. _items(0)._items) 
    final NSArray array = (NSArray) (PropertyListParser.parse(processInputStream)); 
    final NSDictionary dict = (NSDictionary) array.objectAtIndex(0); 
    final NSArray itemsArray = (NSArray) dict.get(SpUSBDataTypeIdentifiers.ITEMS); 
    return recurseUSBDevices(itemsArray); 
    } 

    public static List<MountedDevice> recurseUSBDevices(NSArray items) 
    { 
    final Builder<MountedDevice> builder = ImmutableList.builder(); 
    for (NSObject item : items.getArray()) 
    { 
     builder.addAll(recurseUSBDevice((NSDictionary) item)); 
    } 

    return builder.build(); 
    } 

    private static List<MountedDevice> recurseUSBDevice(final NSDictionary dict) 
    { 
    final Builder<MountedDevice> builder = ImmutableList.builder(); 
    for (final Map.Entry<String, NSObject> entry : dict.entrySet()) 
    { 
     if (entry.getKey().equals(SpUSBDataTypeIdentifiers.ITEMS)) 
     { 
     // The USB device is a hub 
     builder.addAll(recurseUSBDevices((NSArray) entry.getValue())); 
     } 
     if (entry.getKey().equals(SpUSBDataTypeIdentifiers.VOLUMES)) 
     { 
     // This is a mountable device. We need to get the volumes, and for each volume, return it. 
     List<MountedDevice> mountedDeviceOpt = parseVolumes((NSArray) (entry.getValue())); 
     for (MountedDevice mountedDevice : mountedDeviceOpt) 
     { 
      mountedDevice.setVendorId(((NSString) dict.get(SpUSBDataTypeIdentifiers.VENDOR_ID)).toString()); 
      builder.add(mountedDevice); 
     } 
     } 
    } 
    return builder.build(); 
    } 

    private static List<MountedDevice> parseVolumes(final NSArray nsArray) 
    { 
    final Builder<MountedDevice> builder = ImmutableList.builder(); 
    for (final NSObject item : nsArray.getArray()) 
    { 
     builder.add(parseVolume((NSDictionary) item)); 
    } 
    return builder.build(); 

    } 

    private static MountedDevice parseVolume(final NSDictionary item) 
    { 
    final String mountPoint = ((NSString) item.get(SpUSBDataTypeIdentifiers.MOUNT_POINT)).toString(); 
    final String name = ((NSString) item.get(SpUSBDataTypeIdentifiers.NAME)).toString(); 
    return new MountedDevice(mountPoint, name, null, null, MountState.MOUNTED); 
    } 

} 
Questions connexes