summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/sequence.idl
blob: 3e5b9415ed9372b497371a87d025352c6194009b (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/IDL_Test
//
// = FILENAME
//    sequence.idl
//
// = DESCRIPTION
//    This file contains examples of IDL code that has
//    caused problems in the past for the TAO IDL
//    compiler. This test is to make sure the problems
//    stay fixed.
//
// = AUTHORS
//    Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
//
// ============================================================================

#include "tao/OctetSeq.pidl"

struct myfoostruct;
typedef sequence<myfoostruct> myfoostructseq;

struct myfoostruct
{
  string str_mem;
  myfoostructseq rec_mem;
};

exception nasty
{
  string id;
  myfoostruct rec_info;
};

// This will produce a link error if a handcraft we have added to
// tao/OctetSeqC.h is ever removed.
typedef sequence<CORBA::OctetSeq> OctetSeqSeq;

// Bounded string elements of a sequence,
// require the use of CORBA_Any::to_char.

interface seqTest
{
  typedef sequence< string<12> > dozens;

  void send_dozen (inout dozens bouquets);
};

local interface seqLocal
{
};

typedef sequence<seqLocal> seqLocalSeq;

// Anonymous sequence members must be unique types even if the
// sequence itself is not, so the member name has been
// incorported into the sequence class name. #if !defined guards
// are generated around code for the inner anonymous sequences.
struct twinStruct
  {
    sequence<sequence<short> > and_;
    sequence<sequence<short> > or_;
  };

// Nested sequences
typedef sequence<sequence<short, 5> > outside;

struct nestedSeqStruct
{
  sequence<sequence<outside>, 7> inside;
};

// Tests deeply nested recursive type.
module Deployment
{
  struct ComponentPackageDescription;

  typedef sequence < ComponentPackageDescription > ComponentPackageDescriptions;

  struct ComponentAssemblyDescription {
    ComponentPackageDescriptions instance;
  };

  typedef sequence < ComponentAssemblyDescription > ComponentAssemblyDescriptions;

  struct NamedImplementationArtifact;

  typedef sequence < NamedImplementationArtifact > NamedImplementationArtifacts;

  struct NamedImplementationArtifact {
    string str;
    NamedImplementationArtifacts dependsOn;
  };

  struct MonolithicImplementationDescription {
    NamedImplementationArtifacts primaryArtifact;
  };

  typedef sequence < MonolithicImplementationDescription > MonolithicImplementationDescriptions;

  struct PackagedComponentImplementation {
    ComponentAssemblyDescriptions assemblyImpl;
    MonolithicImplementationDescriptions monolithicImpl;
  };

  typedef sequence < PackagedComponentImplementation > PackagedComponentImplementations;

  struct ComponentPackageDescription {
    string str;
    PackagedComponentImplementations implementation;
  };
};