thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
LWH::Tree Class Reference

The Tree class is a simple implementation of the AIDA::ITree interface. More...

#include <Tree.h>

Inheritance diagram for LWH::Tree:

Public Types

typedef std::vector< std::string > Path
 A path is a vector of directory names. More...
 
typedef std::set< PathPathSet
 A set of paths.
 
typedef std::map< std::string, IManagedObject * > ObjMap
 Map of paths to objects. More...
 

Public Member Functions

 Tree (std::string storename, bool xml=true)
 The standard constructor.
 
 Tree ()
 The default constructor.
 
 Tree (const Tree &dt)
 The copy constructor.
 
virtual ~Tree ()
 Destructor.
 
std::string storeName () const
 Get the name of the store. More...
 
IManagedObject * find (const std::string &path)
 Get the IManagedObject at a given path in the ITree. More...
 
ITree * findTree (const std::string &)
 LWH cannot get a mounted ITree at a given path in the current ITree. More...
 
bool cd (const std::string &dir)
 Change to a given directory. More...
 
bool insert (std::string str, IManagedObject *o)
 Insert the ManagedObject o in the tree with the path str.
 
std::string pwd () const
 Get the path of the current working directory. More...
 
bool ls (const std::string &=".", bool=false, std::ostream &=std::cout) const
 Not implemented in LWH. More...
 
std::vector< std::string > listObjectNames (const std::string &=".", bool=false) const
 Not implemented in LWH.
 
std::vector< std::string > listObjectTypes (const std::string &=".", bool=false) const
 Not implemented in LWH.
 
bool mkdir (const std::string &dir)
 Create a new directory. More...
 
bool mkdirs (const std::string &dir)
 Create a directory recursively. More...
 
bool mkdirs (Path p)
 Create a directory recursively. More...
 
bool rmdir (const std::string &dir)
 Remove a directory and all the contents underneeth. More...
 
bool rm (const std::string &path)
 Remove and delete an IManagedObject by specifying its path. More...
 
std::string findPath (const IManagedObject &o) const
 Get the full path of an IManagedObject. More...
 
bool mv (const std::string &oldp, const std::string &newp)
 Move an IManagedObject or a directory from one directory to another. More...
 
bool commit ()
 Print all histograms to the current filename. More...
 
void setOverwrite (bool o=true)
 Not implemented in LWH.
 
bool cp (const std::string &, const std::string &, bool=false)
 Not implemented in LWH. More...
 
bool symlink (const std::string &, const std::string &)
 Not implemented in LWH. More...
 
bool mount (const std::string &, ITree &, const std::string &)
 Not implemented in LWH. More...
 
bool unmount (const std::string &)
 Not implemented in LWH. More...
 
bool close ()
 Calls commit().
 
void * cast (const std::string &) const
 Not implemented in LWH. More...
 

Protected Member Functions

std::string sts (std::string s) const
 Strip trailing slash. More...
 
std::string stn (std::string s) const
 Strip trailing name.
 
std::string fullpath (std::string d) const
 Get proper full path from possibly relative path. More...
 
Path str2pth (std::string s) const
 Convert a string containing a path to a Path object. More...
 
std::string pth2str (const Path &pth) const
 Convert a Path object to a corresponding string. More...
 
Path purgepath (const Path &pth) const
 Remove '..' and '. More...
 

Private Attributes

std::string name
 The filename to print histograms to. More...
 
bool flat
 If true write histograms in FLAT format, otherwise in XML. More...
 
PathSet dirs
 The set of defined directories. More...
 
ObjMap objs
 The set of defined objects. More...
 
std::string cwd
 The current working directory. More...
 
bool overwrite
 Overwrite strategy. More...
 

Friends

class AnalysisFactory
 The AnalysisFactory is a friend. More...
 

Detailed Description

The Tree class is a simple implementation of the AIDA::ITree interface.

Definition at line 32 of file Tree.h.

Member Typedef Documentation

◆ ObjMap

typedef std::map<std::string, IManagedObject *> LWH::Tree::ObjMap

Map of paths to objects.

Definition at line 46 of file Tree.h.

◆ Path

typedef std::vector<std::string> LWH::Tree::Path

A path is a vector of directory names.

Definition at line 40 of file Tree.h.

Member Function Documentation

◆ cast()

void* LWH::Tree::cast ( const std::string &  ) const
inline

Not implemented in LWH.

Returns
null pointer always.

Definition at line 353 of file Tree.h.

◆ cd()

bool LWH::Tree::cd ( const std::string &  dir)
inline

Change to a given directory.

Parameters
dirThe absolute or relative path of the directory we are changing to.
Returns
false If the path does not exist.

Definition at line 111 of file Tree.h.

◆ commit()

bool LWH::Tree::commit ( )
inline

Print all histograms to the current filename.

Returns
false if something went wrong.

Definition at line 281 of file Tree.h.

References LWH::ManagedObject::writeFLAT(), and LWH::ManagedObject::writeXML().

◆ cp()

bool LWH::Tree::cp ( const std::string &  ,
const std::string &  ,
bool  = false 
)
inline

Not implemented in LWH.

Returns
false always.

Definition at line 314 of file Tree.h.

◆ find()

IManagedObject* LWH::Tree::find ( const std::string &  path)
inline

Get the IManagedObject at a given path in the ITree.

The path can either be absolute or relative to the current working directory.

Parameters
pathThe path.
Returns
The corresponding IManagedObject.

Definition at line 92 of file Tree.h.

◆ findPath()

std::string LWH::Tree::findPath ( const IManagedObject &  o) const
inline

Get the full path of an IManagedObject.

Parameters
oThe IManagedObject whose path is to be returned.
Returns
The object's absolute path. If the object does not exist, an empty string is returned.

Definition at line 251 of file Tree.h.

◆ findTree()

ITree* LWH::Tree::findTree ( const std::string &  )
inline

LWH cannot get a mounted ITree at a given path in the current ITree.

Returns
0 always.

Definition at line 101 of file Tree.h.

◆ fullpath()

std::string LWH::Tree::fullpath ( std::string  d) const
inlineprotected

Get proper full path from possibly relative path.

Definition at line 373 of file Tree.h.

◆ ls()

bool LWH::Tree::ls ( const std::string &  = ".",
bool  = false,
std::ostream &  = std::cout 
) const
inline

Not implemented in LWH.

Returns
false always.

Definition at line 154 of file Tree.h.

◆ mkdir()

bool LWH::Tree::mkdir ( const std::string &  dir)
inline

Create a new directory.

Given a path only the last directory in it is created if all the intermediate subdirectories already exist.

Parameters
dirThe absolute or relative path of the new directory.
Returns
false If a subdirectory within the path does not exist or it is not a directory. Also if the directory already exists.

Definition at line 182 of file Tree.h.

◆ mkdirs() [1/2]

bool LWH::Tree::mkdirs ( const std::string &  dir)
inline

Create a directory recursively.

Given a path the last directory and all the intermediate non-existing subdirectories are created.

Parameters
dirThe absolute or relative path of the new directory.
Returns
false If an intermediate subdirectory is not a directory, or if the directory already exists.

Definition at line 198 of file Tree.h.

◆ mkdirs() [2/2]

bool LWH::Tree::mkdirs ( Path  p)
inline

Create a directory recursively.

Given a Path the last directory and all the intermediate non-existing subdirectories are created.

Parameters
pThe full Path of the new directory.
Returns
false If an intermediate subdirectory is not a directory, or if the directory already exists.

Definition at line 209 of file Tree.h.

◆ mount()

bool LWH::Tree::mount ( const std::string &  ,
ITree &  ,
const std::string &   
)
inline

Not implemented in LWH.

Returns
false always.

Definition at line 330 of file Tree.h.

◆ mv()

bool LWH::Tree::mv ( const std::string &  oldp,
const std::string &  newp 
)
inline

Move an IManagedObject or a directory from one directory to another.

Parameters
oldpThe path of the IManagedObject [not direcoty] to be moved.
newpThe path of the diretory in which the object has to be moved to.
Returns
false If either path does not exist.

Definition at line 264 of file Tree.h.

◆ pth2str()

std::string LWH::Tree::pth2str ( const Path pth) const
inlineprotected

Convert a Path object to a corresponding string.

Definition at line 394 of file Tree.h.

◆ purgepath()

Path LWH::Tree::purgepath ( const Path pth) const
inlineprotected

Remove '..' and '.

' components of the given Path object.

Definition at line 401 of file Tree.h.

◆ pwd()

std::string LWH::Tree::pwd ( ) const
inline

Get the path of the current working directory.

Returns
The path of the current working directory.

Definition at line 145 of file Tree.h.

◆ rm()

bool LWH::Tree::rm ( const std::string &  path)
inline

Remove and delete an IManagedObject by specifying its path.

Parameters
pathThe absolute or relative path of the IManagedObject to be removed.
Returns
false If path does not exist.

Definition at line 237 of file Tree.h.

◆ rmdir()

bool LWH::Tree::rmdir ( const std::string &  dir)
inline

Remove a directory and all the contents underneeth.

Parameters
dirThe absolute or relative path of the directory to be removed.
Returns
false If path does not exist or if it is not a directory or if the directory is not empty.

Definition at line 222 of file Tree.h.

◆ storeName()

std::string LWH::Tree::storeName ( ) const
inline

Get the name of the store.

Returns
The store's name.

Definition at line 82 of file Tree.h.

◆ str2pth()

Path LWH::Tree::str2pth ( std::string  s) const
inlineprotected

Convert a string containing a path to a Path object.

Definition at line 379 of file Tree.h.

◆ sts()

std::string LWH::Tree::sts ( std::string  s) const
inlineprotected

Strip trailing slash.

Definition at line 360 of file Tree.h.

◆ symlink()

bool LWH::Tree::symlink ( const std::string &  ,
const std::string &   
)
inline

Not implemented in LWH.

Returns
false always.

Definition at line 322 of file Tree.h.

◆ unmount()

bool LWH::Tree::unmount ( const std::string &  )
inline

Not implemented in LWH.

Returns
false always.

Definition at line 338 of file Tree.h.

Friends And Related Function Documentation

◆ AnalysisFactory

friend class AnalysisFactory
friend

The AnalysisFactory is a friend.

Definition at line 37 of file Tree.h.

Member Data Documentation

◆ cwd

std::string LWH::Tree::cwd
private

The current working directory.

Definition at line 425 of file Tree.h.

◆ dirs

PathSet LWH::Tree::dirs
private

The set of defined directories.

Definition at line 419 of file Tree.h.

◆ flat

bool LWH::Tree::flat
private

If true write histograms in FLAT format, otherwise in XML.

Definition at line 416 of file Tree.h.

◆ name

std::string LWH::Tree::name
private

The filename to print histograms to.

Definition at line 413 of file Tree.h.

◆ objs

ObjMap LWH::Tree::objs
private

The set of defined objects.

Definition at line 422 of file Tree.h.

◆ overwrite

bool LWH::Tree::overwrite
private

Overwrite strategy.

Definition at line 428 of file Tree.h.


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