All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oshi.hardware.platform.windows.WindowsBaseboard Maven / Gradle / Ivy

There is a newer version: 6.6.4
Show newest version
/**
 * Oshi (https://github.com/oshi/oshi)
 *
 * Copyright (c) 2010 - 2018 The Oshi Project Team
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Maintainers:
 * dblock[at]dblock[dot]org
 * widdis[at]gmail[dot]com
 * enrico.bianchi[at]gmail[dot]com
 *
 * Contributors:
 * https://github.com/oshi/oshi/graphs/contributors
 */
package oshi.hardware.platform.windows;

import oshi.hardware.common.AbstractBaseboard;
import oshi.util.platform.windows.WmiUtil;
import oshi.util.platform.windows.WmiUtil.ValueType;
import oshi.util.platform.windows.WmiUtil.WmiProperty;
import oshi.util.platform.windows.WmiUtil.WmiQuery;
import oshi.util.platform.windows.WmiUtil.WmiResult;

/**
 * Baseboard data obtained from WMI
 *
 * @author widdis [at] gmail [dot] com
 */
public class WindowsBaseboard extends AbstractBaseboard {

    private static final long serialVersionUID = 1L;

    enum BaseboardProperty implements WmiProperty {
        MANUFACTURER(ValueType.STRING), //
        MODEL(ValueType.STRING), //
        VERSION(ValueType.STRING), //
        SERIALNUMBER(ValueType.STRING);

        private ValueType type;

        BaseboardProperty(ValueType type) {
            this.type = type;
        }

        @Override
        public ValueType getType() {
            return this.type;
        }
    }

    WindowsBaseboard() {
        init();
    }

    private void init() {
        WmiQuery baseboardQuery = WmiUtil.createQuery("Win32_BaseBoard", BaseboardProperty.class);
        WmiResult win32BaseBoard = WmiUtil.queryWMI(baseboardQuery);
        if (win32BaseBoard.getResultCount() > 0) {
            setManufacturer((String) win32BaseBoard.get(BaseboardProperty.MANUFACTURER).get(0));
            setModel((String) win32BaseBoard.get(BaseboardProperty.MODEL).get(0));
            setVersion((String) win32BaseBoard.get(BaseboardProperty.VERSION).get(0));
            setSerialNumber((String) win32BaseBoard.get(BaseboardProperty.SERIALNUMBER).get(0));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy