5 Copyright 1992, 1993, 1994 Sun Microsystems, Inc. Printed in the United
6 States of America. All Rights Reserved.
8 This product is protected by copyright and distributed under the following
9 license restricting its use.
11 The Interface Definition Language Compiler Front End (CFE) is made
12 available for your use provided that you include this license and copyright
13 notice on all media and documentation and the software program in which
14 this product is incorporated in whole or part. You may copy and extend
15 functionality (but may not remove functionality) of the Interface
16 Definition Language CFE without charge, but you are not authorized to
17 license or distribute it to anyone else except as part of a product or
18 program developed by you or with the express written consent of Sun
19 Microsystems, Inc. ("Sun").
21 The names of Sun Microsystems, Inc. and any of its subsidiaries or
22 affiliates may not be used in advertising or publicity pertaining to
23 distribution of Interface Definition Language CFE as permitted herein.
25 This license is effective until terminated by Sun for failure to comply
26 with this license. Upon termination, you shall destroy or return all code
27 and documentation for the Interface Definition Language CFE.
29 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES OF
30 ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS
31 FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF
32 DEALING, USAGE OR TRADE PRACTICE.
34 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND WITHOUT
35 ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES OR AFFILIATES
36 TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.
38 SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH
39 RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY
40 INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF.
42 IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR
43 ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL
44 DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
46 Use, duplication, or disclosure by the government is subject to
47 restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
48 Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
51 Sun, Sun Microsystems and the Sun logo are trademarks or registered
52 trademarks of Sun Microsystems, Inc.
56 Mountain View, California 94043
60 SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
61 trademarks or registered trademarks of Sun Microsystems, Inc.
65 // Implementation of a list of utl_string nodes.
67 // NOTE: This list class only works correctly because we use single public
68 // inheritance, as opposed to multiple inheritance or public virtual.
69 // It relies on a type-unsafe cast from UTL_List to subclasses, which
70 // will cease to operate correctly if you use either multiple or
71 // public virtual inheritance.
73 #include "utl_strlist.h"
74 #include "utl_string.h"
76 // FUZZ: disable check_for_streams_include
77 #include "ace/streams.h"
79 #include "ace/OS_Memory.h"
80 #include "ace/OS_NS_string.h"
82 UTL_StrList::UTL_StrList (UTL_String
*s
,
89 UTL_StrList::~UTL_StrList (void)
95 UTL_StrList::head (void)
97 return this->pd_car_data
;
102 UTL_StrList::set_head (UTL_String
*s
)
104 this->pd_car_data
= s
;
107 // Get last item of this list
109 UTL_StrList::last_component (void)
111 if (this->tail () == 0)
116 return ((UTL_StrList
*) this->tail ())->last_component();
121 UTL_StrList::copy (void)
123 UTL_List
*retval
= 0;
125 if (this->tail () == 0)
127 ACE_NEW_RETURN (retval
,
128 UTL_StrList (head (),
134 ACE_NEW_RETURN (retval
,
135 UTL_StrList (head (),
136 (UTL_StrList
*) this->tail ()->copy ()),
144 UTL_StrList::destroy (void)
148 for (UTL_StrlistActiveIterator
i (this); !i
.is_done (); i
.next ())
159 UTL_StrList::dump (ACE_OSTREAM_TYPE
&o
)
165 for (UTL_StrlistActiveIterator
i (this); !i
.is_done(); i
.next ())
173 first
= second
= false;
176 s
= i
.item ()->get_string ();
181 if (ACE_OS::strcmp (s
, "::") != 0)
194 * Redefinition of inherited virtual operations
197 // UTL_StrList active iterator
203 UTL_StrlistActiveIterator::UTL_StrlistActiveIterator (UTL_StrList
*s
)
204 : UTL_ListActiveIterator (s
)
218 UTL_StrlistActiveIterator::item (void)
225 return ((UTL_StrList
*) source
)->head ();
229 * Redefinition of inherited virtual operations