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

gurux.dlms.GXDLMSLNParameters Maven / Gradle / Ivy

The newest version!
//
// --------------------------------------------------------------------------
//  Gurux Ltd
// 
//
//
// Filename:        $HeadURL$
//
// Version:         $Revision$,
//                  $Date$
//                  $Author$
//
// Copyright (c) Gurux Ltd
//
//---------------------------------------------------------------------------
//
//  DESCRIPTION
//
// This file is a part of Gurux Device Framework.
//
// Gurux Device Framework is Open Source 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; version 2 of the License.
// Gurux Device Framework 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.
//
// More information of Gurux products: https://www.gurux.org
//
// This code is licensed under the GNU General Public License v2. 
// Full text may be retrieved at http://www.gnu.org/licenses/gpl-2.0.txt
//---------------------------------------------------------------------------

package gurux.dlms;

import gurux.dlms.enums.Command;

/**
 * LN Parameters
 */
class GXDLMSLNParameters {
    /**
     * DLMS settings.
     */
    private GXDLMSSettings settings;
    /**
     * DLMS Command.
     */
    int command;
    /**
     * DLMS ciphered Command.
     */
    int cipheredCommand;
    /**
     * Request type.
     */
    private int requestType;
    /**
     * Attribute descriptor.
     */
    private GXByteBuffer attributeDescriptor;
    /**
     * Data.
     */
    private GXByteBuffer data;
    /**
     * Send date and time. This is used in Data notification messages.
     */
    private GXDateTime time;
    /**
     * Reply status.
     */
    private int status;
    /**
     * Are there more data to send or more data to receive.
     */
    private boolean multipleBlocks;
    /**
     * Is this last block in send.
     */
    private boolean lastBlock;
    /**
     * Block index.
     */
    int blockIndex;

    /*
     * GBT block number.
     */
    int blockNumber;

    /*
     * Block number ack.
     */
    public int blockNumberAck;

    /**
     * Invoke ID.
     */
    private long invokeId;

    /**
     * GBT window size.
     */
    public byte windowSize;

    /**
     * Is GBT streaming used.
     */
    public boolean streaming;

    /**
     * Access mode.
     */
    public int accessMode;

    /**
     * Constructor.
     * 
     * @param forSettings
     *            DLMS settings.
     * @param forInvokeId
     *            Invoke ID.
     * @param forCommand
     *            Command.
     * @param forCommandType
     *            Command type.
     * @param forAttributeDescriptor
     *            Attribute descriptor.
     * @param forData
     *            Data.
     * @param forStatus
     *            Status.
     * @param forCipheredCommand
     *            Ciphered command.
     */
    GXDLMSLNParameters(final GXDLMSSettings forSettings, final long forInvokeId,
            final int forCommand, final int forCommandType,
            final GXByteBuffer forAttributeDescriptor, final GXByteBuffer forData,
            final int forStatus, int forCipheredCommand) {
        settings = forSettings;
        invokeId = forInvokeId;
        setBlockIndex(settings.getBlockIndex());
        blockNumberAck = settings.getBlockNumberAck();
        command = forCommand;
        cipheredCommand = forCipheredCommand;
        setRequestType(forCommandType);
        attributeDescriptor = forAttributeDescriptor;
        data = forData;
        setTime(null);
        setStatus(forStatus);
        setMultipleBlocks(forSettings.getCount() != forSettings.getIndex());
        setLastBlock(forSettings.getCount() == forSettings.getIndex());
        windowSize = 1;
        if (settings != null) {
            settings.setCommand(forCommand);
            if (forCommand == Command.GET_REQUEST
                    && forCommandType != GetCommandType.NEXT_DATA_BLOCK) {
                settings.setCommandType((byte) forCommandType);
            }
        }
    }

    /**
     * @return DLMS settings.
     */
    public GXDLMSSettings getSettings() {
        return settings;
    }

    /**
     * @return DLMS Command.
     */
    public int getCommand() {
        return command;
    }

    /**
     * @return Ciphered DLMS Command.
     */
    public int getCipheredCommand() {
        return cipheredCommand;
    }

    /**
     * @return Request type.
     */
    public int getRequestType() {
        return requestType;
    }

    /**
     * @param value
     *            the requestType to set
     */
    public final void setRequestType(final int value) {
        requestType = value;
    }

    /**
     * @return the attributeDescriptor
     */
    public GXByteBuffer getAttributeDescriptor() {
        return attributeDescriptor;
    }

    /**
     * @return the data
     */
    public GXByteBuffer getData() {
        return data;
    }

    /**
     * @return the time
     */
    public GXDateTime getTime() {
        return time;
    }

    /**
     * @param value
     *            the time to set
     */
    public final void setTime(final GXDateTime value) {
        time = value;
    }

    /**
     * @return Status.
     */
    public int getStatus() {
        return status;
    }

    /**
     * @param value
     *            Status to set
     */
    public final void setStatus(final int value) {
        status = value;
    }

    /**
     * @return the multipleBlocks
     */
    public boolean isMultipleBlocks() {
        return multipleBlocks;
    }

    /**
     * @param value
     *            the multipleBlocks to set
     */
    void setMultipleBlocks(final boolean value) {
        multipleBlocks = value;
    }

    /**
     * @return the lastBlock
     */
    boolean isLastBlock() {
        return lastBlock;
    }

    /**
     * @param value
     *            Block index.
     */
    void setLastBlock(final boolean value) {
        lastBlock = value;
    }

    /**
     * @return Block index.
     */
    public int getBlockIndex() {
        return blockIndex;
    }

    /**
     * @param value
     *            the blockIndex to set
     */
    void setBlockIndex(final int value) {
        blockIndex = value;
    }

    /**
     * @return Get Invoke ID and priority. This can be used for Priority
     *         Management.
     */
    public final long getInvokeId() {
        return invokeId;
    }

    /**
     * @param value
     *            Set Invoke ID and priority. This can be used for Priority
     *            Management.
     */
    public final void setInvokeId(final long value) {
        invokeId = value;
    }

    /**
     * @return GBT block number.
     */
    public final int getBlockNumber() {
        return blockNumber;
    }

    /**
     * @param value
     *            GBT block number.
     */
    final void setBlockNumber(final int value) {
        blockNumber = value;
    }

    /**
     * @return GBT block number ACK.
     */
    public final int getBlockNumberAck() {
        return blockNumberAck;
    }

    /**
     * @param value
     *            GBT block number ACK.
     */
    final void setBlockNumberAck(final int value) {
        blockNumberAck = value;
    }

    /**
     * @return Is GBT streaming in use.
     */
    public final boolean getStreaming() {
        return streaming;
    }

    /**
     * @param value
     *            Is GBT streaming in use.
     */
    final void setStreaming(boolean value) {
        streaming = value;
    }

    /**
     * @return GBT Window size. This is for internal use.
     */
    public final byte getWindowSize() {
        return windowSize;
    }

    /**
     * @param value
     *            GBT Window size. This is for internal use.
     */
    public final void setWindowSize(byte value) {
        windowSize = value;
    }

    /**
     * @return Is GBT streaming.
     * @deprecated use {@link #isStreaming} instead.
     */
    @Deprecated
    public final boolean IsStreaming() {
        return isStreaming();
    }

    /**
     * @return Is GBT streaming.
     */
    public final boolean isStreaming() {
        return getStreaming() && (getBlockNumberAck() * getWindowSize()) + 1 > getBlockNumber();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy