ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.vci.corba.common.data;
 
/**
 * Generated from IDL alias "longSeq".
 *
 * @author JacORB IDL compiler V 3.9
 * @version generated at 2022-12-23 15:42:24
 */
 
public abstract class longSeqHelper
{
    private volatile static org.omg.CORBA.TypeCode _type;
 
    public static void insert (org.omg.CORBA.Any any, int[] s)
    {
        any.type (type ());
        write (any.create_output_stream (), s);
    }
 
    public static int[] extract (final org.omg.CORBA.Any any)
    {
        if ( any.type().kind() == org.omg.CORBA.TCKind.tk_null)
        {
            throw new org.omg.CORBA.BAD_OPERATION ("Can't extract from Any with null type.");
        }
        return read (any.create_input_stream ());
    }
 
    public static org.omg.CORBA.TypeCode type ()
    {
        if (_type == null)
        {
            synchronized(longSeqHelper.class)
            {
                if (_type == null)
                {
                    _type = org.omg.CORBA.ORB.init().create_alias_tc(com.vci.corba.common.data.longSeqHelper.id(), "longSeq",org.omg.CORBA.ORB.init().create_sequence_tc(0, org.omg.CORBA.ORB.init().get_primitive_tc(org.omg.CORBA.TCKind.from_int(3))));
                }
            }
        }
        return _type;
    }
 
    public static String id()
    {
        return "IDL:com/vci/corba/common/data/longSeq:1.0";
    }
    public static int[] read (final org.omg.CORBA.portable.InputStream _in)
    {
        int[] _result;
        int _l_result4 = _in.read_long();
        try
        {
             int x = _in.available();
             if ( x > 0 && _l_result4 > x )
                {
                    throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result4);
                }
        }
        catch (java.io.IOException e)
        {
        }
        _result = new int[_l_result4];
        _in.read_long_array(_result,0,_l_result4);
        return _result;
    }
 
    public static void write (final org.omg.CORBA.portable.OutputStream _out, int[] _s)
    {
        
        _out.write_long(_s.length);
        _out.write_long_array(_s,0,_s.length);
    }
}