Directory node structure. More...
#include <fiff_dir_node.h>
Public Types | |
| using | SPtr = QSharedPointer<FiffDirNode> |
| using | ConstSPtr = QSharedPointer<const FiffDirNode> |
| using | UPtr = std::unique_ptr<FiffDirNode> |
| using | ConstUPtr = std::unique_ptr<const FiffDirNode> |
Public Member Functions | |
| FiffDirNode () | |
| FiffDirNode (const FiffDirNode *p_FiffDirTree) | |
| ~FiffDirNode () | |
| bool | isEmpty () const |
| QList< FiffDirNode::SPtr > | dir_tree_find (fiff_int_t p_kind) const |
| bool | find_tag (QSharedPointer< FiffStream > &p_pStream, fiff_int_t findkind, std::unique_ptr< FiffTag > &p_pTag) const |
| bool | find_tag (FiffStream *p_pStream, fiff_int_t findkind, std::unique_ptr< FiffTag > &p_pTag) const |
| bool | has_tag (fiff_int_t findkind) |
| bool | has_kind (fiff_int_t p_kind) const |
| void | print (int indent) const |
| fiff_int_t | nent () const |
| fiff_int_t | nchild () const |
Static Public Member Functions | |
| static bool | copy_tree (QSharedPointer< FiffStream > &p_pStreamIn, const FiffId &in_id, const QList< QSharedPointer< FiffDirNode > > &p_Nodes, QSharedPointer< FiffStream > &p_pStreamOut) |
| static void | explain_block (int kind) |
| static void | explain (int kind) |
| static const char * | get_tag_explanation (int kind) |
Public Attributes | |
| fiff_int_t | type |
| FiffId | id |
| QList< FiffDirEntry::SPtr > | dir |
| QList< FiffDirEntry::SPtr > | dir_tree |
| fiff_int_t | nent_tree |
| FiffDirNode::SPtr | parent |
| FiffId | parent_id |
| QList< FiffDirNode::SPtr > | children |
| using FIFFLIB::FiffDirNode::ConstSPtr = QSharedPointer<const FiffDirNode> |
Const shared pointer type for FiffDirNode.
Definition at line 78 of file fiff_dir_node.h.
| using FIFFLIB::FiffDirNode::ConstUPtr = std::unique_ptr<const FiffDirNode> |
Const unique pointer type for FiffDirNode.
Definition at line 80 of file fiff_dir_node.h.
| using FIFFLIB::FiffDirNode::SPtr = QSharedPointer<FiffDirNode> |
Shared pointer type for FiffDirNode.
Definition at line 77 of file fiff_dir_node.h.
| using FIFFLIB::FiffDirNode::UPtr = std::unique_ptr<FiffDirNode> |
Unique pointer type for FiffDirNode.
Definition at line 79 of file fiff_dir_node.h.
| FiffDirNode::FiffDirNode | ( | ) |
Constructors the directory tree structure.
Definition at line 60 of file fiff_dir_node.cpp.
| FiffDirNode::FiffDirNode | ( | const FiffDirNode * | p_FiffDirTree | ) |
Copy constructor.
| [in] | p_FiffDirTree | Directory tree structure which should be copied. |
Definition at line 69 of file fiff_dir_node.cpp.
| FiffDirNode::~FiffDirNode | ( | ) |
Destroys the fiffDirTree.
Definition at line 82 of file fiff_dir_node.cpp.
|
static |
Copies directory subtrees from fidin to fidout
| [in] | p_pStreamIn | fiff file to copy from. |
| [in] | in_id | file id description. |
| [in] | p_Nodes | subtree directories to be copied. |
| [out] | p_pStreamOut | fiff file to write to. |
Definition at line 92 of file fiff_dir_node.cpp.
| QList< FiffDirNode::SPtr > FiffDirNode::dir_tree_find | ( | fiff_int_t | p_kind | ) | const |
Find nodes of the given kind from a directory tree structure
| [in] | p_kind | the given kind. |
Definition at line 178 of file fiff_dir_node.cpp.
|
static |
Try to explain...
| [in] | kind | directory kind. |
Definition at line 291 of file fiff_dir_node.cpp.
|
static |
Try to explain a block...
| [in] | kind | Block kind. |
Definition at line 278 of file fiff_dir_node.cpp.
| bool FIFFLIB::FiffDirNode::find_tag | ( | FiffStream * | p_pStream, |
| fiff_int_t | findkind, | ||
| std::unique_ptr< FiffTag > & | p_pTag ) const |
Definition of the find_tag function in various files e.g. fiff_read_named_matrix.m,
Founds a tag of a given kind within a tree, and reeds it from file. Note: In difference to mne-matlab this is not a static function. This is a method of the FiffDirNode class, that's why a tree object doesn't need to be handed to the function.
| [in] | p_pStream | the opened fif file. |
| [in] | findkind | the kind which should be found. |
| [out] | p_pTag | the found tag. |
|
inline |
Definition of the find_tag function in various files e.g. fiff_read_named_matrix.m,
Founds a tag of a given kind within a tree, and reeds it from file. Note: In difference to mne-matlab this is not a static function. This is a method of the FiffDirNode class, that's why a tree object doesn't need to be handed to the function.
| [in] | p_pStream | the opened fif file. |
| [in] | findkind | the kind which should be found. |
| [out] | p_pTag | the found tag. |
Definition at line 257 of file fiff_dir_node.h.
|
static |
Get textual explanation of a tag
| [in] | kind | directory kind. |
Definition at line 305 of file fiff_dir_node.cpp.
| bool FiffDirNode::has_kind | ( | fiff_int_t | p_kind | ) | const |
Checks whether a FiffDirNode has a specific kind
| [in] | findkind | kind to find. |
Definition at line 221 of file fiff_dir_node.cpp.
| bool FiffDirNode::has_tag | ( | fiff_int_t | findkind | ) |
Definition of the has_tag function in fiff_read_named_matrix.m
| [in] | findkind | kind to find. |
Definition at line 211 of file fiff_dir_node.cpp.
|
inline |
Returns true if directory tree structure contains no data.
Definition at line 121 of file fiff_dir_node.h.
| fiff_int_t FiffDirNode::nchild | ( | ) | const |
Returns the number of child nodes
Definition at line 324 of file fiff_dir_node.cpp.
| fiff_int_t FiffDirNode::nent | ( | ) | const |
Returns the number of entries in this node
Definition at line 317 of file fiff_dir_node.cpp.
| void FiffDirNode::print | ( | int | indent | ) | const |
Prints elements of a tree.
| [in] | indent | number of intendations. |
Definition at line 236 of file fiff_dir_node.cpp.
| QList<FiffDirNode::SPtr> FIFFLIB::FiffDirNode::children |
Child nodes.
Definition at line 248 of file fiff_dir_node.h.
| QList<FiffDirEntry::SPtr> FIFFLIB::FiffDirNode::dir |
Directory of tags in this node.
Definition at line 241 of file fiff_dir_node.h.
| QList<FiffDirEntry::SPtr> FIFFLIB::FiffDirNode::dir_tree |
Directory of tags within this node subtrees as well as FIFF_BLOCK_START and FIFF_BLOCK_END
Definition at line 243 of file fiff_dir_node.h.
| FiffId FIFFLIB::FiffDirNode::id |
Id of this block if any.
Definition at line 240 of file fiff_dir_node.h.
| fiff_int_t FIFFLIB::FiffDirNode::nent_tree |
Number of entries in the directory tree node.
Definition at line 245 of file fiff_dir_node.h.
| FiffDirNode::SPtr FIFFLIB::FiffDirNode::parent |
Parent node.
Definition at line 246 of file fiff_dir_node.h.
| FiffId FIFFLIB::FiffDirNode::parent_id |
Newly added to stay consistent with MATLAB implementation.
Definition at line 247 of file fiff_dir_node.h.
| fiff_int_t FIFFLIB::FiffDirNode::type |
Block type for this directory.
Definition at line 239 of file fiff_dir_node.h.