Added: #1440 Additional build stats

--HG--
branch : build_pipeline_v3
hg/feature/build_pipeline_v3
kaetemi 12 years ago
parent 38eb6f56fc
commit 67084cea1b

@ -280,6 +280,9 @@ int main(int nNbArg, char **ppArgs)
inFile.open( AllMapNames[i] ); inFile.open( AllMapNames[i] );
pBtmp->load(inFile); pBtmp->load(inFile);
AllMaps.push_back(pBtmp); AllMaps.push_back(pBtmp);
if (pBtmp->getWidth() == 0 || pBtmp->getHeight() == 0)
ToolLogger.writeError(PIPELINE::WARNING, AllMapNames[i], "Bitmap of width or height 0, corrupt data");
} }
catch (const NLMISC::Exception &e) catch (const NLMISC::Exception &e)
{ {

@ -513,6 +513,8 @@ public:
if (slaveIt == m_Slaves.end()) { nlerror("Received 'slaveLoggedToolError' from unknown slave at '%s'", sender->getModuleName().c_str()); m_Slaves.erase(sender); /*m_SlavesMutex.unlock();*/ return; } if (slaveIt == m_Slaves.end()) { nlerror("Received 'slaveLoggedToolError' from unknown slave at '%s'", sender->getModuleName().c_str()); m_Slaves.erase(sender); /*m_SlavesMutex.unlock();*/ return; }
CSlave *slave = slaveIt->second; CSlave *slave = slaveIt->second;
if (!macroPath.empty())
{
CBuildTaskInfo *task = m_BuildTaskQueue.getTaskInfo(slave->ActiveTaskId); CBuildTaskInfo *task = m_BuildTaskQueue.getTaskInfo(slave->ActiveTaskId);
CProcessPluginInfo pluginInfo; CProcessPluginInfo pluginInfo;
g_PipelineWorkspace->getProcessPlugin(pluginInfo, task->ProcessPluginId); g_PipelineWorkspace->getProcessPlugin(pluginInfo, task->ProcessPluginId);
@ -525,6 +527,7 @@ public:
fe.Project = task->ProjectName;; fe.Project = task->ProjectName;;
fe.Plugin = pluginInfo.Handler; fe.Plugin = pluginInfo.Handler;
CMetadataStorage::appendError(fe, CMetadataStorage::getErrorPath(unMacroPath(macroPath))); CMetadataStorage::appendError(fe, CMetadataStorage::getErrorPath(unMacroPath(macroPath)));
}
notifyTerminalTaskMessage(slave->ActiveTaskId, (TError)type, macroPath, time, error); notifyTerminalTaskMessage(slave->ActiveTaskId, (TError)type, macroPath, time, error);
} }

@ -685,6 +685,14 @@ public:
void finishedTask(TProcessResult errorLevel, std::string errorMessage) void finishedTask(TProcessResult errorLevel, std::string errorMessage)
{ {
nlinfo("errorLevel: %i, errorMessage: %s", (uint32)errorLevel, errorMessage.c_str()); nlinfo("errorLevel: %i, errorMessage: %s", (uint32)errorLevel, errorMessage.c_str());
stringstream ss;
ss << "Build: " << m_ActiveProcess->m_StatsBuild << ", Skip: " << m_ActiveProcess->m_StatsSkip << ", Invalid: " << m_ActiveProcess->m_StatsInvalid << ", Total: "
<< (m_ActiveProcess->m_StatsBuild + m_ActiveProcess->m_StatsSkip + m_ActiveProcess->m_StatsInvalid);
nlinfo("%s", ss.str().c_str());
stringstream ss2;
ss2 << NLMISC::CTime::getSecondsSince1970();
if (m_Master) // TODO: Maybe send this as part of the finished build task message, would be cleaner ;)
m_Master->slaveLoggedToolError(this, (uint8)MESSAGE, "", ss2.str(), ss.str());
clearActiveProcess(); clearActiveProcess();
m_SlaveTaskState = IDLE_WAIT_MASTER; m_SlaveTaskState = IDLE_WAIT_MASTER;
if (m_Master) // else was disconnect if (m_Master) // else was disconnect

@ -50,7 +50,7 @@ using namespace std;
namespace PIPELINE { namespace PIPELINE {
CPipelineProcessImpl::CPipelineProcessImpl(CPipelineProject *activeProject) : m_ActiveProject(activeProject), m_SubTaskResult(FINISH_NOT), m_Aborting(false) CPipelineProcessImpl::CPipelineProcessImpl(CPipelineProject *activeProject) : m_ActiveProject(activeProject), m_SubTaskResult(FINISH_NOT), m_Aborting(false), m_StatsBuild(0), m_StatsSkip(0), m_StatsInvalid(0)
{ {
if (activeProject == NULL) if (activeProject == NULL)
{ {

@ -114,6 +114,10 @@ private:
bool m_Aborting; bool m_Aborting;
TErrorLogCallback m_ErrorLogCallback; TErrorLogCallback m_ErrorLogCallback;
uint32 m_StatsBuild;
uint32 m_StatsSkip;
uint32 m_StatsInvalid;
private: private:
bool getDependencyFileStatusCached(CFileStatus &fileStatus, const std::string &filePath); bool getDependencyFileStatusCached(CFileStatus &fileStatus, const std::string &filePath);
bool getDependencyFileStatusLatest(CFileStatus &fileStatus, const std::string &filePath); bool getDependencyFileStatusLatest(CFileStatus &fileStatus, const std::string &filePath);

@ -183,7 +183,10 @@ bool CPipelineProcessImpl::hasFileBeenAddedSince(const std::string &inputFile, u
bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inputPaths, bool inputDepends) bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inputPaths, bool inputDepends)
{ {
if (m_SubTaskResult != FINISH_SUCCESS) if (m_SubTaskResult != FINISH_SUCCESS)
{
++m_StatsInvalid;
return false; // Cannot continue on previous failure. return false; // Cannot continue on previous failure.
}
m_SubTaskResult = FINISH_NOT; m_SubTaskResult = FINISH_NOT;
@ -195,12 +198,14 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("Input file '") + path + "' cannot be a directory"; m_SubTaskErrorMessage = std::string("Input file '") + path + "' cannot be a directory";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
if (!isFileDependency(path)) if (!isFileDependency(path))
{ {
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("File '") + path + "' is not part of the dependencies"; m_SubTaskErrorMessage = std::string("File '") + path + "' is not part of the dependencies";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
} }
@ -233,6 +238,7 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
nldebug("No output files were tampered with since last successful build, rebuild not needed"); nldebug("No output files were tampered with since last successful build, rebuild not needed");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsSkip;
return false; // No rebuild required. return false; // No rebuild required.
} }
} }
@ -262,6 +268,7 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
nldebug("Not all input files have an .output files, rebuild"); nldebug("Not all input files have an .output files, rebuild");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild return true; // Rebuild
} }
else else
@ -277,7 +284,10 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
bool CPipelineProcessImpl::needsToBeRebuildSubByOutput(const std::vector<std::string> &inputPaths, bool inputChanged, bool inputDepends) bool CPipelineProcessImpl::needsToBeRebuildSubByOutput(const std::vector<std::string> &inputPaths, bool inputChanged, bool inputDepends)
{ {
if (m_SubTaskResult != FINISH_SUCCESS) if (m_SubTaskResult != FINISH_SUCCESS)
{
++m_StatsInvalid;
return false; // Cannot continue on previous failure. return false; // Cannot continue on previous failure.
}
m_SubTaskResult = FINISH_NOT; m_SubTaskResult = FINISH_NOT;
@ -311,6 +321,7 @@ bool CPipelineProcessImpl::needsToBeRebuildSubByOutput(const std::vector<std::st
// Require rebuild because we don't know if there's new output // Require rebuild because we don't know if there's new output
nldebug("Input file '%s' has output file with no output files, state not known, so rebuild", path.c_str()); nldebug("Input file '%s' has output file with no output files, state not known, so rebuild", path.c_str());
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -331,7 +342,10 @@ bool CPipelineProcessImpl::needsToBeRebuildSubByOutput(const std::vector<std::st
bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inputPaths, const std::vector<std::string> &outputPaths, bool inputDepends) bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inputPaths, const std::vector<std::string> &outputPaths, bool inputDepends)
{ {
if (m_SubTaskResult != FINISH_SUCCESS) if (m_SubTaskResult != FINISH_SUCCESS)
{
++m_StatsInvalid;
return false; // Cannot continue on previous failure. return false; // Cannot continue on previous failure.
}
m_SubTaskResult = FINISH_NOT; m_SubTaskResult = FINISH_NOT;
@ -348,6 +362,7 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("Directory '") + path + "' is not part of the dependencies"; m_SubTaskErrorMessage = std::string("Directory '") + path + "' is not part of the dependencies";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
} }
@ -358,6 +373,7 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("File '") + path + "' is not part of the dependencies"; m_SubTaskErrorMessage = std::string("File '") + path + "' is not part of the dependencies";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
} }
@ -407,6 +423,7 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
{ {
nldebug("No output files were tampered with since last successful build, rebuild not needed"); nldebug("No output files were tampered with since last successful build, rebuild not needed");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsSkip;
return false; // No rebuild required. return false; // No rebuild required.
} }
else else
@ -421,7 +438,10 @@ bool CPipelineProcessImpl::needsToBeRebuilt(const std::vector<std::string> &inpu
bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &inputPaths, const std::vector<std::string> &outputPaths, bool inputModified, bool inputDepends) bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &inputPaths, const std::vector<std::string> &outputPaths, bool inputModified, bool inputDepends)
{ {
if (m_SubTaskResult != FINISH_SUCCESS) if (m_SubTaskResult != FINISH_SUCCESS)
{
++m_StatsInvalid;
return false; // Cannot continue on previous failure. return false; // Cannot continue on previous failure.
}
m_SubTaskResult = FINISH_NOT; m_SubTaskResult = FINISH_NOT;
@ -434,6 +454,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("Output file '") + path + "' cannot be a directory"; m_SubTaskErrorMessage = std::string("Output file '") + path + "' cannot be a directory";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
} }
@ -447,6 +468,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
// If so, rebuild // If so, rebuild
nldebug("Output file '%s' has been removed, rebuild", path.c_str()); nldebug("Output file '%s' has been removed, rebuild", path.c_str());
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -461,6 +483,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
// If so, rebuild // If so, rebuild
nldebug("Output file '%s' does not exist, rebuild", path.c_str()); nldebug("Output file '%s' does not exist, rebuild", path.c_str());
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -498,6 +521,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nlwarning("Depend file for existing output '%s' does not exist, this should not happen, rebuild", path.c_str()); nlwarning("Depend file for existing output '%s' does not exist, this should not happen, rebuild", path.c_str());
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
else else
@ -513,6 +537,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
// FIXME: Is it really necessary to recalculate the crc32 if the status file is broken for an output file? Useful though for some rare cases. // FIXME: Is it really necessary to recalculate the crc32 if the status file is broken for an output file? Useful though for some rare cases.
m_SubTaskResult = FINISH_ERROR; m_SubTaskResult = FINISH_ERROR;
m_SubTaskErrorMessage = std::string("Could not get status for output file '") + path + "', this should never happen at all, coding error"; m_SubTaskErrorMessage = std::string("Could not get status for output file '") + path + "', this should never happen at all, coding error";
++m_StatsInvalid;
return false; // Error, cannot rebuild. return false; // Error, cannot rebuild.
} }
else else
@ -521,6 +546,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nlwarning("Status checksum %i for output file '%s' does match depend checksum %i, output file was modified, this should not happen, rebuild", metaStatus.CRC32, path.c_str(), metaDepend.CRC32); nlwarning("Status checksum %i for output file '%s' does match depend checksum %i, output file was modified, this should not happen, rebuild", metaStatus.CRC32, path.c_str(), metaDepend.CRC32);
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -537,6 +563,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nlwarning("Output file '%s' depends on unknown file '%s', rebuild", path.c_str(), dependencyFile.c_str()); nlwarning("Output file '%s' depends on unknown file '%s', rebuild", path.c_str(), dependencyFile.c_str());
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
else else
@ -545,6 +572,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nldebug("Status checksum %i for input file '%s' does match depend checksum %i, input file was modified, rebuild", metaStatus.CRC32, dependencyFile.c_str(), dependency.CRC32); nldebug("Status checksum %i for input file '%s' does match depend checksum %i, input file was modified, rebuild", metaStatus.CRC32, dependencyFile.c_str(), dependency.CRC32);
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -574,6 +602,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nldebug("Found a file added after last build start in a dependency directory that is not known by the depend files, rebuild"); nldebug("Found a file added after last build start in a dependency directory that is not known by the depend files, rebuild");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -585,6 +614,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
{ {
nldebug("Found a dependency file added after last build start that is not known by the depend files, rebuild"); nldebug("Found a dependency file added after last build start that is not known by the depend files, rebuild");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsBuild;
return true; // Rebuild. return true; // Rebuild.
} }
} }
@ -595,6 +625,7 @@ bool CPipelineProcessImpl::needsToBeRebuiltSub(const std::vector<std::string> &i
// (if any checksum was different, require rebuild, if no checksums were different, no rebuild is needed) // (if any checksum was different, require rebuild, if no checksums were different, no rebuild is needed)
nldebug("No differences found, no rebuild needed"); nldebug("No differences found, no rebuild needed");
m_SubTaskResult = FINISH_SUCCESS; m_SubTaskResult = FINISH_SUCCESS;
++m_StatsSkip;
return false; // Rebuild not necessary. return false; // Rebuild not necessary.
} }

@ -160,7 +160,8 @@ void CPipelineProcessImpl::parseToolLog(const std::string &dependLogFile, const
} }
std::string path = standardizePath(tabbedLine[1], false); std::string path = standardizePath(tabbedLine[1], false);
nlwarning("Read error log line: %s, %s, %s, %s", tabbedLine[0].c_str(), path.c_str(), tabbedLine[2].c_str(), tabbedLine[3].c_str()); nlwarning("Read error log line: %s, %s, %s, %s", tabbedLine[0].c_str(), path.c_str(), tabbedLine[2].c_str(), tabbedLine[3].c_str());
// TODO: Notify the master to write to the .errors meta file and update any connected terminals // Notify the master through the slave to write to the .errors meta file and update any connected terminals
m_ErrorLogCallback(type, path, tabbedLine[2], tabbedLine[3]);
if (type == ERROR) if (type == ERROR)
++nbErrors; ++nbErrors;
} }

Loading…
Cancel
Save