1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_idlc.hxx"
26 
27 #include "idlc/aststructinstance.hxx"
28 
29 #include "idlc/asttype.hxx"
30 #include "idlc/idlctypes.hxx"
31 
32 #include "rtl/strbuf.hxx"
33 #include "rtl/string.hxx"
34 
35 namespace {
36 
createName(AstType const * typeTemplate,DeclList const * typeArguments)37 rtl::OString createName(
38     AstType const * typeTemplate, DeclList const * typeArguments)
39 {
40     rtl::OStringBuffer buf(typeTemplate->getScopedName());
41     if (typeArguments != 0) {
42         buf.append('<');
43         for (DeclList::const_iterator i(typeArguments->begin());
44              i != typeArguments->end(); ++i)
45         {
46             if (i != typeArguments->begin()) {
47                 buf.append(',');
48             }
49             if (*i != 0) {
50                 buf.append((*i)->getScopedName());
51             }
52         }
53         buf.append('>');
54     }
55     return buf.makeStringAndClear();
56 }
57 
58 }
59 
AstStructInstance(AstType const * typeTemplate,DeclList const * typeArguments,AstScope * scope)60 AstStructInstance::AstStructInstance(
61     AstType const * typeTemplate, DeclList const * typeArguments,
62     AstScope * scope):
63     AstType(
64         NT_instantiated_struct, createName(typeTemplate, typeArguments), scope),
65     m_typeTemplate(typeTemplate), m_typeArguments(*typeArguments)
66 {}
67