#include <stdlib.h> // exit
#include <sys/wait.h> // waitpid, pid_t, WNOHANG
+// cmd with fork:
+#include <sys/types.h>
+#include <unistd.h>
+
+
// Project
#include <anna/xml/Compiler.hpp>
#include <anna/core/util/Millisecond.hpp>
sa.sa_flags = SA_RESTART | SA_NOCLDSTOP;
if (sigaction(SIGCHLD, &sa, 0) != -1) {
status = system(cmd.c_str());
- /* POPEN version:
- char readbuf[256];
- FILE *fp = popen(cmd.c_str(), "r");
- if (fp) {
- while(fgets(readbuf, sizeof(readbuf), fp))
- step->appendOutput("\n");
- step->appendOutput(readbuf);
- status = pclose(fp);
- }
- else {
- status = -1;
- }
- */
+ /* POPEN version:
+ char readbuf[256];
+ FILE *fp = popen(cmd.c_str(), "r");
+ if (fp) {
+ while(fgets(readbuf, sizeof(readbuf), fp))
+ step->appendOutput("\n");
+ step->appendOutput(readbuf);
+ status = pclose(fp);
+ }
+ else {
+ status = -1;
+ }
+ */
}
else {
perror(0);
// TODO: mutex the step while setting data here !!
}
+ void cmdRunOnThreadWithFork (TestStepCmd *step, const std::string &cmd) {
+
+ // Thread running:
+ step->setThreadRunning(true);
+
+ pid_t cpid, w;
+ int status = -2;
+
+ if ((cpid = fork()) < 0) {
+ step->setErrorMsg("Error in fork()");
+ }
+ else if (cpid == 0) {
+ // child
+ status = system(cmd.c_str());
+ _exit(WEXITSTATUS(status));
+ }
+ else {
+ // parent
+ step->setChildPid(cpid);
+ do {
+ w = waitpid(cpid, &status, WUNTRACED | WCONTINUED);
+ if (w != -1) {
+
+ if (WIFEXITED(status)) {
+ step->setResultCode(WEXITSTATUS(status)); // rc = status >>= 8; // divide by 256
+ break;
+ }
+ else if (WIFSIGNALED(status)) {
+ step->setErrorMsg(anna::functions::asString("killed by signal %d", WTERMSIG(status)));
+ step->setResultCode(128 + WTERMSIG(status));
+ break;
+ } else if (WIFSTOPPED(status)) {
+ step->setErrorMsg(anna::functions::asString("stopped by signal %d", WSTOPSIG(status)));
+ } else if (WIFCONTINUED(status)) {
+ step->setErrorMsg("continued");
+ }
+ }
+ else {
+ step->setErrorMsg("waitpid error");
+ step->setResultCode(-1);
+ break;
+ }
+ } while (!WIFEXITED(status) && !WIFSIGNALED(status));
+
+ step->complete();
+ }
+ }
+
bool decodeMessage(const anna::DataBlock &message, anna::diameter::codec::Message &messageCodec) throw() {
if (message.isEmpty())
// Begin
std::string s_aux = a_beginTimestamp.asString();
-// int deltaMs = (int)(a_beginTimestamp - a_testCase->getStartTimestamp());
-// if (a_beginTimestamp != 0 && deltaMs > 0) s_aux += anna::functions::asString(" [%.3f]", deltaMs/1000.0);
+ // int deltaMs = (int)(a_beginTimestamp - a_testCase->getStartTimestamp());
+ // if (a_beginTimestamp != 0 && deltaMs > 0) s_aux += anna::functions::asString(" [%.3f]", deltaMs/1000.0);
result->createAttribute("BeginTimestamp", s_aux);
// End
s_aux = a_endTimestamp.asString();
-// deltaMs = (int)(a_endTimestamp - a_testCase->getStartTimestamp());
-// if (a_endTimestamp != 0 && deltaMs > 0) s_aux += anna::functions::asString(" [%.3f]", deltaMs/1000.0);
+ // deltaMs = (int)(a_endTimestamp - a_testCase->getStartTimestamp());
+ // if (a_endTimestamp != 0 && deltaMs > 0) s_aux += anna::functions::asString(" [%.3f]", deltaMs/1000.0);
result->createAttribute("EndTimestamp", s_aux);
return result;
void TestStepDelay::do_complete() throw() {
a_timer = NULL;
next(); // next() invoked here because execute() is always false for delay and never advance the iterator
+ // TODO, avoid this recursion
}
void TestStepDelay::do_reset() throw() {
result->createAttribute("Script", (a_script != "") ? a_script:"<no script>");
if (a_errorMsg != "") result->createAttribute("ErrorMessage", a_errorMsg);
- if (!a_threadRunning && a_resultCode != -2) {
- result->createAttribute("ResultCode", a_resultCode);
- //if (a_output != "") result->createAttribute("Output", a_output);
+ if (a_threadRunning) {
+ if (a_childPid != -1)
+ result->createAttribute("ChildPid", a_childPid);
+ }
+ else {
+ if (a_resultCode != -2) {
+ result->createAttribute("ResultCode", a_resultCode);
+ //if (a_output != "") result->createAttribute("Output", a_output);
+ }
}
return result;
cmd.replace(index, strlen(SH_COMMAND_TAG_FOR_REPLACE__TESTSTEP_ID), anna::functions::asString(getNumber()));
a_thread = std::thread(cmdRunOnThread, this, cmd);
+ //a_thread = std::thread(cmdRunOnThreadWithFork, this, cmd);
+
a_thread.detach();
}
return false; // don't go next (wait complete): If system function on thread stucks, then the reset test case will stuck here forever.
- // We must implement a interrupt procedure for the thread on reset call... TODO !
+ // We must implement a interrupt procedure for the thread on reset call... TODO !
}
void TestStepCmd::do_complete() throw() {
a_testCase->setState(TestCase::State::Failed);
else
next(); // next() invoked here because execute() is always false for delay and never advance the iterator
+ // TODO, avoid this recursion
}
void TestStepCmd::do_reset() throw() {
- if (a_threadRunning) {
- std::string s_warn = anna::functions::asString("Thread still in progress: deprecating step %d for Test Case %llu", getNumber(), a_testCase->getId());
- LOGWARNING(anna::Logger::warning(s_warn, ANNA_FILE_LOCATION));
- a_threadDeprecated = true;
- }
+ if (a_threadRunning) {
+ std::string s_warn = anna::functions::asString("Thread still in progress: deprecating step %d for Test Case %llu", getNumber(), a_testCase->getId());
+ LOGWARNING(anna::Logger::warning(s_warn, ANNA_FILE_LOCATION));
+ a_threadDeprecated = true;
+ }
+// if (a_threadRunning) {
+// std::string s_warn = anna::functions::asString("Thread still in progress: killing child pid %d within step %d for Test Case %llu", a_childPid, getNumber(), a_testCase->getId());
+// LOGWARNING(anna::Logger::warning(s_warn, ANNA_FILE_LOCATION));
+// kill (a_childPid, SIGKILL);
+// }
a_resultCode = -2;
+ a_errorMsg = "";
//a_output = "";
+ a_childPid = -1;
}