mirror of
https://github.com/Maschell/HIDtoVPADNetworkClient.git
synced 2024-11-22 05:59:16 +01:00
[Linux] Add warning for users without required udev rule
This commit is contained in:
parent
29fe7917a0
commit
b94ed1cc9a
@ -25,10 +25,15 @@ import java.io.IOException;
|
|||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
import lombok.Synchronized;
|
import lombok.Synchronized;
|
||||||
|
import lombok.extern.java.Log;
|
||||||
import net.ash.HIDToVPADNetworkClient.hid.HidDevice;
|
import net.ash.HIDToVPADNetworkClient.hid.HidDevice;
|
||||||
|
import net.ash.HIDToVPADNetworkClient.util.MessageBox;
|
||||||
|
import net.ash.HIDToVPADNetworkClient.util.MessageBoxManager;
|
||||||
|
import net.ash.HIDToVPADNetworkClient.util.Settings;
|
||||||
import purejavahidapi.HidDeviceInfo;
|
import purejavahidapi.HidDeviceInfo;
|
||||||
import purejavahidapi.InputReportListener;
|
import purejavahidapi.InputReportListener;
|
||||||
|
|
||||||
|
@Log
|
||||||
class PureJavaHidDevice implements HidDevice, InputReportListener {
|
class PureJavaHidDevice implements HidDevice, InputReportListener {
|
||||||
private purejavahidapi.HidDevice myDevice = null;
|
private purejavahidapi.HidDevice myDevice = null;
|
||||||
private final purejavahidapi.HidDeviceInfo myDeviceInfo;
|
private final purejavahidapi.HidDeviceInfo myDeviceInfo;
|
||||||
@ -56,6 +61,7 @@ class PureJavaHidDevice implements HidDevice, InputReportListener {
|
|||||||
return myDeviceInfo.getProductId();
|
return myDeviceInfo.getProductId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean hasShownUdevErrorMessage = false;
|
||||||
@Override
|
@Override
|
||||||
public boolean open() {
|
public boolean open() {
|
||||||
boolean result = true;
|
boolean result = true;
|
||||||
@ -64,7 +70,17 @@ class PureJavaHidDevice implements HidDevice, InputReportListener {
|
|||||||
myDevice.setInputReportListener(this);
|
myDevice.setInputReportListener(this);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
result = false;
|
result = false;
|
||||||
e.printStackTrace();
|
if (e.getMessage().contains("errno 13") && Settings.isLinux()) {
|
||||||
|
if (!hasShownUdevErrorMessage) {
|
||||||
|
hasShownUdevErrorMessage = true;
|
||||||
|
String msg = "Could not access HID devices.\nTo fix this, please add the following udev rule:\n\nKERNEL==\"hidraw*\", SUBSYSTEM==\"hidraw\", MODE=\"0664\", GROUP=\"plugdev\"\n\nThis will allow everyone to read from HIDs, and users in the group \"plugdev\" to read and write.\nIt's reccomended to add yourself to this group.\n\nHID To VPAD Network Client will be unable to use HIDs until this issue is resolved.";
|
||||||
|
MessageBoxManager.addMessageBox(new MessageBox(msg, MessageBox.MESSAGE_ERROR));
|
||||||
|
log.severe(msg);
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user