예제 #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;
}
예제 #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;
}
예제 #3
0
파일: cmd_job.cpp 프로젝트: Spudster3/cgru
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;
}
예제 #4
0
파일: cmd_job.cpp 프로젝트: Spudster3/cgru
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;
}
예제 #5
0
파일: cmd_job.cpp 프로젝트: Spudster3/cgru
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;
}
예제 #6
0
파일: cmd_test.cpp 프로젝트: CGRU/cgru
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;
}
예제 #7
0
bool CmdMonitorLog::processArguments( int argc, char** argv, af::Msg &msg)
{
	int number = atoi(argv[0]);
	msg.set( getMsgType(), number);
	return true;
}
예제 #8
0
bool CmdMonitorList::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TMonitorsListRequest);
   return true;
}
예제 #9
0
bool CmdConfirm::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TConfirm);
   return true;
}
예제 #10
0
파일: cmd_job.cpp 프로젝트: Spudster3/cgru
bool CmdJobsWeight::processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( getMsgType());
   return true;
}
예제 #11
0
bool CmdConfigMagic::processArguments( int argc, char** argv, af::Msg &msg)
{
    msg.set( af::Msg::TMagicNumber, atoi(argv[0]));
    return true;
}
예제 #12
0
void JobAf::writeProgress( af::Msg &msg)
{
	msg.set( af::Msg::TJobProgress, m_progress);
}
예제 #13
0
bool CmdInvalid::v_processArguments( int argc, char** argv, af::Msg &msg)
{
   msg.set( af::Msg::TInvalid);
   return true;
}
예제 #14
0
bool CmdRenderList::v_processArguments( int argc, char** argv, af::Msg &msg)
{
	msg.set( getMsgType());
	return true;
}