2013-02-08 10:04:35 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2013-02-08 10:04:35 -06:00
|
|
|
// ResInsight 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2013-02-08 10:04:35 -06:00
|
|
|
// ResInsight 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2013-02-08 10:04:35 -06:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class RiaImageCompareReporter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RiaImageCompareReporter();
|
|
|
|
virtual ~RiaImageCompareReporter();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void addImageDirectoryComparisonSet( const std::string& title,
|
|
|
|
const std::string& baseImageDir,
|
|
|
|
const std::string& newImagesDir,
|
|
|
|
const std::string& diffImagesDir );
|
|
|
|
void generateHTMLReport( const std::string& filenName, const std::string& pathToDiff2html );
|
2013-02-08 10:04:35 -06:00
|
|
|
|
2016-01-11 00:59:44 -06:00
|
|
|
void showInteractiveOnly();
|
|
|
|
|
2013-02-08 10:04:35 -06:00
|
|
|
private:
|
2019-09-06 03:40:57 -05:00
|
|
|
static std::vector<std::string> getPngFilesInDirectory( const std::string& searchPath );
|
|
|
|
std::string cssString() const;
|
2013-02-08 10:04:35 -06:00
|
|
|
|
2016-01-11 00:59:44 -06:00
|
|
|
private:
|
2013-02-08 10:04:35 -06:00
|
|
|
struct DirSet
|
|
|
|
{
|
2023-02-26 03:48:40 -06:00
|
|
|
DirSet( const std::string& title, const std::string& baseImageDir, const std::string& newImagesDir, const std::string& diffImagesDir )
|
2019-09-06 03:40:57 -05:00
|
|
|
: m_title( title )
|
|
|
|
, m_baseImageDir( baseImageDir )
|
|
|
|
, m_newImagesDir( newImagesDir )
|
|
|
|
, m_diffImagesDir( diffImagesDir )
|
|
|
|
{
|
|
|
|
}
|
2013-02-08 10:04:35 -06:00
|
|
|
|
|
|
|
std::string m_title;
|
|
|
|
std::string m_baseImageDir;
|
|
|
|
std::string m_newImagesDir;
|
|
|
|
std::string m_diffImagesDir;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<DirSet> m_directorySets;
|
2016-01-11 00:59:44 -06:00
|
|
|
|
|
|
|
bool m_showOriginal;
|
|
|
|
bool m_showGenerated;
|
|
|
|
bool m_showInteractiveDiff;
|
2013-02-08 10:04:35 -06:00
|
|
|
};
|