summaryrefslogtreecommitdiff
path: root/unoidl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-22 18:27:43 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-22 19:00:37 +0100
commit9ec37c37b080ac26fde8e0370af44b6858858731 (patch)
tree39e5d4218de4b2eb6e4828ba9391c6eb61a9a2f6 /unoidl
parentbde3b4bb2681f2a1fce423fc600a398940bcf25a (diff)
Fix unoidl sourceprovider polystruct argument checks
Change-Id: Ib7ee3188b87b9b4216214b65347e34970e1b92a5 (cherry picked from commit bd21de41e30e47f7d1c2ff6d4bdcc4a7f0e72103)
Diffstat (limited to 'unoidl')
-rw-r--r--unoidl/source/sourceprovider-parser.y67
1 files changed, 37 insertions, 30 deletions
diff --git a/unoidl/source/sourceprovider-parser.y b/unoidl/source/sourceprovider-parser.y
index ec8108363b26..e377ac4cf9d9 100644
--- a/unoidl/source/sourceprovider-parser.y
+++ b/unoidl/source/sourceprovider-parser.y
@@ -802,6 +802,7 @@ Found findEntity(
}
}
+
bool checkTypeArgument(
YYLTYPE location, yyscan_t yyscanner,
unoidl::detail::SourceProviderType const & type)
@@ -817,11 +818,33 @@ bool checkTypeArgument(
location, yyscanner,
"bad instantiated polymorphic struct type argument");
return false;
+ case unoidl::detail::SourceProviderType::TYPE_SEQUENCE:
+ return checkTypeArgument(location, yyscanner, type.subtypes.front());
default:
return true;
}
}
+bool checkInstantiatedPolymorphicStructTypeArgument(
+ unoidl::detail::SourceProviderType const & type, OUString const & name)
+{
+ if (type.type
+ == unoidl::detail::SourceProviderType::TYPE_INSTANTIATED_POLYMORPHIC_STRUCT)
+ {
+ for (std::vector<unoidl::detail::SourceProviderType>::const_iterator i(
+ type.subtypes.begin());
+ i != type.subtypes.end(); ++i)
+ {
+ if (checkInstantiatedPolymorphicStructTypeArgument(*i, name)
+ || i->getName() == name) // no need to worry about typedef
+ {
+ return true;
+ }
+ }
+ }
+ return false;
+}
+
std::vector<OUString> annotations(bool deprecated) {
std::vector<OUString> ann;
if (deprecated) {
@@ -1161,16 +1184,7 @@ typeParameters:
pad(getCurrentPad<unoidl::detail::SourceProviderPolymorphicStructTypeTemplateEntityPad>(
data));
OUString id(convertName($3));
- if (nameHasSameIdentifierAs(data->currentName, id)) {
- error(
- @3, yyscanner,
- ("polymorphic struct type template " + data->currentName
- + " type parameter " + id
- + " has same unqualified identifer as the type itself"));
- YYERROR;
- }
- if (std::find(
- pad->typeParameters.begin(), pad->typeParameters.end(), id)
+ if (std::find(pad->typeParameters.begin(), pad->typeParameters.end(), id)
!= pad->typeParameters.end())
{
error(
@@ -1189,14 +1203,6 @@ typeParameters:
pad(getCurrentPad<unoidl::detail::SourceProviderPolymorphicStructTypeTemplateEntityPad>(
data));
OUString id(convertName($1));
- if (nameHasSameIdentifierAs(data->currentName, id)) {
- error(
- @1, yyscanner,
- ("polymorphic struct type template " + data->currentName
- + " type parameter " + id
- + " has same unqualified identifer as the type itself"));
- YYERROR;
- }
assert(pad->typeParameters.empty());
pad->typeParameters.push_back(id);
}
@@ -1288,13 +1294,25 @@ structMember:
default:
break;
}
- if (t.getName() == data->currentName) { // no need to worry about typedefs
+ if (t.type != unoidl::detail::SourceProviderType::TYPE_PARAMETER
+ && t.getName() == data->currentName) // no need to worry about typedef
+ {
error(
@2, yyscanner,
("struct/exception type " + data->currentName + " direct member "
+ id + " has same type as the type itself"));
YYERROR;
}
+ if (checkInstantiatedPolymorphicStructTypeArgument(t, data->currentName))
+ {
+ error(
+ @2, yyscanner,
+ ("struct/exception type " + data->currentName + " direct member "
+ + id
+ + (" has instantiated polymorphic struct type that uses the type"
+ " itself as an argument")));
+ YYERROR;
+ }
if (nameHasSameIdentifierAs(data->currentName, id)) {
error(
@3, yyscanner,
@@ -1382,17 +1400,6 @@ structMember:
p2 = dynamic_cast<unoidl::detail::SourceProviderPolymorphicStructTypeTemplateEntityPad *>(
ent->pad.get());
if (p2 != 0) {
- if (std::find(
- p2->typeParameters.begin(), p2->typeParameters.end(), id)
- != p2->typeParameters.end())
- {
- error(
- @3, yyscanner,
- ("polymorphic struct type template " + data->currentName
- + " direct member " + id
- + " has same identifier as a type parameter"));
- YYERROR;
- }
for (std::vector<unoidl::PolymorphicStructTypeTemplateEntity::Member>::iterator i(
p2->members.begin());
i != p2->members.end(); ++i)