Files
tenmon/3rdparty/include/pcl/SpinStatus.h
T
2022-04-12 08:17:18 +02:00

204 lines
7.1 KiB
C++

// ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 2.4.23
// ----------------------------------------------------------------------------
// pcl/SpinStatus.h - Released 2022-03-12T18:59:29Z
// ----------------------------------------------------------------------------
// This file is part of the PixInsight Class Library (PCL).
// PCL is a multiplatform C++ framework for development of PixInsight modules.
//
// Copyright (c) 2003-2022 Pleiades Astrophoto S.L. All Rights Reserved.
//
// Redistribution and use in both source and binary forms, with or without
// modification, is permitted provided that the following conditions are met:
//
// 1. All redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. All redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
// of their contributors, may be used to endorse or promote products derived
// from this software without specific prior written permission. For written
// permission, please contact info@pixinsight.com.
//
// 4. All products derived from this software, in any form whatsoever, must
// reproduce the following acknowledgment in the end-user documentation
// and/or other materials provided with the product:
//
// "This product is based on software from the PixInsight project, developed
// by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
//
// Alternatively, if that is where third-party acknowledgments normally
// appear, this acknowledgment must be reproduced in the product itself.
//
// THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
// INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
// DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// ----------------------------------------------------------------------------
#ifndef __PCL_SpinStatus_h
#define __PCL_SpinStatus_h
/// \file pcl/SpinStatus.h
#ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
#include <pcl/Defs.h>
#include <pcl/Console.h>
#include <pcl/StatusMonitor.h>
namespace pcl
{
// ----------------------------------------------------------------------------
/*!
* \class SpinStatus
* \brief A status monitoring callback that shows a spinning character
* animation on the processing console.
*
* %SpinStatus is a StatusCallback derived class that generates a <em>spinning
* character animation</em> on the processing console. The spinning animation
* consists of successively writing the four - \ | / characters at the same
* position on the console. This is a classical form of text-based animation
* that provides a nice feedback to the user while a long process is running.
*
* %SpinStatus is suitable for processes where a total <em>status monitoring
* count</em> cannot be computed in advance. For example, this happens with
* processes that perform an unpredictable number of iterations while a given
* contition is not fulfilled. When a status monitoring count is available
* before running a process, the StandardStatus monitoring class is preferable.
*
* %SpinStatus and %StandardStatus are used by all standard PixInsight
* processes and file formats. Unless a specific module has an extremely good
* reason to proceed otherwise, we recommend that all modules also use these
* monitoring classes. This ensures that efficient and coherent feedback is
* provided to the user on the entire PixInsight platform.
*
* As %StandardStatus, %SpinStatus also allows the PixInsight core application
* to process mouse, keyboard and screen update events. In this way the
* application's GUI remains responsive in case the user requests aborting
* or suspending the monitored process.
*
* \sa StatusCallback, StatusMonitor, Console, StandardStatus,
* ProgressBarStatus, MuteStatus
*/
class PCL_CLASS SpinStatus : public StatusCallback
{
public:
/*!
* Constructs a default %SpinStatus object.
*/
SpinStatus() = default;
/*!
* Copy constructor.
*/
SpinStatus( const SpinStatus& x )
: StatusCallback( x )
, m_spinCount( x.m_spinCount )
{
}
/*!
* Move constructor.
*/
SpinStatus( SpinStatus&& x )
: StatusCallback( std::move( x ) )
, m_console( std::move( x.m_console ) )
, m_spinCount( x.m_spinCount )
, m_thread( x.m_thread )
{
x.m_thread = nullptr;
}
/*!
* Destroys a %SpinStatus instance.
*/
virtual ~SpinStatus()
{
}
/*!
* Copy assignment operator. Returns a reference to this object.
*/
SpinStatus& operator =( const SpinStatus& x )
{
(void)StatusCallback::operator =( x );
m_spinCount = x.m_spinCount;
return *this;
}
/*!
* Move assignment operator. Returns a reference to this object.
*/
SpinStatus& operator =( SpinStatus&& x )
{
if ( this != &x )
{
(void)StatusCallback::operator =( std::move( x ) );
m_console = std::move( x.m_console );
m_spinCount = x.m_spinCount;
m_thread = x.m_thread;
x.m_thread = nullptr;
}
return *this;
}
/*!
* This function is called by a status monitor object \a m when a new
* monitored process is about to start.
*/
int Initialized( const StatusMonitor& m ) const override;
/*!
* Function called by a status monitor object \a m to signal an update of
* the progress count for the current process.
*/
int Updated( const StatusMonitor& m ) const override;
/*!
* Function called by a status monitor object \a m to signal that the
* current process has finished.
*/
int Completed( const StatusMonitor& m ) const override;
/*!
* Function called by a status monitor object \a m when the progress
* information for the current process has been changed.
*/
void InfoUpdated( const StatusMonitor& m ) const override;
private:
mutable pcl::Console m_console;
mutable unsigned m_spinCount = 0;
mutable void* m_thread = nullptr;
};
// ----------------------------------------------------------------------------
} // pcl
#endif // __PCL_BUILDING_PIXINSIGHT_APPLICATION
#endif // __PCL_SpinStatus_h
// ----------------------------------------------------------------------------
// EOF pcl/SpinStatus.h - Released 2022-03-12T18:59:29Z