aGrUM  0.17.2
a C++ library for (probabilistic) graphical models
gum::O3prmBNReader< GUM_SCALAR > Class Template Reference

Read an O3PRM and transform the gum::prm::PRMSystem into gum::BayesNet. More...

#include <agrum/PRM/o3prm/O3prmBNReader.h>

+ Inheritance diagram for gum::O3prmBNReader< GUM_SCALAR >:
+ Collaboration diagram for gum::O3prmBNReader< GUM_SCALAR >:

Public Member Functions

 O3prmBNReader (BayesNet< GUM_SCALAR > *bn, const std::string &filename, const std::string &entityName="", const std::string &classPath="")
 
 ~O3prmBNReader ()
 
Size proceed ()
 parse the file More...
 
Size errors ()
 publishing Errors API More...
 
Size warnings ()
 

of errors

More...
 
Idx errLine (Idx i)
 publishing Errors API More...
 
Idx errCol (Idx i)
 col of ith error or warning More...
 
bool errIsError (Idx i)
 type of ith error or warning More...
 
std::string errMsg (Idx i)
 message of ith error or warning More...
 
void showElegantErrors (std::ostream &o=std::cerr)
 send on std::cerr the list of errors More...
 
void showElegantErrorsAndWarnings (std::ostream &o=std::cerr)
 send on std::cerr the list of errors or warnings More...
 
void showErrorCounts (std::ostream &o=std::cerr)
 send on std::cerr the number of errors and the number of warnings More...
 

Detailed Description

template<typename GUM_SCALAR>
class gum::O3prmBNReader< GUM_SCALAR >

Read an O3PRM and transform the gum::prm::PRMSystem into gum::BayesNet.

Template Parameters
GUM_SCALARThe scalar type used both for the gum::prm::PRM and the gum::BayesNet.

Definition at line 57 of file O3prmBNReader.h.

Constructor & Destructor Documentation

◆ O3prmBNReader()

template<typename GUM_SCALAR >
gum::O3prmBNReader< GUM_SCALAR >::O3prmBNReader ( BayesNet< GUM_SCALAR > *  bn,
const std::string &  filename,
const std::string &  entityName = "",
const std::string &  classPath = "" 
)

Definition at line 67 of file O3prmBNReader_tpl.h.

References gum::O3prmBNReader< GUM_SCALAR >::__bn, gum::O3prmBNReader< GUM_SCALAR >::__classpath, gum::O3prmBNReader< GUM_SCALAR >::__entityName, gum::O3prmBNReader< GUM_SCALAR >::__filename, and gum::O3prmBNReader< GUM_SCALAR >::__getEntityName().

70  :
71  BNReader< GUM_SCALAR >(bn, filename) {
72  GUM_CONSTRUCTOR(O3prmBNReader);
73  __bn = bn;
74  __filename = filename;
75  __entityName = entityName == "" ? __getEntityName(filename) : entityName;
76  __classpath = classpath;
77  }
std::string __entityName
static std::string __getEntityName(const std::string &filename)
std::string __filename
O3prmBNReader(BayesNet< GUM_SCALAR > *bn, const std::string &filename, const std::string &entityName="", const std::string &classPath="")
std::string __classpath
BayesNet< GUM_SCALAR > * __bn
+ Here is the call graph for this function:

◆ ~O3prmBNReader()

template<typename GUM_SCALAR >
gum::O3prmBNReader< GUM_SCALAR >::~O3prmBNReader ( )

Definition at line 80 of file O3prmBNReader_tpl.h.

80  {
81  GUM_DESTRUCTOR(O3prmBNReader);
82  }
O3prmBNReader(BayesNet< GUM_SCALAR > *bn, const std::string &filename, const std::string &entityName="", const std::string &classPath="")

Member Function Documentation

◆ __generateBN()

template<typename GUM_SCALAR >
void gum::O3prmBNReader< GUM_SCALAR >::__generateBN ( prm::PRMSystem< GUM_SCALAR > &  system)
private

Definition at line 186 of file O3prmBNReader_tpl.h.

References gum::O3prmBNReader< GUM_SCALAR >::__bn, gum::O3prmBNReader< GUM_SCALAR >::__entityName, gum::prm::PRMSystem< GUM_SCALAR >::groundedBN(), and gum::prm::PRMSystem< GUM_SCALAR >::instantiate().

Referenced by gum::O3prmBNReader< GUM_SCALAR >::proceed().

187  {
188  system.instantiate();
189  BayesNetFactory< GUM_SCALAR > factory(__bn);
190  system.groundedBN(factory);
191  __bn->setProperty("name", __entityName);
192  }
std::string __entityName
BayesNet< GUM_SCALAR > * __bn
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ __getEntityName()

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::__getEntityName ( const std::string &  filename)
staticprivate

Definition at line 59 of file O3prmBNReader_tpl.h.

Referenced by gum::O3prmBNReader< GUM_SCALAR >::O3prmBNReader().

59  {
60  auto b = filename.find_last_of("/\\");
61  auto e = filename.find_last_of(".") - 1;
62  GUM_ASSERT(e > b); // we are waiting ../../basename.o3prm
63  return filename.substr(b + 1, e - b);
64  }
+ Here is the caller graph for this function:

◆ __getInstanceName()

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::__getInstanceName ( const std::string &  classname)
staticprivate

Definition at line 51 of file O3prmBNReader_tpl.h.

Referenced by gum::O3prmBNReader< GUM_SCALAR >::proceed().

51  {
52  auto res = classname.substr(0, 4);
53  std::transform(res.begin(), res.end(), res.begin(), ::tolower);
54  return res;
55  }
+ Here is the caller graph for this function:

◆ __getVariableName()

template<typename GUM_SCALAR >
INLINE std::string gum::O3prmBNReader< GUM_SCALAR >::__getVariableName ( const std::string &  path,
const std::string &  type,
const std::string &  name,
const std::string &  toRemove = "" 
)
staticprivate

Definition at line 36 of file O3prmBNReader_tpl.h.

Referenced by gum::O3prmBNReader< GUM_SCALAR >::proceed().

39  {
40  auto res = path + name; // path ends up with a "."
41  if (toRemove != "") {
42  if (res.substr(0, toRemove.size()) == toRemove) {
43  res = res.substr(toRemove.size());
44  }
45  }
46  return res;
47  }
+ Here is the caller graph for this function:

◆ errCol()

template<typename GUM_SCALAR >
Idx gum::O3prmBNReader< GUM_SCALAR >::errCol ( Idx  i)
inline

col of ith error or warning

Definition at line 81 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, gum::ParseError::column, and gum::ErrorsContainer::error().

81 { return __errors.error(i).column; }
ErrorsContainer __errors
ParseError error(Idx i) const
Returns the i-th error.
Idx column
The column of this gum::ParseError, default is 0.
+ Here is the call graph for this function:

◆ errIsError()

template<typename GUM_SCALAR >
bool gum::O3prmBNReader< GUM_SCALAR >::errIsError ( Idx  i)
inline

type of ith error or warning

Definition at line 83 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, gum::ErrorsContainer::error(), and gum::ParseError::is_error.

83 { return __errors.error(i).is_error; }
ErrorsContainer __errors
bool is_error
If false, this gum::ParseError is a warning.
ParseError error(Idx i) const
Returns the i-th error.
+ Here is the call graph for this function:

◆ errLine()

template<typename GUM_SCALAR >
Idx gum::O3prmBNReader< GUM_SCALAR >::errLine ( Idx  i)
inline

publishing Errors API

of errors

Definition at line 79 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, gum::ErrorsContainer::error(), and gum::ParseError::line.

79 { return __errors.error(i).line; }
ErrorsContainer __errors
Idx line
The line of this gum::ParseError.
ParseError error(Idx i) const
Returns the i-th error.
+ Here is the call graph for this function:

◆ errMsg()

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::errMsg ( Idx  i)
inline

message of ith error or warning

Definition at line 85 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, gum::ErrorsContainer::error(), and gum::ParseError::msg.

85 { return __errors.error(i).msg; }
std::string msg
The gum::ParseError message.
ErrorsContainer __errors
ParseError error(Idx i) const
Returns the i-th error.
+ Here is the call graph for this function:

◆ errors()

template<typename GUM_SCALAR >
Size gum::O3prmBNReader< GUM_SCALAR >::errors ( )
inline

publishing Errors API

of errors

Definition at line 75 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, and gum::ErrorsContainer::error_count.

Referenced by gum::O3prmBNReader< GUM_SCALAR >::proceed().

75 { return __errors.error_count; }
Size error_count
Number of errors detected.
ErrorsContainer __errors
+ Here is the caller graph for this function:

◆ proceed()

template<typename GUM_SCALAR >
Size gum::O3prmBNReader< GUM_SCALAR >::proceed ( )
virtual

parse the file

parse.

Returns
the number of detected errors and warnings
Exceptions
IOErrorif file not exists
Returns
the number of detected errors
Exceptions
IOErrorif file not exists

Implements gum::BNReader< GUM_SCALAR >.

Definition at line 88 of file O3prmBNReader_tpl.h.

References gum::O3prmBNReader< GUM_SCALAR >::__bn, gum::O3prmBNReader< GUM_SCALAR >::__classpath, gum::O3prmBNReader< GUM_SCALAR >::__entityName, gum::O3prmBNReader< GUM_SCALAR >::__errors, gum::O3prmBNReader< GUM_SCALAR >::__filename, gum::O3prmBNReader< GUM_SCALAR >::__generateBN(), gum::O3prmBNReader< GUM_SCALAR >::__getInstanceName(), gum::O3prmBNReader< GUM_SCALAR >::__getVariableName(), gum::prm::PRMSystem< GUM_SCALAR >::add(), gum::ErrorsContainer::add(), gum::prm::o3prm::O3prmReader< GUM_SCALAR >::addClassPath(), gum::prm::PRM< GUM_SCALAR >::classes(), gum::Set< Key, Alloc >::contains(), gum::O3prmBNReader< GUM_SCALAR >::errors(), gum::prm::o3prm::O3prmReader< GUM_SCALAR >::errorsContainer(), gum::prm::PRM< GUM_SCALAR >::getClass(), gum::prm::PRM< GUM_SCALAR >::getSystem(), gum::Set< Key, Alloc >::insert(), gum::prm::PRM< GUM_SCALAR >::isClass(), gum::prm::PRM< GUM_SCALAR >::isSystem(), gum::prm::o3prm::O3prmReader< GUM_SCALAR >::prm(), gum::prm::o3prm::O3prmReader< GUM_SCALAR >::readFile(), and gum::to_string().

88  {
89  prm::o3prm::O3prmReader< GUM_SCALAR > reader;
90  if (__classpath != "") { reader.addClassPath(__classpath); }
91  reader.readFile(__filename);
92  gum::prm::PRM< GUM_SCALAR >* prm = reader.prm();
93  __errors = reader.errorsContainer();
94 
95 
96  if (errors() == 0) {
97  std::string instanceName = "";
98  if (prm->isSystem(__entityName)) {
100  } else if (prm->isClass(__entityName)) {
101  ParseError warn(
102  false,
103  "No system '" + __entityName
104  + "' found but class found. Generating unnamed instance.",
105  __filename,
106  0);
107  __errors.add(warn);
109  instanceName = __getInstanceName(__entityName);
111  instanceName, prm->getClass(__entityName));
112  s.add(i);
113  __generateBN(s);
114  instanceName += "."; // to be removed in __getVariableName
115  } else if (prm->classes().size() == 1) {
116  const std::string& entityName = (*prm->classes().begin())->name();
117  ParseError warn(false,
118  "Unique class '" + entityName
119  + "' found. Generating unnamed instance.",
120  __filename,
121  0);
122  __errors.add(warn);
123 
124  gum::prm::PRMSystem< GUM_SCALAR > s("S_" + entityName);
125  instanceName = __getInstanceName(entityName);
127  instanceName, prm->getClass(entityName));
128  s.add(i);
129  __generateBN(s);
130 
131  // force the name of the BN to be the name of the class instead of the name
132  // of the file
133  __bn->setProperty("name", entityName);
134  instanceName += "."; // to be removed in __getVariableName
135  } else {
136  ParseError err(true,
137  "Neither system nor class '" + __entityName
138  + "' and more than one class.",
139  __filename,
140  0);
141  __errors.add(err);
142  }
143 
144  // renaming variables in th BN
146  for (auto node: __bn->nodes()) {
147  // keeping the complete name in description
148  const std::string& nn = __bn->variable(node).name();
149  __bn->variable(node).setDescription(nn);
150 
151  // trying to simplify the
152  auto start = nn.find_first_of('(');
153  auto end = nn.find_first_of(')');
154  if (0 < start && start < end && end < nn.size()) {
155  auto path = nn.substr(0, start);
156  auto type = nn.substr(start + 1, end - start - 1);
157  auto name = nn.substr(end + 1, std::string::npos);
158 
159  std::string newNameRadical =
160  __getVariableName(path, type, name, instanceName);
161 
162  std::string newName = newNameRadical;
163  // forcing newName to be unique
164  int num = 0;
165  while (names.contains(newName)) {
166  newName = newNameRadical + std::to_string(++num);
167  }
168 
169  names.insert(newName);
170  __bn->changeVariableName(node, newName);
171  } else {
172  ParseError warn(
173  false, "Name " + nn + " cannot be simplified.", __filename, 0);
174  __errors.add(warn);
175  }
176  }
177  }
178 
179  delete prm;
180 
181  return errors();
182  }
bool contains(const Key &k) const
Indicates whether a given elements belong to the set.
Definition: set_tpl.h:583
bool isClass(const std::string &name) const
Definition: PRM_tpl.h:79
std::string __entityName
void add(NodeId id, PRMInstance< GUM_SCALAR > &instance)
Add an PRMInstance<GUM_SCALAR> to a given PRMReferenceSlot, PRMSlotChain<GUM_SCALAR> or output node...
static std::string __getVariableName(const std::string &path, const std::string &type, const std::string &name, const std::string &toRemove="")
std::string __filename
An PRMInstance is a Bayesian Network fragment defined by a Class and used in a PRMSystem.
Definition: PRMInstance.h:63
const Set< PRMClass< GUM_SCALAR > *> & classes() const
Returns the Set of all Class<GUM_SCALAR> in this PRM.
Definition: PRM_tpl.h:122
ErrorsContainer __errors
void add(ParseError error)
Add an error object to the container.
void __generateBN(prm::PRMSystem< GUM_SCALAR > &system)
std::string to_string(const Formula &f)
Definition: formula_inl.h:499
std::string __classpath
bool isSystem(const std::string &name) const
Definition: PRM_tpl.h:89
PRMSystem< GUM_SCALAR > & getSystem(const std::string &name)
Returns a constant reference on a PRMSystem<GUM_SCALAR> given it&#39;s name.
Definition: PRM_tpl.h:146
A PRMSystem is a container of PRMInstance and describe a relational skeleton.
Definition: PRMObject.h:229
static std::string __getInstanceName(const std::string &classname)
This class represents a Probabilistic Relational PRMSystem<GUM_SCALAR>.
Definition: PRM.h:66
PRMClass< GUM_SCALAR > & getClass(const std::string &name)
Returns a constant reference on a Class<GUM_SCALAR> given it&#39;s name.
Definition: PRM_tpl.h:110
Size errors()
publishing Errors API
Definition: O3prmBNReader.h:75
void insert(const Key &k)
Inserts a new element into the set.
Definition: set_tpl.h:615
BayesNet< GUM_SCALAR > * __bn
+ Here is the call graph for this function:

◆ showElegantErrors()

template<typename GUM_SCALAR >
void gum::O3prmBNReader< GUM_SCALAR >::showElegantErrors ( std::ostream &  o = std::cerr)
inline

send on std::cerr the list of errors

Definition at line 88 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, and gum::ErrorsContainer::elegantErrors().

88  {
90  }
ErrorsContainer __errors
void elegantErrors(std::ostream &o) const
Print errors on output stream.
+ Here is the call graph for this function:

◆ showElegantErrorsAndWarnings()

template<typename GUM_SCALAR >
void gum::O3prmBNReader< GUM_SCALAR >::showElegantErrorsAndWarnings ( std::ostream &  o = std::cerr)
inline

send on std::cerr the list of errors or warnings

Definition at line 93 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, and gum::ErrorsContainer::elegantErrorsAndWarnings().

93  {
95  }
ErrorsContainer __errors
void elegantErrorsAndWarnings(std::ostream &o) const
Print errors on output stream.
+ Here is the call graph for this function:

◆ showErrorCounts()

template<typename GUM_SCALAR >
void gum::O3prmBNReader< GUM_SCALAR >::showErrorCounts ( std::ostream &  o = std::cerr)
inline

send on std::cerr the number of errors and the number of warnings

Definition at line 98 of file O3prmBNReader.h.

References gum::O3prmBNReader< GUM_SCALAR >::__errors, and gum::ErrorsContainer::syntheticResults().

98  {
100  }
ErrorsContainer __errors
void syntheticResults(std::ostream &o) const
Print errors on output stream.
+ Here is the call graph for this function:

◆ warnings()

template<typename GUM_SCALAR >
Size gum::O3prmBNReader< GUM_SCALAR >::warnings ( )
inline

Member Data Documentation

◆ __bn

template<typename GUM_SCALAR >
BayesNet< GUM_SCALAR >* gum::O3prmBNReader< GUM_SCALAR >::__bn
private

◆ __classpath

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::__classpath
private

◆ __entityName

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::__entityName
private

◆ __errors

◆ __filename

template<typename GUM_SCALAR >
std::string gum::O3prmBNReader< GUM_SCALAR >::__filename
private

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