Exemplo n.º 1
0
bool CmdStatistics::v_processArguments( int argc, char** argv, af::Msg &msg)
{
   if( argc >= 1 ) columns = atoi(argv[0]);
   if( argc >= 2 ) sorting = atoi(argv[1]);
   msg.set( af::Msg::TStatRequest);
   return true;
}
Exemplo n.º 2
0
bool CmdRenderResoucesList::v_processArguments( int argc, char** argv, af::Msg &msg)
{
	std::string name = argv[0];
	af::MCGeneral mcgeneral( name, 0);
	msg.set( getMsgType(), &mcgeneral);
	return true;
}
Exemplo n.º 3
0
bool CmdJobRunningTasksMaximum::processArguments( int argc, char** argv, af::Msg &msg)
{
   std::string name = argv[0];
   int number = atoi(argv[1]);
   af::MCGeneral mcgeneral( name, number);
   msg.set( getMsgType(), &mcgeneral);
   return true;
}
Exemplo n.º 4
0
bool CmdJobsRestart::processArguments( int argc, char** argv, af::Msg &msg)
{
   std::string mask = argv[0];
   if( af::RegExp::Validate( mask) == false ) return false;
   af::MCGeneral mcgeneral( mask, 0);
   msg.set( getMsgType(), &mcgeneral);
   return true;
}
Exemplo n.º 5
0
bool CmdJobsSetUser::processArguments( int argc, char** argv, af::Msg &msg)
{
   std::string name = argv[0];
   std::string user = argv[1];
   af::MCGeneral mcgeneral( name, user);
   msg.set( getMsgType(), &mcgeneral);
   return true;
}
Exemplo n.º 6
0
bool CmdTestMsg::v_processArguments( int argc, char** argv, af::Msg &msg)
{
	std::string qstring( argv[0]);
	int count = atoi(argv[1]);
	af::MCTest mctest( count, qstring);
	for( int i = 0; i < count; i++) mctest.addString( af::itos(i) + ": " + qstring);
	msg.set( af::Msg::TTESTDATA, &mctest);
	if( Verbose ) msg.stdOutData();
	return true;
}
Exemplo n.º 7
0
bool CmdMonitorLog::processArguments( int argc, char** argv, af::Msg &msg)
{
	int number = atoi(argv[0]);
	msg.set( getMsgType(), number);
	return true;
}
Exemplo n.º 8
0
bool CmdMonitorList::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TMonitorsListRequest);
   return true;
}
Exemplo n.º 9
0
bool CmdConfirm::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TConfirm);
   return true;
}
Exemplo n.º 10
0
bool CmdJobsWeight::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( getMsgType());
   return true;
}
Exemplo n.º 11
0
bool CmdConfigMagic::processArguments( int argc, char** argv, af::Msg &msg)
{
    msg.set( af::Msg::TMagicNumber, atoi(argv[0]));
    return true;
}
Exemplo n.º 12
0
void JobAf::writeProgress( af::Msg &msg)
{
	msg.set( af::Msg::TJobProgress, m_progress);
}
Exemplo n.º 13
0
bool CmdInvalid::v_processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TInvalid);
   return true;
}
Exemplo n.º 14
0
bool CmdRenderList::v_processArguments( int argc, char** argv, af::Msg &msg)
{
	msg.set( getMsgType());
	return true;
}