PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ProcessInstance.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/ProcessInstance.h - Released 2025-02-21T12:13:32Z
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-2025 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_ProcessInstance_h
53 #define __PCL_ProcessInstance_h
54 
56 
57 #ifndef __PCL_BUILDING_PIXINSIGHT_APPLICATION
58 
59 #include <pcl/Defs.h>
60 
61 #include <pcl/Process.h>
62 #include <pcl/ProcessParameter.h>
63 #include <pcl/Variant.h>
64 
65 namespace pcl
66 {
67 
68 // ----------------------------------------------------------------------------
69 
70 class PCL_CLASS Process;
71 class PCL_CLASS ImageWindow;
72 class PCL_CLASS View;
73 
86 class PCL_CLASS ProcessInstance : public UIObject
87 {
88 public:
89 
95  ProcessInstance( const Process& process );
96 
106  {
107  }
108 
116  ~ProcessInstance() override
117  {
118  }
119 
126 
132 
148  uint32 Version() const;
149 
157  ProcessInstance& operator =( const ProcessInstance& p )
158  {
159  SetHandle( p.handle );
160  return *this;
161  }
162 
169 
188  bool Assign( const ProcessInstance& p );
189 
200  bool Validate( String& whyNot );
201 
210  bool IsHistoryUpdater( const View& view ) const;
211 
220  bool IsMaskable( const View& view, const ImageWindow& mask ) const;
221 
232  bool CanExecuteOn( const View& view, String& whyNot ) const;
233 
267  bool ExecuteOn( View& view, bool swapFile = true );
268 
286  bool CanExecuteGlobal( String& whyNot ) const;
287 
296 
307  bool CanExecuteOn( const ImageVariant& image, String& whyNot ) const;
308 
326  bool ExecuteOn( ImageVariant& image, const IsoString& hints = IsoString() );
327 
328  bool ExecuteOn( ImageVariant& image, const IsoString::ustring_base& hints )
329  {
330  return ExecuteOn( image, IsoString( hints ) );
331  }
332 
352  bool Launch();
353 
363  bool CanLaunchInterface() const;
364 
372 
383 
390  void SetDescription( const String& text );
391 
402  void GetExecutionTimes( double& startJD, double& elapsedSecs ) const;
403 
409  double StartJD() const
410  {
411  double startJD, dum;
412  GetExecutionTimes( startJD, dum );
413  return startJD;
414  }
415 
421  double ElapsedTime() const
422  {
423  double dum, elapsedSecs;
424  GetExecutionTimes( dum, elapsedSecs );
425  return elapsedSecs;
426  }
427 
452  String ToSource( const IsoString& language = "JavaScript",
453  const IsoString& varId = IsoString(), int indent = 0 ) const;
454 
473  String ToHistorySource( const String& xmlSource = String() ) const;
474 
484  static ProcessInstance FromSource( const String& source,
485  const IsoString& language = "JavaScript" );
486 
495  static ProcessInstance FromIcon( const IsoString& iconId );
496 
497  static ProcessInstance FromIcon( const IsoString::ustring_base& iconId )
498  {
499  return FromIcon( IsoString( iconId ) );
500  }
501 
507 
513  static IsoStringList IconsByProcessId( const IsoString& processId );
514 
515  static IsoStringList IconsByProcessId( const IsoString::ustring_base& processId )
516  {
517  return IconsByProcessId( IsoString( processId ) );
518  }
519 
559  Variant ParameterValue( const ProcessParameter& parameter, size_type rowIndex = ~size_type( 0 ) ) const;
560 
570  Variant ParameterValue( const IsoString& parameterId, size_type rowIndex = ~size_type( 0 ) ) const
571  {
572  return ParameterValue( ProcessParameter( ParentProcess(), parameterId ), rowIndex );
573  }
574 
575  Variant ParameterValue( const IsoString::ustring_base& parameterId, size_type rowIndex = ~size_type( 0 ) ) const
576  {
577  return ParameterValue( IsoString( parameterId ), rowIndex );
578  }
579 
624  bool SetParameterValue( const Variant& value,
625  const ProcessParameter& parameter, size_type rowIndex = ~size_type( 0 ) );
626 
636  bool SetParameterValue( const Variant& value, const IsoString& parameterId, size_type rowIndex = ~size_type( 0 ) )
637  {
638  return SetParameterValue( value, ProcessParameter( ParentProcess(), parameterId ), rowIndex );
639  }
640 
641  bool SetParameterValue( const Variant& value, const IsoString::ustring_base& parameterId, size_type rowIndex = ~size_type( 0 ) )
642  {
643  return SetParameterValue( value, IsoString( parameterId ), rowIndex );
644  }
645 
654  size_type TableRowCount( const ProcessParameter& table ) const;
655 
665  size_type TableRowCount( const IsoString& tableId ) const
666  {
667  return TableRowCount( ProcessParameter( ParentProcess(), tableId ) );
668  }
669 
670  size_type TableRowCount( const IsoString::ustring_base& tableId ) const
671  {
672  return TableRowCount( IsoString( tableId ) );
673  }
674 
695  bool AllocateTableRows( const ProcessParameter& table, size_type rowCount );
696 
706  bool AllocateTableRows( const IsoString& tableId, size_type rowCount )
707  {
708  return AllocateTableRows( ProcessParameter( ParentProcess(), tableId ), rowCount );
709  }
710 
711  bool AllocateTableRows( const IsoString::ustring_base& tableId, size_type rowCount )
712  {
713  return AllocateTableRows( IsoString( tableId ), rowCount );
714  }
715 
716 private:
717 
718  ProcessInstance( void* h ) : UIObject( h )
719  {
720  }
721 
722  ProcessInstance( const void* h ) : UIObject( h )
723  {
724  }
725 
726  void* CloneHandle() const override;
727 
728  friend class ProcessInstancePrivate;
729  friend class InterfaceDispatcher;
730  friend class InternalIconEnumerator;
731 };
732 
733 // ----------------------------------------------------------------------------
734 
735 } // pcl
736 
737 #endif // __PCL_BUILDING_PIXINSIGHT_APPLICATION
738 
739 #endif // __PCL_ProcessInstance_h
740 
741 // ----------------------------------------------------------------------------
742 // EOF pcl/ProcessInstance.h - Released 2025-02-21T12:13:32Z
Acts like a union for all types of images in PCL, with optional class-wide ownership of transported i...
Definition: ImageVariant.h:322
High-level interface to an image window object in the PixInsight core application.
Definition: ImageWindow.h:287
Eight-bit string (ISO/IEC-8859-1 or UTF-8 string)
Definition: String.h:5445
High-level interface to a process instance.
static ProcessInstance FromSource(const String &source, const IsoString &language="JavaScript")
Process ParentProcess() const
bool IsMaskable(const View &view, const ImageWindow &mask) const
String Description() const
ProcessInstance(const ProcessInstance &p)
ProcessInstance(const Process &process)
String ToHistorySource(const String &xmlSource=String()) const
size_type TableRowCount(const IsoString &tableId) const
static ProcessInstance & Null()
bool CanExecuteOn(const ImageVariant &image, String &whyNot) const
bool SetParameterValue(const Variant &value, const ProcessParameter &parameter, size_type rowIndex=~size_type(0))
static ProcessInstance FromIcon(const IsoString &iconId)
double StartJD() const
bool Validate(String &whyNot)
void GetExecutionTimes(double &startJD, double &elapsedSecs) const
size_type TableRowCount(const ProcessParameter &table) const
bool ExecuteOn(ImageVariant &image, const IsoString &hints=IsoString())
bool CanLaunchInterface() const
ProcessInstance Clone() const
bool SetParameterValue(const Variant &value, const IsoString &parameterId, size_type rowIndex=~size_type(0))
Variant ParameterValue(const ProcessParameter &parameter, size_type rowIndex=~size_type(0)) const
bool Assign(const ProcessInstance &p)
uint32 Version() const
void SetDescription(const String &text)
bool CanExecuteOn(const View &view, String &whyNot) const
static IsoStringList Icons()
bool ExecuteOn(View &view, bool swapFile=true)
bool AllocateTableRows(const IsoString &tableId, size_type rowCount)
Variant ParameterValue(const IsoString &parameterId, size_type rowIndex=~size_type(0)) const
String ToSource(const IsoString &language="JavaScript", const IsoString &varId=IsoString(), int indent=0) const
bool AllocateTableRows(const ProcessParameter &table, size_type rowCount)
double ElapsedTime() const
static IsoStringList IconsByProcessId(const IsoString &processId)
bool IsHistoryUpdater(const View &view) const
bool CanExecuteGlobal(String &whyNot) const
Identifies and describes a process parameter.
High-level interface to an installed process.
Definition: Process.h:99
Unicode (UTF-16) string.
Definition: String.h:8148
Root base class for all user interface objects.
Definition: UIObject.h:95
Acts like a union to store instances of different data types.
Definition: Variant.h:332
High-level interface to a PixInsight view object.
Definition: View.h:213
unsigned int uint32
Definition: Defs.h:666
size_t size_type
Definition: Defs.h:609
PCL root namespace.
Definition: AbstractImage.h:77