mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			295 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			295 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdpadengined.cpp
 | 
						|
//
 | 
						|
// Rivendell PAD Consolidation Server
 | 
						|
//
 | 
						|
//   (C) Copyright 2018 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//   This program is free software; you can redistribute it and/or modify
 | 
						|
//   it under the terms of the GNU General Public License version 2 as
 | 
						|
//   published by the Free Software Foundation.
 | 
						|
//
 | 
						|
//   This program is distributed in the hope that it will be useful,
 | 
						|
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
//   GNU General Public License for more details.
 | 
						|
//
 | 
						|
//   You should have received a copy of the GNU General Public
 | 
						|
//   License along with this program; if not, write to the Free Software
 | 
						|
//   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
//
 | 
						|
 | 
						|
#include <errno.h>
 | 
						|
#include <signal.h>
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
#include <qcoreapplication.h>
 | 
						|
#include <qstringlist.h>
 | 
						|
 | 
						|
#include <rdapplication.h>
 | 
						|
#include <rdconf.h>
 | 
						|
#include <rdescape_string.h>
 | 
						|
#include <rdpaths.h>
 | 
						|
 | 
						|
#include "rdpadengined.h"
 | 
						|
 | 
						|
bool global_pad_exiting=false;
 | 
						|
 | 
						|
void SigHandler(int signo)
 | 
						|
{
 | 
						|
  switch(signo) {
 | 
						|
  case SIGINT:
 | 
						|
  case SIGTERM:
 | 
						|
    global_pad_exiting=true;
 | 
						|
    break;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
MainObject::MainObject(QObject *parent)
 | 
						|
  : QObject(parent)
 | 
						|
{
 | 
						|
  QString err_msg;
 | 
						|
 | 
						|
  //
 | 
						|
  // Open the Database
 | 
						|
  //
 | 
						|
  rda=new RDApplication("rdpadengined","rdpadengined",RDPADENGINED_USAGE,this);
 | 
						|
  if(!rda->open(&err_msg)) {
 | 
						|
    fprintf(stderr,"rdpadengined: %s\n",(const char *)err_msg);
 | 
						|
    exit(1);
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Shed root permissions
 | 
						|
  //
 | 
						|
  if(getuid()==0) {
 | 
						|
    if(setgid(rda->config()->pypadGid())!=0) {
 | 
						|
      rda->log(RDConfig::LogErr,
 | 
						|
	       QString().sprintf("unable to set GID to %d [",
 | 
						|
				 rda->config()->pypadGid())+
 | 
						|
	       QString(strerror(errno))+"], exiting");
 | 
						|
      exit(1);
 | 
						|
    }
 | 
						|
    if(setuid(rda->config()->pypadUid())!=0) {
 | 
						|
      rda->log(RDConfig::LogErr,
 | 
						|
	       QString().sprintf("unable to set UID to %d [",
 | 
						|
				 rda->config()->pypadUid())+
 | 
						|
	       QString(strerror(errno))+"], exiting");
 | 
						|
      exit(1);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Read Command Options
 | 
						|
  //
 | 
						|
  for(unsigned i=0;i<rda->cmdSwitch()->keys();i++) {
 | 
						|
    if(!rda->cmdSwitch()->processed(i)) {
 | 
						|
      rda->log(RDConfig::LogErr,
 | 
						|
	       QString("unknown command option \"")+rda->cmdSwitch()->key(i)+
 | 
						|
	       "\"");
 | 
						|
      exit(2);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // RIPCD Connection
 | 
						|
  //
 | 
						|
  connect(rda->ripc(),SIGNAL(connected(bool)),
 | 
						|
	  this,SLOT(ripcConnectedData(bool)));
 | 
						|
  connect(rda->ripc(),SIGNAL(notificationReceived(RDNotification *)),
 | 
						|
	  this,SLOT(notificationReceivedData(RDNotification *)));
 | 
						|
  rda->
 | 
						|
    ripc()->connectHost("localhost",RIPCD_TCP_PORT,rda->config()->password());
 | 
						|
 | 
						|
  //
 | 
						|
  // Exit Timer
 | 
						|
  //
 | 
						|
  pad_exit_timer=new QTimer(this);
 | 
						|
  connect(pad_exit_timer,SIGNAL(timeout()),this,SLOT(exitData()));
 | 
						|
  pad_exit_timer->start(100);
 | 
						|
 | 
						|
  ::signal(SIGINT,SigHandler);
 | 
						|
  ::signal(SIGTERM,SigHandler);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::ripcConnectedData(bool state)
 | 
						|
{
 | 
						|
  QStringList args;
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  //
 | 
						|
  // Clear DB Records
 | 
						|
  //
 | 
						|
  sql=QString("update PYPAD_INSTANCES set ")+
 | 
						|
    "IS_RUNNING=\"N\","+
 | 
						|
    "EXIT_CODE=0,"+
 | 
						|
    "ERROR_TEXT=null "+
 | 
						|
    "where STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\"";
 | 
						|
  RDSqlQuery::apply(sql);
 | 
						|
 | 
						|
  //
 | 
						|
  // Start Scripts
 | 
						|
  //
 | 
						|
  sql=QString("select ")+
 | 
						|
    "ID,"           // 00
 | 
						|
    "SCRIPT_PATH "  // 01
 | 
						|
    "from PYPAD_INSTANCES where "+
 | 
						|
    "STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\"";
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  while(q->next()) {
 | 
						|
    StartScript(q->value(0).toUInt(),q->value(1).toString());
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::notificationReceivedData(RDNotification *notify)
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  if(notify->type()==RDNotification::PypadType) {
 | 
						|
    int id=notify->id().toUInt();
 | 
						|
    switch(notify->action()) {
 | 
						|
    case RDNotification::AddAction:
 | 
						|
      sql=QString("select SCRIPT_PATH from PYPAD_INSTANCES where ")+
 | 
						|
	QString().sprintf("ID=%u && ",id)+
 | 
						|
	"STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\"";
 | 
						|
      q=new RDSqlQuery(sql);
 | 
						|
      if(q->first()) {
 | 
						|
	StartScript(id,q->value(0).toString());
 | 
						|
      }
 | 
						|
      delete q;
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDNotification::DeleteAction:
 | 
						|
      pad_instances.value(id)->setPrivateData((void *)true);  // No Restart
 | 
						|
      KillScript(id);
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDNotification::ModifyAction:
 | 
						|
      KillScript(id);
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDNotification::NoAction:
 | 
						|
    case RDNotification::LastAction:
 | 
						|
      break;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::instanceStartedData(int id)
 | 
						|
{
 | 
						|
  SetRunStatus(id,true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::instanceFinishedData(int id)
 | 
						|
{
 | 
						|
  RDProcess *proc=pad_instances.value(id);
 | 
						|
 | 
						|
  if(proc->process()->exitStatus()!=QProcess::NormalExit) {
 | 
						|
    rda->log(RDConfig::LogWarning,
 | 
						|
	     QString().sprintf("PyPAD script %d crashed\n",id));
 | 
						|
    SetRunStatus(id,false,-1,proc->standardErrorData());
 | 
						|
    proc->deleteLater();
 | 
						|
    pad_instances.remove(id);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(proc->process()->exitCode()==0) {
 | 
						|
    SetRunStatus(id,false);
 | 
						|
    bool no_restart=(bool)proc->privateData();
 | 
						|
    QString script_path=proc->arguments().at(0);
 | 
						|
    proc->deleteLater();
 | 
						|
    pad_instances.remove(id);
 | 
						|
    if(!no_restart) {
 | 
						|
      StartScript(id,script_path);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    if(!global_pad_exiting) {
 | 
						|
      rda->log(RDConfig::LogWarning,
 | 
						|
	       QString().sprintf("PyPAD script ID %d exited with code %d",
 | 
						|
				 id,proc->process()->exitCode()));
 | 
						|
      SetRunStatus(id,false,proc->process()->exitCode(),
 | 
						|
		   proc->standardErrorData());
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::exitData()
 | 
						|
{
 | 
						|
  if(global_pad_exiting) {
 | 
						|
    //
 | 
						|
    // Shut down all instances
 | 
						|
    //
 | 
						|
    for(QMap<unsigned,RDProcess *>::const_iterator it=pad_instances.begin();
 | 
						|
	it!=pad_instances.end();it++) {
 | 
						|
      it.value()->setPrivateData((void *)true);  // No Restart
 | 
						|
      it.value()->process()->terminate();
 | 
						|
    }
 | 
						|
 | 
						|
    //
 | 
						|
    // Update Database
 | 
						|
    //
 | 
						|
    QString sql=QString("update PYPAD_INSTANCES set ")+
 | 
						|
      "IS_RUNNING=\"N\" where "+
 | 
						|
      "STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\"";
 | 
						|
    RDSqlQuery::apply(sql);
 | 
						|
    exit(0);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::StartScript(unsigned id,const QString &script_path)
 | 
						|
{
 | 
						|
  RDProcess *proc=new RDProcess(id,this);
 | 
						|
  pad_instances[id]=proc;
 | 
						|
  connect(proc,SIGNAL(started(int)),this,SLOT(instanceStartedData(int)));
 | 
						|
  connect(proc,SIGNAL(finished(int)),this,SLOT(instanceFinishedData(int)));
 | 
						|
  QStringList args;
 | 
						|
  args.push_back(script_path);
 | 
						|
  args.push_back("localhost");
 | 
						|
  args.push_back(QString().sprintf("%u",RD_PAD_CLIENT_TCP_PORT));
 | 
						|
  args.push_back(QString().sprintf("$%u",id));
 | 
						|
  pad_instances.value(id)->start(RD_PYPAD_PYTHON_PATH,args);
 | 
						|
  rda->log(RDConfig::LogInfo,"starting: "+proc->program()+" "+
 | 
						|
	   proc->arguments().join(" ").toUtf8());
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::KillScript(unsigned id)
 | 
						|
{
 | 
						|
  pad_instances.value(id)->process()->terminate();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainObject::SetRunStatus(unsigned id,bool state,int exit_code,
 | 
						|
			      const QString &err_text) const
 | 
						|
{
 | 
						|
  QString sql=QString("update PYPAD_INSTANCES set ")+
 | 
						|
    "IS_RUNNING=\""+RDYesNo(state)+"\","+
 | 
						|
    QString().sprintf("EXIT_CODE=%u,",exit_code);
 | 
						|
  if(err_text.isNull()) {
 | 
						|
    sql+="ERROR_TEXT=null ";
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    sql+="ERROR_TEXT=\""+RDEscapeString(err_text)+"\" ";
 | 
						|
  }
 | 
						|
  sql+=QString().sprintf("where ID=%u",id);
 | 
						|
  RDSqlQuery::apply(sql);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int main(int argc,char *argv[])
 | 
						|
{
 | 
						|
  QCoreApplication a(argc,argv);
 | 
						|
 | 
						|
  new MainObject();
 | 
						|
  return a.exec();
 | 
						|
}
 |