xref: /aosp_15_r20/external/protobuf/objectivec/Tests/unittest_cycle.proto (revision 1b3f573f81763fcece89efc2b6a5209149e44ab8)
1*1b3f573fSAndroid Build Coastguard Worker// Protocol Buffers - Google's data interchange format
2*1b3f573fSAndroid Build Coastguard Worker// Copyright 2015 Google Inc.  All rights reserved.
3*1b3f573fSAndroid Build Coastguard Worker//
4*1b3f573fSAndroid Build Coastguard Worker// Redistribution and use in source and binary forms, with or without
5*1b3f573fSAndroid Build Coastguard Worker// modification, are permitted provided that the following conditions are
6*1b3f573fSAndroid Build Coastguard Worker// met:
7*1b3f573fSAndroid Build Coastguard Worker//
8*1b3f573fSAndroid Build Coastguard Worker//     * Redistributions of source code must retain the above copyright
9*1b3f573fSAndroid Build Coastguard Worker// notice, this list of conditions and the following disclaimer.
10*1b3f573fSAndroid Build Coastguard Worker//     * Redistributions in binary form must reproduce the above
11*1b3f573fSAndroid Build Coastguard Worker// copyright notice, this list of conditions and the following disclaimer
12*1b3f573fSAndroid Build Coastguard Worker// in the documentation and/or other materials provided with the
13*1b3f573fSAndroid Build Coastguard Worker// distribution.
14*1b3f573fSAndroid Build Coastguard Worker//     * Neither the name of Google Inc. nor the names of its
15*1b3f573fSAndroid Build Coastguard Worker// contributors may be used to endorse or promote products derived from
16*1b3f573fSAndroid Build Coastguard Worker// this software without specific prior written permission.
17*1b3f573fSAndroid Build Coastguard Worker//
18*1b3f573fSAndroid Build Coastguard Worker// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19*1b3f573fSAndroid Build Coastguard Worker// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20*1b3f573fSAndroid Build Coastguard Worker// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21*1b3f573fSAndroid Build Coastguard Worker// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22*1b3f573fSAndroid Build Coastguard Worker// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23*1b3f573fSAndroid Build Coastguard Worker// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24*1b3f573fSAndroid Build Coastguard Worker// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25*1b3f573fSAndroid Build Coastguard Worker// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26*1b3f573fSAndroid Build Coastguard Worker// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*1b3f573fSAndroid Build Coastguard Worker// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28*1b3f573fSAndroid Build Coastguard Worker// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*1b3f573fSAndroid Build Coastguard Worker
30*1b3f573fSAndroid Build Coastguard Workersyntax = "proto2";
31*1b3f573fSAndroid Build Coastguard Worker
32*1b3f573fSAndroid Build Coastguard Workerpackage protobuf_unittest;
33*1b3f573fSAndroid Build Coastguard Worker
34*1b3f573fSAndroid Build Coastguard Worker// Cycles in the Message graph can cause problems for message class
35*1b3f573fSAndroid Build Coastguard Worker// initialization order.
36*1b3f573fSAndroid Build Coastguard Worker
37*1b3f573fSAndroid Build Coastguard Worker// You can't make a object graph that spans files, so this can only be done
38*1b3f573fSAndroid Build Coastguard Worker// within a single proto file.
39*1b3f573fSAndroid Build Coastguard Worker
40*1b3f573fSAndroid Build Coastguard Workermessage CycleFoo {
41*1b3f573fSAndroid Build Coastguard Worker  optional CycleFoo a_foo = 1;
42*1b3f573fSAndroid Build Coastguard Worker  optional CycleBar a_bar = 2;
43*1b3f573fSAndroid Build Coastguard Worker  optional CycleBaz a_baz = 3;
44*1b3f573fSAndroid Build Coastguard Worker}
45*1b3f573fSAndroid Build Coastguard Worker
46*1b3f573fSAndroid Build Coastguard Workermessage CycleBar {
47*1b3f573fSAndroid Build Coastguard Worker  optional CycleBar a_bar = 1;
48*1b3f573fSAndroid Build Coastguard Worker  optional CycleBaz a_baz = 2;
49*1b3f573fSAndroid Build Coastguard Worker  optional CycleFoo a_foo = 3;
50*1b3f573fSAndroid Build Coastguard Worker}
51*1b3f573fSAndroid Build Coastguard Worker
52*1b3f573fSAndroid Build Coastguard Workermessage CycleBaz {
53*1b3f573fSAndroid Build Coastguard Worker  optional CycleBaz a_baz = 1;
54*1b3f573fSAndroid Build Coastguard Worker  optional CycleFoo a_foo = 2;
55*1b3f573fSAndroid Build Coastguard Worker  optional CycleBar a_bar = 3;
56*1b3f573fSAndroid Build Coastguard Worker}
57