Package org.jacorb.orb.giop

Source Code of org.jacorb.orb.giop.LocateReplyOutputStream

package org.jacorb.orb.giop;
/*
*        JacORB - a free Java ORB
*
*   Copyright (C) 1997-2014 Gerald Brose / The JacORB Team.
*
*   This library is free software; you can redistribute it and/or
*   modify it under the terms of the GNU Library General Public
*   License as published by the Free Software Foundation; either
*   version 2 of the License, or (at your option) any later version.
*
*   This library 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
*   Library General Public License for more details.
*
*   You should have received a copy of the GNU Library General Public
*   License along with this library; if not, write to the Free
*   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.ORB;
import org.omg.GIOP.LocateReplyHeader_1_0;
import org.omg.GIOP.LocateReplyHeader_1_0Helper;
import org.omg.GIOP.LocateReplyHeader_1_2;
import org.omg.GIOP.LocateReplyHeader_1_2Helper;
import org.omg.GIOP.LocateStatusType_1_0;
import org.omg.GIOP.LocateStatusType_1_2;
import org.omg.GIOP.MsgType_1_1;

/**
* @author Gerald Brose, FU Berlin
*
*/

public class LocateReplyOutputStream
    extends MessageOutputStream
{
    public LocateReplyOutputStream ( ORB orb,
                                     int request_id,
                                     int status,
                                     int giop_minor )
    {
        super(orb);

        setGIOPMinor( giop_minor );

        writeGIOPMsgHeader( MsgType_1_1._LocateReply, giop_minor );

        switch( giop_minor )
        {
            case 0 :
            {
                // GIOP 1.0 Reply == GIOP 1.1 Reply, fall through
            }
            case 1 :
            {
                //this currently doesn't work because GIOP.idl only
                //allows either LocateStatusType_1_0 or
                //LocateStatusType_1_2, but not both. The only solution
                //would be to go low-level and write directly to the
                //stream

                //GIOP 1.1
                LocateReplyHeader_1_0 repl_hdr =
                new LocateReplyHeader_1_0( request_id,
                                           LocateStatusType_1_0.from_int( status ));

                LocateReplyHeader_1_0Helper.write( this, repl_hdr );

                break;
            }
            case 2 :
            {
                //GIOP 1.2
                LocateReplyHeader_1_2 repl_hdr =
                new LocateReplyHeader_1_2( request_id,
                                           LocateStatusType_1_2.from_int( status ));

                LocateReplyHeader_1_2Helper.write( this, repl_hdr );

                break;
            }
            default :
            {
                throw new MARSHAL( "Unknown GIOP minor: " + giop_minor );
            }
        }
    }
}
TOP

Related Classes of org.jacorb.orb.giop.LocateReplyOutputStream

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.