views:

206

answers:

1

Ultimately I want to determine if the machine my program is running on is a laptop or desktop. I'd like to do this with JNA and msn's PowrProf lib, GetPwrCapabilities Function using the LidPresent flag.

Part of the SYSTEM_POWER_CAPABILITIES struct (which is the argument for the GetPwrCapabilities method)

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

The SYSTEM_POWER_STATE enum:

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;

The enum was explained here on SO but I'm not sure if I'm doing this right because I get this error: Exception in thread "main" java.lang.IllegalArgumentException: Invalid Structure field in class JNAPlayground$PowrProf$SYSTEM_POWER_CAPABILITIES, field name 'AcOnLineWake', interface JNAPlayground$PowrProf$SYSTEM_POWER_STATE: The type "JNAPlayground$PowrProf$SYSTEM_POWER_STATE" is not supported: Native size for type "JNAPlayground$PowrProf$SYSTEM_POWER_STATE" is unknown

Could you please guide me or point me in the right direction for:
- The arrays
- The enum(if I have this wrong)
- If I'm not importing enough libraries

My java code so thus far:

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 );
}

Thanks, Erik

A: 

After google the h**l out of this, I tried revisiting jna's main web page and ignoring the other enum question here on SO. The mapping of the enum is here. My code is now showing that a lid is present!

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);
    }
}
Erik B
This code runs, but it outputs "Lid present:true" on every computer I run it on.
Erik B