3 Stimmen

JNA mit komplizierter Struktur

Letztendlich möchte ich feststellen, ob der Rechner, auf dem mein Programm läuft, ein Laptop oder ein Desktop ist. Ich möchte dies mit JNA und der PowrProf-Lib von msn tun, GetPwrCapabilities Funktion unter Verwendung des Flags LidPresent.

Teil des SYSTEM_POWER_CAPABILITIES Struktur (die das Argument für die GetPwrCapabilities() Methode)

  BYTE                    spare2[3];
  BYTE                    spare3[8];
  BATTERY_REPORTING_SCALE BatteryScale[3];
  SYSTEM_POWER_STATE      AcOnLineWake;

Die Aufzählung SYSTEM_POWER_STATE:

typedef enum _SYSTEM_POWER_STATE {
  PowerSystemUnspecified   = 0,
  PowerSystemWorking       = 1,
  PowerSystemSleeping1     = 2,
  PowerSystemSleeping2     = 3,
  PowerSystemSleeping3     = 4,
  PowerSystemHibernate     = 5,
  PowerSystemShutdown      = 6,
  PowerSystemMaximum       = 7 
} SYSTEM_POWER_STATE, *PSYSTEM_POWER_STATE;

Das enum wurde hier auf SO erklärt, aber ich bin nicht sicher, ob ich das richtig mache, weil ich diesen Fehler bekomme:

Ausnahme im Thread "main" java.lang.IllegalArgumentException: Ungültig Strukturfeld in der Klasse JNAPlayground$PowrProf$SYSTEM_POWER_CAPABILITIES, Feldname 'AcOnLineWake', Schnittstelle JNAPlayground$PowrProf$SYSTEM_POWER_STATE: Der Typ "JNAPlayground$PowrProf$SYSTEM_POWER_STATE" wird nicht unterstützt: Native Größe für Typ "JNAPlayground$PowrProf$SYSTEM_POWER_STATE" ist unbekannt

Könnten Sie mich bitte anleiten oder mir die richtige Richtung weisen?
- Die Arrays
- Die Aufzählung (falls ich das falsch verstanden habe)
- Wenn ich nicht genug Bibliotheken importiere

Mein bisheriger Java-Code:

public interface PowrProf extends StdCallLibrary
{
    PowrProf INSTANCE = (PowrProf) Native.loadLibrary(
            "C:\\WINDOWS\\system32\\PowrProf.dll", PowrProf.class);

    public static interface SYSTEM_POWER_STATE
    {
        public static final int owerSystemUnspecified = 0;
        public static final int PowerSystemWorking = 1;
        public static final int PowerSystemSleeping1 = 2;
        public static final int PowerSystemSleeping2 = 3;
        public static final int PowerSystemSleeping3 = 4;
        public static final int PowerSystemHibernate = 5;
        public static final int PowerSystemShutdown = 6;
        public static final int PowerSystemMaximum = 7;

    }

    public static class BATTERY_REPORTING_SCALE extends Structure
    {
        public long Granularity;
        public long Capacity;
    }

    public static class SYSTEM_POWER_CAPABILITIES extends Structure
    {
        public boolean PowerButtonPresent;
        public boolean SleepButtonPresent;
        public boolean LidPresent;
        public boolean SystemS1;
        public boolean SystemS2;
        public boolean SystemS3;
        public boolean SystemS4;
        public boolean SystemS5;
        public boolean HiberFilePresent;
        public boolean FullWake;
        public boolean VideoDimPresent;
        public boolean ApmPresent;
        public boolean UpsPresent;
        public boolean ThermalControl;
        public boolean ProcessorThrottle;
        public int ProcessorMinThrottle;
        public int ProcessorMaxThrottle;
        public boolean FastSystemS4;
        public int spare2[] = new int[3];
        public boolean DiskSpinDown;
        public int spare3[] = new int[8];
        public boolean SystemBatteriesPresent;
        public boolean BatteriesAreShortTerm;
        public BATTERY_REPORTING_SCALE BatteryScale[] =  new BATTERY_REPORTING_SCALE[3];
        public SYSTEM_POWER_STATE AcOnLineWake;
        public SYSTEM_POWER_STATE SoftLidWake;
        public SYSTEM_POWER_STATE RtcWake;
        public SYSTEM_POWER_STATE MinDeviceWakeState;
        public SYSTEM_POWER_STATE DefaultLowLatencyWake;
    }

    void GetPwrCapabilities( SYSTEM_POWER_CAPABILITIES result );
}

Danke! Erik

1voto

Erik B Punkte 2790

Nachdem ich das Ganze gegoogelt habe, habe ich versucht, die Hauptwebseite von jna erneut zu besuchen und die andere enum-Frage hier auf SO zu ignorieren. Das Mapping der enum ist ici . Mein Code zeigt nun an, dass ein Deckel vorhanden ist!

import com.sun.jna.Native;
import com.sun.jna.Structure;
import com.sun.jna.win32.StdCallLibrary;

public class JNAPlayground
{

    public interface PowrProf extends StdCallLibrary
    {
        PowrProf INSTANCE = (PowrProf) Native.loadLibrary(
                "C:\\WINDOWS\\system32\\PowrProf.dll", PowrProf.class);

        public static class BATTERY_REPORTING_SCALE extends Structure
        {
            public long Granularity;
            public long Capacity;
        }

        public static class SYSTEM_POWER_CAPABILITIES extends Structure
        {
            public boolean PowerButtonPresent;
            public boolean SleepButtonPresent;
            public boolean LidPresent;
            public boolean SystemS1;
            public boolean SystemS2;
            public boolean SystemS3;
            public boolean SystemS4;
            public boolean SystemS5;
            public boolean HiberFilePresent;
            public boolean FullWake;
            public boolean VideoDimPresent;
            public boolean ApmPresent;
            public boolean UpsPresent;
            public boolean ThermalControl;
            public boolean ProcessorThrottle;
            public int ProcessorMinThrottle;
            public int ProcessorMaxThrottle;
            public boolean FastSystemS4;
            public int spare2[] = new int[3];
            public boolean DiskSpinDown;
            public int spare3[] = new int[8];
            public boolean SystemBatteriesPresent;
            public boolean BatteriesAreShortTerm;
            public BATTERY_REPORTING_SCALE BatteryScale[] =  new BATTERY_REPORTING_SCALE[3];
            public int AcOnLineWake;
            public int SoftLidWake;
            public int RtcWake;
            public int MinDeviceWakeState;
            public int DefaultLowLatencyWake;
        }

        void GetPwrCapabilities( SYSTEM_POWER_CAPABILITIES result );
    }

    public static void main( String[] args )
    {
        PowrProf lib2 = PowrProf.INSTANCE;
        PowrProf.SYSTEM_POWER_CAPABILITIES systemPOWERCAPABILITIES = new PowrProf.SYSTEM_POWER_CAPABILITIES();
        lib2.GetPwrCapabilities(systemPOWERCAPABILITIES);

        System.out.println("Lid present:" + systemPOWERCAPABILITIES.LidPresent);
    }
}

-1voto

Erik B Punkte 2790
import com.sun.jna.Native;
import com.sun.jna.Structure;
import com.sun.jna.win32.StdCallLibrary;

public class SystemProfilerWindowsImpl
{
  public static void main(String[] args)
  {
    Log.info("SystemProfilerWindowsImpl", "main", "is laptop:" + isLaptop());
  }

  public static boolean isLaptop()
  {
    byte batteryFlag = getBatteryFlag();
    boolean isLaptop = false;

    if (batteryFlag == -128)
    {
      Log.debug("batt flag - no batt");
    }
    else if (batteryFlag == -1)
    {
      Log.debug("batt flag - unknown");
    }
    else
    {
      Log.debug("battery flag " + batteryFlag);
      isLaptop = true;
    }
    return isLaptop;
  }

  private static byte getBatteryFlag()
  {
    Kernel32 lib = Kernel32.INSTANCE;
    SystemProfilerWindowsImpl.Kernel32.SYSTEM_POWER_STATUS status = new SystemProfilerWindowsImpl.Kernel32.SYSTEM_POWER_STATUS();
    lib.GetSystemPowerStatus(status);
    if (status.BatteryLifePercent == -1)
    {
      Log.debug("battery life percent is unknown");
    }
    else
    {
      Log.debug("battery life percent is " + status.BatteryLifePercent);
    }

    byte batteryFlag = status.BatteryFlag;
    return batteryFlag;
  }

  public String getModel()
  {
    if (isLaptop())
    {
      return "WinLaptop";
    }

    return "WinDesktop";
  }

  public static abstract interface Kernel32 extends StdCallLibrary
  {
    public static final Kernel32 INSTANCE = (Kernel32)Native.loadLibrary("kernel32", 
      Kernel32.class);

    public abstract void GetSystemPowerStatus(SYSTEM_POWER_STATUS paramSYSTEM_POWER_STATUS);

    public static class SYSTEM_POWER_STATUS extends Structure
    {
      public byte ACLineStatus;
      public byte BatteryFlag;
      public byte BatteryLifePercent;
      public byte Reserved1;
      public int BatteryLifeTime;
      public int BatteryFullLifeTime;
    }
  }
}

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X