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

org.openmuc.jdlms.internal.DlmsEnumFunctions Maven / Gradle / Ivy

Go to download

jDLMS is a library implementing the DLMS/COSEM (IEC 62056) communication standard.

There is a newer version: 1.8.0
Show newest version
/*
 * Copyright 2012-20 Fraunhofer ISE
 *
 * This file is part of jDLMS.
 * For more information visit http://www.openmuc.org
 *
 * jDLMS is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * jDLMS 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 jDLMS.  If not, see .
 *
 */
package org.openmuc.jdlms.internal;

import java.text.MessageFormat;
import java.util.HashMap;
import java.util.Map;

import org.openmuc.jdlms.datatypes.DlmsEnumeration;
import org.openmuc.jdlms.internal.asn1.axdr.types.AxdrEnum;
import org.openmuc.jdlms.internal.asn1.axdr.types.AxdrInteger;

public class DlmsEnumFunctions {
    public static  & DlmsEnumeration> T enumValueFrom(long code, Class enumClass) {
        return enumValueFrom(new AxdrInteger(code), enumClass);
    }

    public static  AxdrEnum enumToAxdrEnum(T dlmsEnum) {
        return new AxdrEnum(dlmsEnum.getCode());
    }

    public static  & DlmsEnumeration, M extends AxdrInteger> T enumValueFrom(M code,
            Class enumClass) {
        T[] enumConstants = enumClass.getEnumConstants();

        long maskedCode = code.getValue() & 0xFFFFFFFFFFFFFFFFL;
        for (T constant : enumConstants) {
            if (constant.getCode() == maskedCode) {
                return constant;
            }
        }

        // TODO
        String message = MessageFormat.format("No constant with code {0} in {1}.", maskedCode,
                enumClass.getSimpleName());
        throw new IllegalArgumentException(message);
    }

    public static  & DlmsEnumeration> Map generateEnumMap(Class enumClass) {
        T[] enumConstants = enumClass.getEnumConstants();

        HashMap map = new HashMap<>(enumConstants.length);

        for (T constant : enumConstants) {
            map.put(constant.getCode(), constant);
        }

        return map;
    }

    public static  & DlmsEnumeration> T constantFor(Map mapping, Long code, T defaultValue) {
        T constant = mapping.get(code);

        if (constant != null) {
            return constant;
        }
        else {
            return defaultValue;
        }
    }

    private DlmsEnumFunctions() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy