PCL
FITSHeaderKeyword.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.6.5
6 // ----------------------------------------------------------------------------
7 // pcl/FITSHeaderKeyword.h - Released 2024-01-13T15:47:58Z
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_FITSHeaderKeyword_h
53 #define __PCL_FITSHeaderKeyword_h
54 
56 
57 #include <pcl/Defs.h>
58 #include <pcl/Diagnostics.h>
59 
60 #include <pcl/Array.h>
61 #include <pcl/String.h>
62 
63 namespace pcl
64 {
65 
66 // ----------------------------------------------------------------------------
67 
72 class PCL_CLASS FITSHeaderKeyword
73 {
74 public:
75 
79 
84  FITSHeaderKeyword() = default;
85 
89  FITSHeaderKeyword( const FITSHeaderKeyword& ) = default;
90 
94  FITSHeaderKeyword( FITSHeaderKeyword&& ) = default;
95 
100  FITSHeaderKeyword( const IsoString& a_name,
101  const IsoString& a_value = IsoString(),
102  const IsoString& a_comment = IsoString() )
103  : name( a_name )
104  , value( a_value )
105  , comment( a_comment )
106  {
107  Trim();
108  }
109 
110  template <class S1, class S2, class S3>
111  FITSHeaderKeyword( const S1& a_name, const S2& a_value, const S3& a_comment )
112  : name( IsoString( a_name ) )
113  , value( IsoString( a_value ) )
114  , comment( IsoString( a_comment ) )
115  {
116  Trim();
117  }
118 
122  FITSHeaderKeyword& operator =( const FITSHeaderKeyword& ) = default;
123 
128  bool IsNull() const
129  {
130  return value.IsEmpty();
131  }
132 
139  bool IsString() const
140  {
141  return value.StartsWith( '\'' );
142  }
143 
150  bool IsBoolean() const
151  {
152  return value == 'T' || value == 'F';
153  }
154 
161  bool IsNumeric() const
162  {
163  return value.IsNumeral();
164  }
165 
174  bool GetNumericValue( double& v ) const
175  {
176  if ( value.TryToDouble( v ) )
177  return true;
178  v = 0;
179  return false;
180  }
181 
188  {
189  IsoString stripped;
190 
191  if ( !value.IsEmpty() && *value == '\'' ) // leading delimiter ?
192  {
193  size_type n = value.Length()-1;
194  if ( value[n] == '\'' ) // trailing delimiter ?
195  --n;
196  stripped = value.Substring( 1, n );
197  }
198  else
199  stripped = value;
200 
201  return stripped.Trimmed();
202  }
203 
210  {
211  double dum;
212  if ( !IsNull() )
213  if ( !IsString() )
214  if ( !IsBoolean() )
215  if ( !IsNumeric() || !value.TryToDouble( dum ) )
216  {
217  value.EnsureSingleQuoted();
218  return true;
219  }
220  return false;
221  }
222 
227  void Trim()
228  {
229  name.Trim();
230  value.Trim();
231  comment.Trim();
232  }
233 };
234 
235 // ----------------------------------------------------------------------------
236 
244 using FITSKeywordArray = Array<FITSHeaderKeyword>;
245 
246 // ----------------------------------------------------------------------------
247 
261 inline bool operator ==( const FITSHeaderKeyword& h1, const FITSHeaderKeyword& h2 )
262 {
263  // Keyword name comparison is case-insensitive as per the FITS standard.
264  return h1.name.CompareIC( h2.name ) == 0 && h1.value == h2.value && h1.comment == h2.comment;
265 }
266 
277 inline bool operator <( const FITSHeaderKeyword& h1, const FITSHeaderKeyword& h2 )
278 {
279  int i = h1.name.CompareIC( h2.name );
280  return i < 0 || i == 0 && (h1.value < h2.value || h1.value == h2.value && h1.comment < h2.comment);
281 }
282 
283 // ----------------------------------------------------------------------------
284 
285 } // pcl
286 
287 #endif // __PCL_FITSHeaderKeyword_h
288 
289 // ----------------------------------------------------------------------------
290 // EOF pcl/FITSHeaderKeyword.h - Released 2024-01-13T15:47:58Z
pcl
PCL root namespace.
Definition: AbstractImage.h:76
pcl::FITSHeaderKeyword::value
IsoString value
Keyword value.
Definition: FITSHeaderKeyword.h:77
pcl::GenericString::StartsWith
bool StartsWith(const GenericString< T, R1, A1 > &s) const noexcept
Definition: String.h:2828
pcl::FITSHeaderKeyword::IsBoolean
bool IsBoolean() const
Definition: FITSHeaderKeyword.h:150
pcl::GenericString::CompareIC
int CompareIC(const GenericString< T, R1, A1 > &s, bool localeAware=true) const noexcept
Definition: String.h:3820
pcl::operator==
bool operator==(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2090
pcl::FITSHeaderKeyword::FITSHeaderKeyword
FITSHeaderKeyword(const IsoString &a_name, const IsoString &a_value=IsoString(), const IsoString &a_comment=IsoString())
Definition: FITSHeaderKeyword.h:100
pcl::IsoString
Eight-bit string (ISO/IEC-8859-1 or UTF-8 string)
Definition: String.h:5424
FITSKeywordArray
Dynamic array of FITS header keywords.
Array.h
pcl::FITSHeaderKeyword::name
IsoString name
Keyword name.
Definition: FITSHeaderKeyword.h:76
pcl::FITSHeaderKeyword::IsNumeric
bool IsNumeric() const
Definition: FITSHeaderKeyword.h:161
pcl::GenericString::IsEmpty
bool IsEmpty() const noexcept
Definition: String.h:818
pcl::size_type
size_t size_type
Definition: Defs.h:612
pcl::FITSHeaderKeyword::GetNumericValue
bool GetNumericValue(double &v) const
Definition: FITSHeaderKeyword.h:174
pcl::GenericString::Trim
void Trim()
Definition: String.h:3286
pcl::FITSHeaderKeyword::Trim
void Trim()
Definition: FITSHeaderKeyword.h:227
pcl::FITSHeaderKeyword::IsNull
bool IsNull() const
Definition: FITSHeaderKeyword.h:128
pcl::FITSHeaderKeyword::StripValueDelimiters
IsoString StripValueDelimiters() const
Definition: FITSHeaderKeyword.h:187
pcl::ProcessParameterType::IsNumeric
bool IsNumeric(int type)
Definition: ProcessParameter.h:125
String.h
pcl::GenericString::IsNumeral
bool IsNumeral() const noexcept
Definition: String.h:4135
pcl::GenericString::Length
size_type Length() const noexcept
Definition: String.h:760
pcl::FITSHeaderKeyword::IsString
bool IsString() const
Definition: FITSHeaderKeyword.h:139
Defs.h
pcl::IsoString::TryToDouble
bool TryToDouble(double &value) const noexcept
pcl::GenericString::EnsureSingleQuoted
void EnsureSingleQuoted()
Definition: String.h:3425
pcl::FITSHeaderKeyword::FixValueDelimiters
bool FixValueDelimiters()
Definition: FITSHeaderKeyword.h:209
pcl::FITSHeaderKeyword
FITS header keyword
Definition: FITSHeaderKeyword.h:72
pcl::FITSHeaderKeyword::comment
IsoString comment
Keyword comment.
Definition: FITSHeaderKeyword.h:78
pcl::operator<
bool operator<(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2101