diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-13 23:46:31 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-13 23:46:31 +0100 |
commit | 04e64790c24f3665bdc7d0720d23079551565ba2 (patch) | |
tree | 7dc3cbdd319bd6b15d16e32f87fdd07384d7eef5 /src/core/model/Domain.hpp | |
parent | c5345f13b3d33630d3e3d0021f10945627ae6e2d (diff) | |
parent | c6b502d45d2bf916f747411df37df186c4ed4981 (diff) |
Merge branch 'master' of somweyr.de:ousia
Diffstat (limited to 'src/core/model/Domain.hpp')
-rw-r--r-- | src/core/model/Domain.hpp | 52 |
1 files changed, 44 insertions, 8 deletions
diff --git a/src/core/model/Domain.hpp b/src/core/model/Domain.hpp index 23a55f3..755ff52 100644 --- a/src/core/model/Domain.hpp +++ b/src/core/model/Domain.hpp @@ -336,19 +336,21 @@ public: * this field. */ const NodeVector<StructuredClass> &getChildren() const { return children; } - + /** * Adds a StructuredClass whose instances shall be allowed as children in * the StructureTree of instances of this field. */ - void addChild(Handle<StructuredClass> c){ children.push_back(c);} - - + void addChild(Handle<StructuredClass> c) { children.push_back(c); } + /** * Adds multiple StructuredClasses whose instances shall be allowed as * children in the StructureTree of instances of this field. */ - void addChildren(const std::vector<Handle<StructuredClass>> &cs){ children.insert(children.end(), cs.begin(), cs.end());} + void addChildren(const std::vector<Handle<StructuredClass>> &cs) + { + children.insert(children.end(), cs.begin(), cs.end()); + } FieldType getFieldType() const { return fieldType; } @@ -391,6 +393,9 @@ private: Owned<StructType> attributesDescriptor; NodeVector<FieldDescriptor> fieldDescriptors; + bool continuePath(Handle<StructuredClass> target, + std::vector<Rooted<Node>> &path) const; + protected: void continueResolve(ResolutionState &state) override; @@ -438,10 +443,40 @@ public: /** * Adds multiple FieldDescriptors to this Descriptor. */ - void addFieldDescriptors(const std::vector<Handle<FieldDescriptor>>& fds) + void addFieldDescriptors(const std::vector<Handle<FieldDescriptor>> &fds) { fieldDescriptors.insert(fieldDescriptors.end(), fds.begin(), fds.end()); } + + /** + * This tries to construct the shortest possible path of this Descriptor + * to the given child Descriptor. As an example consider the book domain + * from above. + * + * First consider the call book->pathTo(chapter). This is an easy example: + * Our path just contains a reference to the default field of book, because + * a chapter may be directly added to the main field of book. + * + * Second consider the call book->pathTo(text). This is somewhat more + * complicated, but it is still a valid request, because we can construct + * the path: {book_main_field, paragraph, paragraph_main_field}. + * This is only valid because paragraph is transparent. + * + * What about the call book->pathTo(section)? This will lead to an empty + * return path (= invalid). We could, of course, in principle construct + * a path between book and section (via chapter), but chapter is not + * transparent. Therefore that path is not allowed. + * + * @param childDescriptor is a supposedly valid child Descriptor of this + * Descriptor. + * @return either a path of FieldDescriptors and + * StructuredClasses between this Descriptor and + * the input StructuredClass or an empty vector if + * no such path can be constructed. + * + */ + std::vector<Rooted<Node>> pathTo( + Handle<StructuredClass> childDescriptor) const; }; typedef RangeSet<size_t> Cardinality; @@ -608,7 +643,7 @@ public: * Adds multiple FieldDescriptors that should allow an instance of this * StructuredClass as a child in the Structure Tree. */ - void addParents(const std::vector<Handle<FieldDescriptor>>& ps) + void addParents(const std::vector<Handle<FieldDescriptor>> &ps) { parents.insert(parents.end(), ps.begin(), ps.end()); } @@ -630,7 +665,8 @@ public: * @param name is a name for this AnnotationClass that will * be used for later references to this * AnnotationClass. - * @param domain is the Domain this AnnotationClass belongs to. + * @param domain is the Domain this AnnotationClass belongs + *to. * @param attributesDescriptor is a StructType that specifies the attribute * keys as well as value domains for this * Descriptor. |