Multi diag tools
Public Member Functions | List of all members
Mdt::DeployUtils::LibraryTree Class Reference

LibraryTree is a tree that contains library names. More...

#include <LibraryTree.h>

Public Member Functions

 LibraryTree ()
 Construct a empty library tree.
 
 ~LibraryTree ()
 Destructor.
 
LibraryTreeNode setRootBinary (const QString &name)
 Set the root binary. More...
 
QString rootBinary () const
 Get the root binary.
 
LibraryTreeNode addLibrary (const QString &name, LibraryTreeNode parent)
 Add a library that is a child of parent. More...
 
QStringList getLibraryList (LibraryTreeNode parent) const
 Get a list of libraries that are direct children of parent. More...
 
QStringList toFlatList () const
 Get a list of all libraries. More...
 
void clear ()
 Clear this tree.
 
bool containsNode (LibraryTreeNode node) const
 Check if this tree contains a specific node. More...
 

Detailed Description

LibraryTree is a tree that contains library names.

The tree represents library dependencies of a binary (a executable or a library).

Note
All binary and library are simple names, stored and returned unchanged. The user of the tree chooses what name makes sense (name with or without extension, ...)

Definition at line 44 of file LibraryTree.h.

Member Function Documentation

LibraryTreeNode Mdt::DeployUtils::LibraryTree::addLibrary ( const QString &  name,
LibraryTreeNode  parent 
)

Add a library that is a child of parent.

Precondition
Root binary must have been set before adding a library
parent must not be null
parent must be a existing node in this tree
Returns
A node identifier that relates to the added library

Definition at line 158 of file LibraryTree.cpp.

bool Mdt::DeployUtils::LibraryTree::containsNode ( LibraryTreeNode  node) const

Check if this tree contains a specific node.

Precondition
node must not be null

Definition at line 184 of file LibraryTree.cpp.

QStringList Mdt::DeployUtils::LibraryTree::getLibraryList ( LibraryTreeNode  parent) const

Get a list of libraries that are direct children of parent.

Precondition
parent must not be null
parent must be a existing node in this tree
Note
The list is build at each call of this method

Definition at line 166 of file LibraryTree.cpp.

LibraryTreeNode Mdt::DeployUtils::LibraryTree::setRootBinary ( const QString &  name)

Set the root binary.

Note
Setting a new root binary will first clear this tree

Definition at line 148 of file LibraryTree.cpp.

QStringList Mdt::DeployUtils::LibraryTree::toFlatList ( ) const

Get a list of all libraries.

Returns a list containing all libraries, except the root. The list contains a unique instance of each library.

Note
The list is build at each call of this method

Definition at line 174 of file LibraryTree.cpp.


The documentation for this class was generated from the following files: