summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2014-12-24 18:07:32 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2014-12-24 18:16:23 +0000
commitab627096de1a399132028fbfb75b1ddbf6bda2b6 (patch)
tree3e645f6956d1d7a4a0e8087fadd7dd5e0b8bf86f
parentSupport complex types in rows and parameters (diff)
downloadslicer-ab627096de1a399132028fbfb75b1ddbf6bda2b6.tar.bz2
slicer-ab627096de1a399132028fbfb75b1ddbf6bda2b6.tar.xz
slicer-ab627096de1a399132028fbfb75b1ddbf6bda2b6.zip
Removed the modulePath() hack in favoured of scoped()slicer-0.8.5
Fix issue when extending a class in a different module
-rw-r--r--slicer/slicer/parser.cpp148
-rw-r--r--slicer/slicer/parser.h2
-rw-r--r--slicer/test/preprocessor.cpp2
-rw-r--r--slicer/test/types.ice11
4 files changed, 81 insertions, 82 deletions
diff --git a/slicer/slicer/parser.cpp b/slicer/slicer/parser.cpp
index c7dcec2..1375328 100644
--- a/slicer/slicer/parser.cpp
+++ b/slicer/slicer/parser.cpp
@@ -6,6 +6,7 @@
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/replace.hpp>
+#include <boost/algorithm/string/trim.hpp>
#include <Slice/CPlusPlusUtil.h>
#include <boost/shared_ptr.hpp>
#include <boost/filesystem/convenience.hpp>
@@ -43,10 +44,10 @@ namespace Slicer {
}
if (!conversions.empty()) {
fprintf(cpp, "template<>\nvoid\n");
- fprintf(cpp, "ModelPartForConverted< %s, %s::%s, &%s::%s::%s >::SetValue(ValueSourcePtr vsp)\n",
+ fprintf(cpp, "ModelPartForConverted< %s, %s, &%s >::SetValue(ValueSourcePtr vsp)\n",
Slice::typeToString(type).c_str(),
- modulePath().c_str(), c->name().c_str(),
- modulePath().c_str(), c->name().c_str(), dm->name().c_str());
+ c->scoped().c_str(),
+ dm->scoped().c_str());
fprintf(cpp, "{\n");
BOOST_FOREACH(const auto & conversion, conversions) {
@@ -63,10 +64,10 @@ namespace Slicer {
fprintf(cpp, "}\n\n");
fprintf(cpp, "template<>\nvoid\n");
- fprintf(cpp, "ModelPartForConverted< %s, %s::%s, &%s::%s::%s >::GetValue(ValueTargetPtr vtp)\n",
+ fprintf(cpp, "ModelPartForConverted< %s, %s, &%s >::GetValue(ValueTargetPtr vtp)\n",
Slice::typeToString(type).c_str(),
- modulePath().c_str(), c->name().c_str(),
- modulePath().c_str(), c->name().c_str(), dm->name().c_str());
+ c->scoped().c_str(),
+ dm->scoped().c_str());
fprintf(cpp, "{\n");
BOOST_FOREACH(const auto & conversion, conversions) {
@@ -153,34 +154,34 @@ namespace Slicer {
auto typeName = metaDataValue("slicer:typename:", c->getMetaData());
fprintf(cpp, "static void registerClass_%u() __attribute__ ((constructor(210)));\n", classNo);
fprintf(cpp, "static void registerClass_%u()\n{\n", classNo);
- fprintf(cpp, "\tSlicer::classRefMap()->insert({ \"%s::%s\", [](void * p){ return new ModelPartForClass< %s >(*static_cast< %s *>(p)); } });\n",
- modulePath().c_str(), c->name().c_str(),
+ fprintf(cpp, "\tSlicer::classRefMap()->insert({ \"%s\", [](void * p){ return new ModelPartForClass< %s >(*static_cast< %s *>(p)); } });\n",
+ c->scoped().c_str(),
typeToString(decl).c_str(),
typeToString(decl).c_str());
if (typeName) {
- fprintf(cpp, "\tSlicer::classNameMap()->insert({ \"%s::%s\", \"%s\" });\n",
- modulePath().c_str(), c->name().c_str(),
+ fprintf(cpp, "\tSlicer::classNameMap()->insert({ \"%s\", \"%s\" });\n",
+ c->scoped().c_str(),
typeName->c_str());
}
fprintf(cpp, "}\n\n");
fprintf(cpp, "static void unregisterClass_%u() __attribute__ ((destructor(210)));\n", classNo);
fprintf(cpp, "static void unregisterClass_%u()\n{\n", classNo);
- fprintf(cpp, "\tSlicer::classRefMap()->erase(\"%s::%s\");\n",
- modulePath().c_str(), c->name().c_str());
+ fprintf(cpp, "\tSlicer::classRefMap()->erase(\"%s\");\n",
+ c->scoped().c_str());
if (typeName) {
- fprintf(cpp, "\tSlicer::classNameMap()->left.erase(\"%s::%s\");\n",
- modulePath().c_str(), c->name().c_str());
+ fprintf(cpp, "\tSlicer::classNameMap()->left.erase(\"%s\");\n",
+ c->scoped().c_str());
}
fprintf(cpp, "}\n\n");
fprintf(cpp, "template<>\nTypeId\nModelPartForClass< %s >::GetTypeId() const\n{\n",
typeToString(decl).c_str());
fprintf(cpp, "\tauto id = ModelObject->ice_id();\n");
- fprintf(cpp, "\treturn (id == \"%s::%s\") ? TypeId() : ModelPart::ToExchangeTypeName(id);\n}\n\n",
- modulePath().c_str(), c->name().c_str());
+ fprintf(cpp, "\treturn (id == \"%s\") ? TypeId() : ModelPart::ToExchangeTypeName(id);\n}\n\n",
+ c->scoped().c_str());
- fprintf(cpp, "template<>\nMetadata ModelPartForComplex< %s::%s >::metadata ",
- modulePath().c_str(), c->name().c_str());
+ fprintf(cpp, "template<>\nMetadata ModelPartForComplex< %s >::metadata ",
+ c->scoped().c_str());
copyMetadata(c->getMetaData());
classNo += 1;
@@ -200,8 +201,8 @@ namespace Slicer {
fprintf(cpp, "// Struct %s\n", c->name().c_str());
visitComplexDataMembers(c, c->dataMembers());
- fprintf(cpp, "template<>\nMetadata ModelPartForComplex< %s::%s >::metadata ",
- modulePath().c_str(), c->name().c_str());
+ fprintf(cpp, "template<>\nMetadata ModelPartForComplex< %s >::metadata ",
+ c->scoped().c_str());
copyMetadata(c->getMetaData());
return true;
@@ -213,10 +214,10 @@ namespace Slicer {
if (!cpp) return;
fprintf(cpp, "template<>\n");
- fprintf(cpp, "ModelPartForComplex< %s::%s >::Hooks ",
- modulePath().c_str(), it->name().c_str());
- fprintf(cpp, "ModelPartForComplex< %s::%s >::hooks {\n",
- modulePath().c_str(), it->name().c_str());
+ fprintf(cpp, "ModelPartForComplex< %s >::Hooks ",
+ it->scoped().c_str());
+ fprintf(cpp, "ModelPartForComplex< %s >::hooks {\n",
+ it->scoped().c_str());
BOOST_FOREACH (const auto & dm, dataMembers) {
auto c = Slice::ContainedPtr::dynamicCast(dm->container());
auto t = Slice::TypePtr::dynamicCast(dm->container());
@@ -231,17 +232,17 @@ namespace Slicer {
fprintf(cpp, "< %s >::Hook< %s",
typeToString(it).c_str(),
Slice::typeToString(type, dm->optional()).c_str());
- fprintf(cpp, ", %s::%s, &%s::%s::%s, ",
- modulePath().c_str(), c->name().c_str(),
- modulePath().c_str(), c->name().c_str(), dm->name().c_str());
+ fprintf(cpp, ", %s, &%s, ",
+ boost::algorithm::trim_right_copy_if(dm->container()->thisScope(), ispunct).c_str(),
+ dm->scoped().c_str());
if (dm->optional()) {
fprintf(cpp, "ModelPartForOptional< ");
}
if (!conversions.empty()) {
- fprintf(cpp, "ModelPartForConverted< %s, %s::%s, &%s::%s::%s >",
+ fprintf(cpp, "ModelPartForConverted< %s, %s, &%s >",
Slice::typeToString(type).c_str(),
- modulePath().c_str(), c->name().c_str(),
- modulePath().c_str(), c->name().c_str(), dm->name().c_str());
+ boost::algorithm::trim_right_copy_if(dm->container()->thisScope(), ispunct).c_str(),
+ dm->scoped().c_str());
}
else {
createNewModelPartPtrFor(type);
@@ -268,9 +269,9 @@ namespace Slicer {
fprintf(cpp, "< %s >::HookMetadata< %s",
typeToString(it).c_str(),
Slice::typeToString(type, dm->optional()).c_str());
- fprintf(cpp, ", %s::%s, &%s::%s::%s >::metadata ",
- modulePath().c_str(), c->name().c_str(),
- modulePath().c_str(), c->name().c_str(), dm->name().c_str());
+ fprintf(cpp, ", %s, &%s >::metadata ",
+ boost::algorithm::trim_right_copy_if(dm->container()->thisScope(), ispunct).c_str(),
+ dm->scoped().c_str());
copyMetadata(dm->getMetaData());
}
}
@@ -286,8 +287,8 @@ namespace Slicer {
fprintf(cpp, "// Sequence %s\n", s->name().c_str());
fprintf(cpp, "template<>\n");
- fprintf(cpp, "ModelPartPtr ModelPartForSequence< %s::%s >::GetChild(const std::string & name)\n{\n",
- modulePath().c_str(), s->name().c_str());
+ fprintf(cpp, "ModelPartPtr ModelPartForSequence< %s >::GetChild(const std::string & name)\n{\n",
+ s->scoped().c_str());
auto iname = metaDataValue("slicer:item:", s->getMetaData());
if (iname) {
fprintf(cpp, "\tif (!name.empty() && name != \"%s\") { throw IncorrectElementName(); }\n",
@@ -303,20 +304,20 @@ namespace Slicer {
fprintf(cpp, "<typename element_type::value_type>(sequence.back());\n}\n\n");
fprintf(cpp, "template<>\n");
fprintf(cpp, "ModelPartPtr\n");
- fprintf(cpp, "ModelPartForSequence< %s::%s >::elementModelPart(typename %s::%s::value_type & e) const {\n",
- modulePath().c_str(), s->name().c_str(),
- modulePath().c_str(), s->name().c_str());
+ fprintf(cpp, "ModelPartForSequence< %s >::elementModelPart(typename %s::value_type & e) const {\n",
+ s->scoped().c_str(),
+ s->scoped().c_str());
fprintf(cpp, "\treturn new ");
createNewModelPartPtrFor(etype);
fprintf(cpp, "<typename element_type::value_type>(e);\n}\n\n");
fprintf(cpp, "template<>\n");
auto ename = metaDataValue("slicer:element:", s->getMetaData());
- fprintf(cpp, "std::string ModelPartForSequence< %s::%s >::elementName(\"%s\");\n\n",
- modulePath().c_str(), s->name().c_str(),
+ fprintf(cpp, "std::string ModelPartForSequence< %s >::elementName(\"%s\");\n\n",
+ s->scoped().c_str(),
ename ? ename->c_str() : "element");
- fprintf(cpp, "template<>\nMetadata ModelPartForSequence< %s::%s >::metadata ",
- modulePath().c_str(), s->name().c_str());
+ fprintf(cpp, "template<>\nMetadata ModelPartForSequence< %s >::metadata ",
+ s->scoped().c_str());
copyMetadata(s->getMetaData());
}
@@ -332,34 +333,34 @@ namespace Slicer {
fprintf(cpp, "// Dictionary %s\n", d->name().c_str());
auto iname = metaDataValue("slicer:item:", d->getMetaData());
fprintf(cpp, "template<>\n");
- fprintf(cpp, "std::string ModelPartForDictionary< %s::%s >::pairName(\"%s\");\n\n",
- modulePath().c_str(), d->name().c_str(),
+ fprintf(cpp, "std::string ModelPartForDictionary< %s >::pairName(\"%s\");\n\n",
+ d->scoped().c_str(),
iname ? iname->c_str() : "element");
fprintf(cpp, "template<>\n");
- fprintf(cpp, "ModelPartForComplex< ModelPartForDictionaryElement< %s::%s > >::Hooks ",
- modulePath().c_str(), d->name().c_str());
- fprintf(cpp, "ModelPartForComplex< ModelPartForDictionaryElement< %s::%s > >::hooks {\n",
- modulePath().c_str(), d->name().c_str());
+ fprintf(cpp, "ModelPartForComplex< ModelPartForDictionaryElement< %s > >::Hooks ",
+ d->scoped().c_str());
+ fprintf(cpp, "ModelPartForComplex< ModelPartForDictionaryElement< %s > >::hooks {\n",
+ d->scoped().c_str());
auto kname = metaDataValue("slicer:key:", d->getMetaData());
auto vname = metaDataValue("slicer:value:", d->getMetaData());
fprintf(cpp, "\t\t");
auto ktype = d->keyType();
- fprintf(cpp, "new ModelPartForDictionaryElement< %s::%s >::Hook< %s*, ModelPartForDictionaryElement< %s::%s >, &ModelPartForDictionaryElement< %s::%s >::key, ",
- modulePath().c_str(), d->name().c_str(),
+ fprintf(cpp, "new ModelPartForDictionaryElement< %s >::Hook< %s*, ModelPartForDictionaryElement< %s >, &ModelPartForDictionaryElement< %s >::key, ",
+ d->scoped().c_str(),
Slice::typeToString(ktype).c_str(),
- modulePath().c_str(), d->name().c_str(),
- modulePath().c_str(), d->name().c_str());
+ d->scoped().c_str(),
+ d->scoped().c_str());
createNewModelPartPtrFor(ktype);
fprintf(cpp, "< %s > >(\"%s\"),\n\t\t",
Slice::typeToString(ktype).c_str(),
kname ? kname->c_str() : "key");
auto vtype = d->valueType();
- fprintf(cpp, "new ModelPartForDictionaryElement< %s::%s >::Hook< %s*, ModelPartForDictionaryElement< %s::%s >, &ModelPartForDictionaryElement< %s::%s >::value, ",
- modulePath().c_str(), d->name().c_str(),
+ fprintf(cpp, "new ModelPartForDictionaryElement< %s >::Hook< %s*, ModelPartForDictionaryElement< %s >, &ModelPartForDictionaryElement< %s >::value, ",
+ d->scoped().c_str(),
Slice::typeToString(vtype).c_str(),
- modulePath().c_str(), d->name().c_str(),
- modulePath().c_str(), d->name().c_str());
+ d->scoped().c_str(),
+ d->scoped().c_str());
createNewModelPartPtrFor(vtype);
fprintf(cpp, "< %s > >(\"%s\"),\n",
Slice::typeToString(vtype).c_str(),
@@ -367,24 +368,24 @@ namespace Slicer {
fprintf(cpp, "\t};\n");
fprintf(cpp, "\n");
- fprintf(cpp, "template<>\nMetadata ModelPartForDictionary< %s::%s >::metadata ",
- modulePath().c_str(), d->name().c_str());
+ fprintf(cpp, "template<>\nMetadata ModelPartForDictionary< %s >::metadata ",
+ d->scoped().c_str());
copyMetadata(d->getMetaData());
- fprintf(cpp, "template<>\nMetadata ModelPartForComplex<ModelPartForDictionaryElement< %s::%s > >::metadata ",
- modulePath().c_str(), d->name().c_str());
+ fprintf(cpp, "template<>\nMetadata ModelPartForComplex<ModelPartForDictionaryElement< %s > >::metadata ",
+ d->scoped().c_str());
copyMetadata(d->getMetaData());
- fprintf(cpp, "template<>\ntemplate<>\nMetadata\nModelPartForDictionaryElement< %s::%s >::HookMetadata< %s*, ModelPartForDictionaryElement< %s::%s >, &ModelPartForDictionaryElement< %s::%s >::key >::metadata { };\n\n",
- modulePath().c_str(), d->name().c_str(),
+ fprintf(cpp, "template<>\ntemplate<>\nMetadata\nModelPartForDictionaryElement< %s >::HookMetadata< %s*, ModelPartForDictionaryElement< %s >, &ModelPartForDictionaryElement< %s >::key >::metadata { };\n\n",
+ d->scoped().c_str(),
Slice::typeToString(ktype).c_str(),
- modulePath().c_str(), d->name().c_str(),
- modulePath().c_str(), d->name().c_str());
- fprintf(cpp, "template<>\ntemplate<>\nMetadata\nModelPartForDictionaryElement< %s::%s >::HookMetadata< %s*, ModelPartForDictionaryElement< %s::%s >, &ModelPartForDictionaryElement< %s::%s >::value >::metadata { };\n\n",
- modulePath().c_str(), d->name().c_str(),
+ d->scoped().c_str(),
+ d->scoped().c_str());
+ fprintf(cpp, "template<>\ntemplate<>\nMetadata\nModelPartForDictionaryElement< %s >::HookMetadata< %s*, ModelPartForDictionaryElement< %s >, &ModelPartForDictionaryElement< %s >::value >::metadata { };\n\n",
+ d->scoped().c_str(),
Slice::typeToString(vtype).c_str(),
- modulePath().c_str(), d->name().c_str(),
- modulePath().c_str(), d->name().c_str());
+ d->scoped().c_str(),
+ d->scoped().c_str());
}
void
@@ -416,17 +417,6 @@ namespace Slicer {
}
}
- std::string
- Slicer::modulePath() const
- {
- std::string path;
- BOOST_FOREACH (const auto & m, modules) {
- path += "::";
- path += m->name();
- }
- return path;
- }
-
void
Slicer::copyMetadata(const std::list<std::string> & metadata) const
{
diff --git a/slicer/slicer/parser.h b/slicer/slicer/parser.h
index 12193cb..f53e62e 100644
--- a/slicer/slicer/parser.h
+++ b/slicer/slicer/parser.h
@@ -45,8 +45,6 @@ namespace Slicer {
void visitComplexDataMembers(Slice::ConstructedPtr t, const Slice::DataMemberList &) const;
- std::string modulePath() const;
-
void defineConversions(Slice::DataMemberPtr dm) const;
void copyMetadata(const std::list<std::string> & metadata) const;
diff --git a/slicer/test/preprocessor.cpp b/slicer/test/preprocessor.cpp
index 49c5c88..245d742 100644
--- a/slicer/test/preprocessor.cpp
+++ b/slicer/test/preprocessor.cpp
@@ -13,7 +13,7 @@
namespace fs = boost::filesystem;
-const unsigned int COMPONENTS_IN_TEST_ICE = 24;
+const unsigned int COMPONENTS_IN_TEST_ICE = 25;
BOOST_FIXTURE_TEST_SUITE ( preprocessor, FileStructure );
diff --git a/slicer/test/types.ice b/slicer/test/types.ice
index 469886d..761e5e1 100644
--- a/slicer/test/types.ice
+++ b/slicer/test/types.ice
@@ -93,3 +93,14 @@ module TestModule {
Base2 b;
};
};
+
+module TestModule2 {
+ class CrossModule extends TestModule::ClassType {
+ int anything;
+ [ "slicer:conversion:boost.posix_time.ptime:ptimeToDateTime:dateTimeToPTime",
+ "slicer:conversion:std.string:stringToDateTime:dateTimeToString" ]
+ TestModule::DateTime dt;
+ TestModule::Base base;
+ };
+};
+