Added: Seperated pipeline projects.
--HG-- branch : build_pipeline_v3hg/feature/build_pipeline_v3
parent
725ca56387
commit
811b8e3736
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* \file pipeline_plugin.cpp
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IPipelinePlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nel/misc/types_nl.h>
|
||||
#include "pipeline_plugin.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
IPipelinePlugin::IPipelinePlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
IPipelinePlugin::~IPipelinePlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,63 @@
|
||||
/**
|
||||
* \file pipeline_plugin.h
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IPipelinePlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PIPELINE_PIPELINE_PLUGIN_H
|
||||
#define PIPELINE_PIPELINE_PLUGIN_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
/**
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* A pipeline plugin (dll) exposes multiple process plugins.
|
||||
*/
|
||||
class IPipelinePlugin
|
||||
{
|
||||
protected:
|
||||
// pointers
|
||||
// ...
|
||||
|
||||
// instances
|
||||
// ...
|
||||
public:
|
||||
IPipelinePlugin();
|
||||
virtual ~IPipelinePlugin();
|
||||
}; /* class IPipelinePlugin */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PIPELINE_PLUGIN_H */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* \file process_plugin.cpp
|
||||
* \brief IProcessPlugin
|
||||
* \date 2012-02-25 10:19GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IProcessPlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nel/misc/types_nl.h>
|
||||
#include "process_plugin.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
IProcessPlugin::IProcessPlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
IProcessPlugin::~IProcessPlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,67 @@
|
||||
/**
|
||||
* \file process_plugin.h
|
||||
* \brief IProcessPlugin
|
||||
* \date 2012-02-25 10:19GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IProcessPlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PIPELINE_PROCESS_PLUGIN_H
|
||||
#define PIPELINE_PROCESS_PLUGIN_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
/**
|
||||
* \brief IProcessPlugin
|
||||
* \date 2012-02-25 10:19GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* /// REJECTED.A /// A process plugin handles process sheets with specified sheet extention.
|
||||
* /// REJECTED.A /// If more than one process plugin handles a sheet extention, all of them will be run.
|
||||
* A process sheet may define one or more process plugins to handle the process.
|
||||
* The master service may dispatch these seperately to different slave services to executa a single process sheets using multiple process plugins.
|
||||
* This enables creating seperate plugins for different file formats for the same process, to allow handling files from different modeling packages on different build servers.
|
||||
*/
|
||||
class IProcessPlugin
|
||||
{
|
||||
protected:
|
||||
// pointers
|
||||
// ...
|
||||
|
||||
// instances
|
||||
// ...
|
||||
public:
|
||||
IProcessPlugin();
|
||||
virtual ~IProcessPlugin();
|
||||
}; /* class IProcessPlugin */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PROCESS_PLUGIN_H */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* \file pipeline_plugin_max.cpp
|
||||
* \brief CPipelinePluginMax
|
||||
* \date 2012-02-25 10:39GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CPipelinePluginMax
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nel/misc/types_nl.h>
|
||||
#include "pipeline_plugin_max.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
CPipelinePluginMax::CPipelinePluginMax()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
CPipelinePluginMax::~CPipelinePluginMax()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,63 @@
|
||||
/**
|
||||
* \file pipeline_plugin_max.h
|
||||
* \brief CPipelinePluginMax
|
||||
* \date 2012-02-25 10:39GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* Fabulous max!
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PIPELINE_PIPELINE_PLUGIN_MAX_H
|
||||
#define PIPELINE_PIPELINE_PLUGIN_MAX_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
/**
|
||||
* \brief CPipelinePluginMax
|
||||
* \date 2012-02-25 10:39GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CPipelinePluginMax
|
||||
*/
|
||||
class CPipelinePluginMax
|
||||
{
|
||||
protected:
|
||||
// pointers
|
||||
// ...
|
||||
|
||||
// instances
|
||||
// ...
|
||||
public:
|
||||
CPipelinePluginMax();
|
||||
virtual ~CPipelinePluginMax();
|
||||
}; /* class CPipelinePluginMax */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PIPELINE_PLUGIN_MAX_H */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* \file process_max_shape.cpp
|
||||
* \brief CProcessMaxShape
|
||||
* \date 2012-02-25 10:45GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CProcessMaxShape
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nel/misc/types_nl.h>
|
||||
#include "process_max_shape.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
CProcessMaxShape::CProcessMaxShape()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
CProcessMaxShape::~CProcessMaxShape()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,63 @@
|
||||
/**
|
||||
* \file process_max_shape.h
|
||||
* \brief CProcessMaxShape
|
||||
* \date 2012-02-25 10:45GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CProcessMaxShape
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE 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 RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PIPELINE_PROCESS_MAX_SHAPE_H
|
||||
#define PIPELINE_PROCESS_MAX_SHAPE_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
/**
|
||||
* \brief CProcessMaxShape
|
||||
* \date 2012-02-25 10:45GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CProcessMaxShape
|
||||
*/
|
||||
class CProcessMaxShape
|
||||
{
|
||||
protected:
|
||||
// pointers
|
||||
// ...
|
||||
|
||||
// instances
|
||||
// ...
|
||||
public:
|
||||
CProcessMaxShape();
|
||||
virtual ~CProcessMaxShape();
|
||||
}; /* class CProcessMaxShape */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PROCESS_MAX_SHAPE_H */
|
||||
|
||||
/* end of file */
|
Loading…
Reference in New Issue