PCL
Console.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.8.5
6 // ----------------------------------------------------------------------------
7 // pcl/Console.h - Released 2024-12-28T16:53:48Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2024 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_Console_h
53 #define __PCL_Console_h
54 
56 
57 #ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
58 
59 #include <pcl/Defs.h>
60 
61 #include <pcl/StringList.h>
62 
63 namespace pcl
64 {
65 
66 // ----------------------------------------------------------------------------
67 
68 class PCL_CLASS View;
69 
360 class PCL_CLASS Console
361 {
362 public:
363 
368 
373  Console( const Console& ) = delete;
374 
379  : m_handle( x.m_handle )
380  , m_thread( x.m_thread )
381  {
382  x.m_handle = x.m_thread = nullptr;
383  }
384 
389  Console& operator =( const Console& ) = delete;
390 
394  Console& operator =( Console&& x )
395  {
396  if ( &x != this )
397  {
398  m_handle = x.m_handle;
399  m_thread = x.m_thread;
400  x.m_handle = x.m_thread = nullptr;
401  }
402  return *this;
403  }
404 
408  virtual ~Console();
409 
413  void Write( const String& s );
414 
422  void WriteLn( const String& s );
423 
430  void WriteLn();
431 
439  void Note( const String& s )
440  {
441  Write( "\x1b[32m" + s + "\x1b[39m" );
442  }
443 
450  void NoteLn( const String& s )
451  {
452  WriteLn( "\x1b[32m" + s + "\x1b[39m" );
453  }
454 
462  void Warning( const String& s )
463  {
464  Write( "\x1b[35m" + s + "\x1b[39m" );
465  }
466 
473  void WarningLn( const String& s )
474  {
475  WriteLn( "\x1b[35m" + s + "\x1b[39m" );
476  }
477 
485  void Critical( const String& s )
486  {
487  Write( "\x1b[31m" + s + "\x1b[39m" );
488  }
489 
496  void CriticalLn( const String& s )
497  {
498  WriteLn( "\x1b[31m" + s + "\x1b[39m" );
499  }
500 
511  int ReadChar();
512 
526 
531  bool Suspended() const;
532 
536  bool Waiting() const;
537 
541  bool AbortEnabled() const;
542 
547  bool AbortRequested() const;
548 
564  void ResetStatus();
565 
575  void EnableAbort();
576 
586  void DisableAbort();
587 
597  void Abort();
598 
603  bool IsValid() const;
604 
610 
617  void Flush();
618 
635  bool Show( bool show = true );
636 
648  bool Hide( bool hide = true )
649  {
650  return Show( !hide );
651  }
652 
665  void Clear();
666 
670  void ExecuteCommand( const String& command );
671 
718  void ExecuteScript( const String& filePath, const StringKeyValueList& arguments = StringKeyValueList() );
719 
735  void ExecuteScriptGlobal( const String& filePath, const StringKeyValueList& arguments = StringKeyValueList() );
736 
751  void ExecuteScriptOn( const View& view, const String& filePath, const StringKeyValueList& arguments = StringKeyValueList() );
752 
753 protected:
754 
755  void* m_handle = nullptr;
756 
757 private:
758 
759  void* m_thread = nullptr;
760 };
761 
762 // ----------------------------------------------------------------------------
763 
773 template <typename T>
774 inline Console& operator <<( Console& o, T t )
775 {
776  o.Write( String( t ) );
777  return o;
778 }
779 
785 inline Console& operator <<( Console& o, const char* s )
786 {
787  o.Write( s );
788  return o;
789 }
790 
796 inline Console& operator <<( Console& o, const String& s )
797 {
798  o.Write( s );
799  return o;
800 }
801 
807 inline Console& operator >>( Console& o, char& c )
808 {
809  c = o.ReadChar();
810  return o;
811 }
812 
819 {
820  s = o.ReadString();
821  return o;
822 }
823 
824 // ----------------------------------------------------------------------------
825 
826 } // pcl
827 
828 #endif // __PCL_BUILDING_PIXINSIGHT_APPLICATION
829 
830 #endif // __PCL_Console_h
831 
832 // ----------------------------------------------------------------------------
833 // EOF pcl/Console.h - Released 2024-12-28T16:53:48Z
Generic dynamic array.
Definition: Array.h:100
A high-level interface to a PixInsight processing console.
Definition: Console.h:361
bool IsValid() const
bool Suspended() const
bool AbortEnabled() const
void WriteLn(const String &s)
void CriticalLn(const String &s)
Definition: Console.h:496
void ExecuteScriptOn(const View &view, const String &filePath, const StringKeyValueList &arguments=StringKeyValueList())
void Warning(const String &s)
Definition: Console.h:462
bool Show(bool show=true)
void ExecuteScriptGlobal(const String &filePath, const StringKeyValueList &arguments=StringKeyValueList())
void ExecuteScript(const String &filePath, const StringKeyValueList &arguments=StringKeyValueList())
virtual ~Console()
void EnableAbort()
void ResetStatus()
void WriteLn()
Console(Console &&x)
Definition: Console.h:378
void DisableAbort()
void Write(const String &s)
bool Waiting() const
bool IsCurrentThreadConsole() const
String ReadString()
bool AbortRequested() const
void Critical(const String &s)
Definition: Console.h:485
void Note(const String &s)
Definition: Console.h:439
void NoteLn(const String &s)
Definition: Console.h:450
Console(const Console &)=delete
bool Hide(bool hide=true)
Definition: Console.h:648
void WarningLn(const String &s)
Definition: Console.h:473
Unicode (UTF-16) string.
Definition: String.h:8146
High-level interface to a PixInsight view object.
Definition: View.h:213
Array< T, A > & operator<<(Array< T, A > &x, const V &v)
Definition: Array.h:2313
Console & operator>>(Console &o, char &c)
Definition: Console.h:807
PCL root namespace.
Definition: AbstractImage.h:77