Package rlVizLib.messaging.agentShell

Source Code of rlVizLib.messaging.agentShell.AgentShellTaskSpecCompatResponse

/*
Copyright 2007 Brian Tanner
brian@tannerpages.com
http://brian.tannerpages.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

 
package rlVizLib.messaging.agentShell;

import java.io.DataInputStream;
import java.util.StringTokenizer;

import rlVizLib.messaging.AbstractMessage;
import rlVizLib.messaging.AbstractResponse;
import rlVizLib.messaging.BinaryPayload;
import rlVizLib.messaging.GenericMessage;
import rlVizLib.messaging.MessageUser;
import rlVizLib.messaging.MessageValueType;
import rlVizLib.messaging.NotAnRLVizMessageException;


public class AgentShellTaskSpecCompatResponse extends AbstractResponse{
    private TaskSpecResponsePayload theTaskSpecPayload=null;

    public AgentShellTaskSpecCompatResponse(boolean errorStatus, String errorMessage) {
        this(new TaskSpecResponsePayload(errorStatus,errorMessage));
    }
    public AgentShellTaskSpecCompatResponse(TaskSpecResponsePayload theTaskSpecPayload){
        this.theTaskSpecPayload=theTaskSpecPayload;
    }
    public TaskSpecResponsePayload getTaskSpecPayload(){
        return theTaskSpecPayload;
    }

//  Constructor when the benchmark is interpreting the returned response
    public AgentShellTaskSpecCompatResponse(String theMessage) throws NotAnRLVizMessageException {
        GenericMessage theGenericResponse = new GenericMessage(theMessage);

        String thePayLoadString = theGenericResponse.getPayload();
        DataInputStream DIS=BinaryPayload.getInputStreamFromPayload(thePayLoadString);
        theTaskSpecPayload=new TaskSpecResponsePayload(DIS);
    }

    @Override
    public String makeStringResponse() {
        String encodedPayload=theTaskSpecPayload.getAsEncodedString();

        String theResponse = AbstractMessage.makeMessage(
                MessageUser.kBenchmark.id(),
                MessageUser.kAgentShell.id(),
                AgentShellMessageType.kAgentShellResponse.id(),
                MessageValueType.kStringList.id(),
                encodedPayload);

        return theResponse;
    }
};
TOP

Related Classes of rlVizLib.messaging.agentShell.AgentShellTaskSpecCompatResponse

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.