mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-01-31 01:15:24 +01:00
93 lines
2.3 KiB
C++
93 lines
2.3 KiB
C++
/* PCSX2 - PS2 Emulator for PCs
|
|
* Copyright (C) 2002-2020 PCSX2 Dev Team
|
|
*
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "PrecompiledHeader.h"
|
|
#include "CDVD/CDVDdiscReader.h"
|
|
|
|
#ifdef __linux__
|
|
#include <libudev.h>
|
|
#include <linux/cdrom.h>
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
#include <unistd.h>
|
|
|
|
std::vector<std::string> GetOpticalDriveList()
|
|
{
|
|
#ifdef __linux__
|
|
udev* udev_context = udev_new();
|
|
if (!udev_context)
|
|
return {};
|
|
|
|
std::vector<std::string> drives;
|
|
udev_enumerate* enumerate = udev_enumerate_new(udev_context);
|
|
if (enumerate)
|
|
{
|
|
udev_enumerate_add_match_subsystem(enumerate, "block");
|
|
udev_enumerate_add_match_property(enumerate, "ID_CDROM_DVD", "1");
|
|
udev_enumerate_scan_devices(enumerate);
|
|
udev_list_entry* devices = udev_enumerate_get_list_entry(enumerate);
|
|
|
|
udev_list_entry* dev_list_entry;
|
|
udev_list_entry_foreach(dev_list_entry, devices)
|
|
{
|
|
const char* path = udev_list_entry_get_name(dev_list_entry);
|
|
udev_device* device = udev_device_new_from_syspath(udev_context, path);
|
|
const char* devnode = udev_device_get_devnode(device);
|
|
if (devnode)
|
|
drives.push_back(devnode);
|
|
udev_device_unref(device);
|
|
}
|
|
udev_enumerate_unref(enumerate);
|
|
}
|
|
udev_unref(udev_context);
|
|
|
|
return drives;
|
|
#else
|
|
return {};
|
|
#endif
|
|
}
|
|
|
|
void GetValidDrive(std::string& drive)
|
|
{
|
|
if (!drive.empty())
|
|
{
|
|
#ifdef __linux__
|
|
int fd = open(drive.c_str(), O_RDONLY | O_NONBLOCK);
|
|
if (fd != -1)
|
|
{
|
|
if (ioctl(fd, CDROM_GET_CAPABILITY, 0) == -1)
|
|
drive.clear();
|
|
close(fd);
|
|
}
|
|
else
|
|
{
|
|
drive.clear();
|
|
}
|
|
#else
|
|
drive.clear();
|
|
#endif
|
|
}
|
|
if (drive.empty())
|
|
{
|
|
auto drives = GetOpticalDriveList();
|
|
if (!drives.empty())
|
|
drive = drives.front();
|
|
}
|
|
if (!drive.empty())
|
|
printf(" * CDVD: Opening drive '%s'...\n", drive.c_str());
|
|
}
|