mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	* Refactored logging system to use syslog(3) exclusively. * Removed the 'Facility=', 'LogDirectory=', 'CoreDumpDirectory=' and 'LogPattern=' directives from rd.conf(5).
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdrepld.h
 | 
						|
//
 | 
						|
// The Rivendell Replicator Daemon
 | 
						|
//
 | 
						|
//   (C) Copyright 2010,2016-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.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef RDREPLD_H
 | 
						|
#define RDREPLD_H
 | 
						|
 | 
						|
#include <vector>
 | 
						|
 | 
						|
#include <qobject.h>
 | 
						|
#include <qtimer.h>
 | 
						|
 | 
						|
#include <rdconfig.h>
 | 
						|
 | 
						|
#include "replfactory.h"
 | 
						|
 | 
						|
#define RDREPLD_USAGE "[-d]\n\nOptions:\n\n-d\n     Set 'debug' mode, causing rdrepld(8) to stay in the foreground\n     and print debugging info on standard output.\n\n" 
 | 
						|
#define RD_RDREPLD_PID "rdrepl.pid"
 | 
						|
#define RD_RDREPL_SCAN_INTERVAL 10000
 | 
						|
 | 
						|
class MainObject : public QObject
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  MainObject(QObject *parent=0);
 | 
						|
 | 
						|
 private slots:
 | 
						|
  void mainLoop();
 | 
						|
 | 
						|
 private:
 | 
						|
  void ProcessCarts();
 | 
						|
  void LoadReplicators();
 | 
						|
  void FreeReplicators();
 | 
						|
  QTimer *repl_loop_timer;
 | 
						|
  QString repl_temp_dir;
 | 
						|
  std::vector<ReplFactory *> repl_replicators;
 | 
						|
  bool debug;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDREPLD_H
 |