36 #include "../parser/iceparser.h"
66 return this->readOnly;
70 std::string executablePath,
71 std::string instanceName,
72 std::string configPath,
73 std::string packageName,
77 Application(executableName, executablePath, packageName),
78 instanceName(instanceName),
79 configPath(configPath),
84 statusWriteBlock(false),
90 std::string instanceName,
91 std::string configPath,
96 instanceName(instanceName),
97 configPath(configPath),
98 status(ApplicationStatus::Unknown),
102 statusWriteBlock(false),
116 return this->instanceName;
122 this->instanceName = newName;
128 return this->configPath;
134 this->configPath = configPath;
140 std::filesystem::path scenariosFolder(scenario->getPackage()->getScenarioPath());
141 std::filesystem::path scenarioFolder = scenariosFolder / scenario->getName();
142 std::filesystem::path scenarioCfgFolder = scenarioFolder /
"config";
144 std::filesystem::path configPath = scenarioCfgFolder;
146 if (!this->instanceName.empty() && this->instanceName != R
"("")" &&
147 this->instanceName != R"(" ")")
149 configPath = configPath / (this->getName() + "." + this->getInstanceName() +
".cfg");
153 configPath = configPath / (this->getName() +
".cfg");
157 if (configPath != this->configPath)
159 std::filesystem::remove(std::filesystem::path(this->configPath));
161 this->configPath = configPath.string();
196 if (!properties->isPropertySet(name))
198 properties->defineOptionalProperty(name, std::string(
"::NOT_DEFINED::"),
"Custom Property");
200 properties->getProperties()->setProperty(name,
value);
206 if (!properties->isPropertySet(name))
208 properties->defineOptionalProperty(name, std::string(
"::NOT_DEFINED::"),
"Custom Property");
210 properties->getProperties()->setProperty(name,
value);
217 parser.saveCfg(shared_from_this());
228 if (!std::filesystem::is_symlink(configPath))
234 std::filesystem::remove(configPath);
245 auto target_path = other.configPath.lexically_relative(configPath.parent_path());
246 std::filesystem::create_symlink(target_path, configPath);
255 std::filesystem::copy_file(
256 other.configPath, configPath, std::filesystem::copy_options::overwrite_existing);
263 if (std::filesystem::exists(this->configPath))
265 std::filesystem::remove(this->configPath);
272 if (!std::filesystem::exists(configPath))
274 ARMARX_WARNING_S <<
"Cannot find ApplicationInstance Config at:" << configPath;
279 setProperties(
parser.mergeXmlAndCfg(shared_from_this(), firstLoad));
283 this->readOnly = std::filesystem::is_symlink(configPath);
291 ofs.open(configPath.c_str(), std::ofstream::out | std::ofstream::app);
292 ARMARX_DEBUG << configPath <<
" is writeable: " << ofs.is_open();
294 return ofs.is_open();
300 return statusWriteBlock;
306 statusWriteBlock = blocked;
318 return nodeName.empty() && scenario ? scenario->getNodeName() : nodeName;
324 this->nodeName = nodeName;