Go to the documentation of this file.
3 #include <SimoxUtility/algorithm/string/string_tools.h>
14 const std::string& className,
15 const std::string& instancName) :
16 _dataset(dataset), _className(className), _instanceName(instancName)
22 if (nameOrID.find(
"/") != nameOrID.npos)
29 _className = nameOrID;
46 <<
"Expected ID of format 'Dataset/ClassName' or 'Dataset/ClassName/InstanceName'"
47 <<
", but got: '" << idString <<
"' "
48 <<
"(expected 2 or 3 '/'s, but found " <<
split.size() <<
").";
51 _className =
split[1];
53 if (
split.size() == 3)
55 _instanceName =
split[2];
62 std::string _str = _dataset +
"/" + _className;
63 if (!_instanceName.empty())
65 _str +=
"/" + _instanceName;
73 return ObjectID(_dataset, _className);
79 return _className == rhs._className && _dataset == rhs._dataset;
91 return _className == rhs._className && _dataset == rhs._dataset &&
92 _instanceName == rhs._instanceName;
98 int c = _dataset.compare(rhs._dataset);
104 c = _className.compare(rhs._className);
110 return _instanceName < rhs._instanceName;
118 return os <<
"'" <<
id.str() <<
"'";
A known object ID of the form "Dataset/ClassName" or "Dataset/ClassName/InstanceName".
ObjectID withInstanceName(const std::string &instanceName) const
static ObjectID FromString(const std::string &idString)
Construct from a string produced by str(), e.g. ("mydataset/myobject", "mydataset/myclass/myinstance"...
ObjectID getClassID() const
Return just the class ID without an intance name.
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
void setFromString(const std::string &idString)
bool equalClass(const ObjectID &rhs) const
Indicates whether dataset and class name are equal.
std::string instanceName() const
bool operator==(const ObjectID &rhs) const
Indicates whether dataset, class name and instance name are equal.
bool operator<(const ObjectID &rhs) const
std::ostream & operator<<(std::ostream &os, const PythonApplicationManager::Paths &paths)
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::string str() const
Return "dataset/className" or "dataset/className/instanceName".
std::vector< std::string > split(const std::string &source, const std::string &splitBy, bool trimElements=false, bool removeEmptyElements=false)