pyref_core/
loader.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/// This module provides functionality for working with FITS files using the `astrors::fits` crate.
///
/// # Examples
///
/// ```
/// use astrors::fits;
///
/// // Load a FITS file
/// let fits_file = fits::load("path/to/file.fits");
///
/// // Access the header information
/// let header = fits_file.header();
///
/// // Access the data
/// let data = fits_file.data();
/// ```
///
/// For more information, see the [README](README.md).
use astrors_fork::fits;
use astrors_fork::io;
use astrors_fork::io::hdulist::*;
use astrors_fork::io::header::*;
use numpy::ndarray::Array2;
use polars::{lazy::prelude::*, prelude::*};
use rayon::prelude::*;
use std::fs;
use std::ops::Mul;

// #[global_allocator]
// static GLOBAL: Jemalloc = Jemalloc;

// Enum representing different types of experiments.
pub enum ExperimentType {
    Xrr,
    Xrs,
    Other,
}

impl ExperimentType {
    pub fn from_str(exp_type: &str) -> Result<Self, &str> {
        match exp_type.to_lowercase().as_str() {
            "xrr" => Ok(ExperimentType::Xrr),
            "xrs" => Ok(ExperimentType::Xrs),
            "other" => Ok(ExperimentType::Other),
            _ => Err("Invalid experiment type"),
        }
    }

    pub fn get_keys(&self) -> Vec<HeaderValue> {
        match self {
            ExperimentType::Xrr => vec![
                HeaderValue::SampleTheta,
                HeaderValue::CCDTheta,
                HeaderValue::BeamlineEnergy,
                HeaderValue::BeamCurrent,
                HeaderValue::EPUPolarization,
                HeaderValue::HorizontalExitSlitSize,
                HeaderValue::HigherOrderSuppressor,
                HeaderValue::Exposure,
            ],
            ExperimentType::Xrs => vec![HeaderValue::BeamlineEnergy],
            ExperimentType::Other => vec![],
        }
    }
}

pub enum HeaderValue {
    SampleTheta,
    CCDTheta,
    BeamlineEnergy,
    EPUPolarization,
    BeamCurrent,
    HorizontalExitSlitSize,
    HigherOrderSuppressor,
    Exposure,
}

impl HeaderValue {
    pub fn unit(&self) -> &str {
        match self {
            HeaderValue::SampleTheta => "[deg]",
            HeaderValue::CCDTheta => "[deg]",
            HeaderValue::BeamlineEnergy => "[eV]",
            HeaderValue::BeamCurrent => "[mA]",
            HeaderValue::EPUPolarization => "[deg]",
            HeaderValue::HorizontalExitSlitSize => "[um]",
            HeaderValue::HigherOrderSuppressor => "[mm]",
            HeaderValue::Exposure => "[s]",
        }
    }
    pub fn hdu(&self) -> &str {
        match self {
            HeaderValue::SampleTheta => "Sample Theta",
            HeaderValue::CCDTheta => "CCD Theta",
            HeaderValue::BeamlineEnergy => "Beamline Energy",
            HeaderValue::BeamCurrent => "Beam Current",
            HeaderValue::EPUPolarization => "EPU Polarization",
            HeaderValue::HorizontalExitSlitSize => "Horizontal Exit Slit Size",
            HeaderValue::HigherOrderSuppressor => "Higher Order Suppressor",
            HeaderValue::Exposure => "EXPOSURE",
        }
    }
    pub fn name(&self) -> &str {
        // match and return the string "hdu" + "unit"
        match self {
            HeaderValue::SampleTheta => "Sample Theta [deg]",
            HeaderValue::CCDTheta => "CCD Theta [deg]",
            HeaderValue::BeamlineEnergy => "Beamline Energy [eV]",
            HeaderValue::BeamCurrent => "Beam Current [mA]",
            HeaderValue::EPUPolarization => "EPU Polarization [deg]",
            HeaderValue::HorizontalExitSlitSize => "Horizontal Exit Slit Size [um]",
            HeaderValue::HigherOrderSuppressor => "Higher Order Suppressor [mm]",
            HeaderValue::Exposure => "EXPOSURE [s]",
        }
    }
}

// Struct representing a CCD FITS file.
pub struct FitsLoader {
    pub path: String,
    pub hdul: HDUList,
}

/// FitsLoader struct for loading and accessing FITS file data.
///
/// The `FitsLoader` struct provides methods for loading and accessing data from a FITS file.
/// It supports retrieving individual card values, all card values, image data, and converting
/// the data to a Polars DataFrame.
///
/// # Example
///
/// ```
/// extern crate pyref_core;
/// use pyref_core::loader::FitsLoader;
///
/// let fits_loader = FitsLoader::new("/path/to/file.fits").unwrap();
///
/// // Get a specific card value
/// let card_value = fits_loader.get_value("CARD_NAME");
///
/// // Get all card values
/// let all_cards = fits_loader.get_all_cards();
///
/// // Get image data
/// let image_data = fits_loader.get_image();
///
/// // Convert data to Polars DataFrame
/// let keys = ["KEY1", "KEY2"];
/// let polars_df = fits_loader.to_polars(&keys);
/// ```
/// A struct representing a FITS loader.

impl FitsLoader {
    /// Creates a new `FitsLoader` instance.
    ///
    /// # Arguments
    ///
    /// * `path` - The path to the FITS file.
    ///
    /// # Returns
    ///
    /// A `Result` containing the `FitsLoader` instance if successful, or a boxed `dyn std::error::Error` if an error occurred.
    pub fn new(path: &str) -> Result<Self, Box<dyn std::error::Error + Send + Sync>> {
        let hdul = fits::fromfile(path)?;
        Ok(FitsLoader {
            path: path.to_string(),
            hdul,
        })
    }

    /// Retrieves a specific card from the FITS file.
    ///
    /// # Arguments
    ///
    /// * `card_name` - The name of the card to retrieve.
    ///
    /// # Returns
    ///
    /// An `Option` containing the requested `card::Card` if found, or `None` if not found.
    pub fn get_card(&self, card_name: &str) -> Option<card::Card> {
        match &self.hdul.hdus[0] {
            io::hdulist::HDU::Primary(hdu) => hdu.header.get_card(card_name).cloned(),
            _ => None,
        }
    }

    /// Retrieves the value of a specific card from the FITS file.
    ///
    /// # Arguments
    ///
    /// * `card_name` - The name of the card to retrieve the value from.
    ///
    /// # Returns
    ///
    /// An `Option` containing the value of the requested card as a `f64` if found, or `None` if not found.
    pub fn get_value(&self, card_name: &str) -> Option<f64> {
        let value = &self.value_from_hdu(card_name)?;
        let rounded_value = match card_name {
            // "EXPOSURE" | "Sample Theta" | "CCD Theta" | "Beam Current" => {
            //     (value * 10000.0).round() / 10000.0
            // }
            // "Higher Order Suppressor" => (value * 100.0).round() / 100.0,
            _ => value.clone(),
        };
        Some(rounded_value)
    }

    pub fn value_from_hdu(&self, card_name: &str) -> Option<f64> {
        match &self.hdul.hdus[0] {
            io::hdulist::HDU::Primary(hdu) => hdu
                .header
                .get_card(card_name)
                .map(|c| (c.value.as_float().unwrap())),
            _ => None,
        }
    }

    pub fn get_scan_num(&self) -> i32 {
        self.path
            .rsplit('/')
            .next()
            .and_then(|filename| filename.split('-').last())
            .and_then(|scan_id| scan_id.split('.').next())
            .and_then(|scan_id| scan_id.trim_start_matches('0').parse::<i32>().ok())
            .unwrap_or(0)
    }

    /// Retrieves all cards from the FITS file.
    ///
    /// # Returns
    ///
    /// A `Vec` containing all the cards as `card::Card` instances.
    pub fn get_all_cards(&self) -> Vec<card::Card> {
        match &self.hdul.hdus[0] {
            io::hdulist::HDU::Primary(hdu) => {
                hdu.header.iter().cloned().collect::<Vec<card::Card>>()
            }
            _ => vec![],
        }
    }

    /// Retrieves the image data from the FITS file.
    ///
    /// # Arguments
    ///
    /// * `data` - The image data to retrieve.
    ///
    /// # Returns
    ///
    /// A `Result` containing the image data as a `Array2<u32>` if successful, or a boxed `dyn std::error::Error` if an error occurred.
    fn get_data(
        &self,
        data: &io::hdus::image::ImageData,
    ) -> Result<(Vec<u32>, Vec<u32>), Box<dyn std::error::Error + Send + Sync>> {
        let (flat_data, shape) = match data {
            io::hdus::image::ImageData::I16(image) => {
                let flat_data = image.iter().map(|&x| u32::from(x as u16)).collect();
                let shape = image.dim();
                (flat_data, shape)
            }
            _ => return Err("Unsupported image data type".into()),
        };
        Ok((flat_data, vec![shape[0] as u32, shape[1] as u32]))
    }

    /// Retrieves the image data from the FITS file as an `Array2<u32>`.
    ///
    /// # Returns
    ///
    /// A `Result` containing the image data as a `Array2<u32>` if successful, or a boxed `dyn std::error::Error` if an error occurred.
    pub fn get_image(
        &self,
    ) -> Result<(Vec<u32>, Vec<u32>), Box<dyn std::error::Error + Send + Sync>> {
        match &self.hdul.hdus[2] {
            io::hdulist::HDU::Image(i_hdu) => self.get_data(&i_hdu.data),
            _ => Err("Image HDU not found".into()),
        }
    }

    /// Converts the FITS file data to a `polars::prelude::DataFrame`.
    ///
    /// # Arguments
    ///
    /// * `keys` - The keys of the cards to include in the DataFrame. If empty, all cards will be included.
    ///
    /// # Returns
    ///
    /// A `Result` containing the converted `DataFrame` if successful, or a boxed `dyn std::error::Error` if an error occurred.
    pub fn to_polars(
        &self,
        keys: &Vec<HeaderValue>,
    ) -> Result<DataFrame, Box<dyn std::error::Error + Send + Sync>> {
        let mut s_vec = if keys.is_empty() {
            // When keys are empty, use all cards.
            self.get_all_cards()
                .iter()
                .map(|card| {
                    let name = card.keyword.as_str();
                    let value = card.value.as_float().unwrap_or(0.0);
                    Series::new(name.into(), vec![value])
                })
                .collect::<Vec<_>>()
        } else {
            // Use specified keys
            keys.iter()
                .filter_map(|key| {
                    self.get_value(key.hdu())
                        .map(|value| Series::new(PlSmallStr::from_str(key.name()), vec![value]))
                })
                .collect::<Vec<_>>()
        };
        // Add the image data
        let (image, size) = match self.get_image() {
            Ok(data) => data,
            Err(e) => return Err(e),
        };

        s_vec.push(Series::new("Scan ID".into(), vec![self.get_scan_num()]));
        s_vec.push(vec_series("Raw", image));
        s_vec.push(vec_series("Raw Shape", size));
        DataFrame::new(s_vec).map_err(From::from)
    }
}
// Function facilitate storing the image data as a single element in a Polars DataFrame.
pub fn vec_series(name: &str, img: Vec<u32>) -> Series {
    let new_series = [img.iter().collect::<Series>()];
    Series::new(name.into(), new_series)
}

pub struct ExperimentLoader {
    pub dir: String,
    pub ccd_files: Vec<FitsLoader>,
    pub experiment_type: ExperimentType,
}

/// FitsLoader struct for loading and accessing FITS file data.
///
/// The `FitsLoader` struct provides methods for loading and accessing data from a FITS file.
/// It supports retrieving individual card values, all card values, image data, and converting
/// the data to a Polars DataFrame.
///
/// # Example
///
/// ```
/// extern crate pyref_core;
/// use pyref_core::loader::{ExperimentLoader, ExperimentType};
///
/// let exp = ExperimentType::from_str(exp_type)?;
/// let fits_loader = ExperimentLoader::new("/path/to/file.fits", exp).unwrap();
///
/// // Mostly this is used to convert the data to a Polars DataFrame
/// let df = fits_loader.to_polars()?;
/// ```

impl ExperimentLoader {
    // Create a new ExperimentLoader instance and load all Fits file in the directory.
    pub fn new(
        dir: &str,
        experiment_type: ExperimentType,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let ccd_files: Vec<_> = fs::read_dir(dir)?
            .filter_map(Result::ok)
            .filter(|entry| entry.path().extension().and_then(|ext| ext.to_str()) == Some("fits"))
            .collect();

        let ccd_files = ccd_files
            .par_iter() // Parallel iterator using Rayon
            .map(|entry| FitsLoader::new(entry.path().to_str().unwrap()))
            .collect::<Result<Vec<_>, Box<dyn std::error::Error + Send + Sync>>>();
        let ccd_files = match ccd_files {
            Ok(ccd_files) => ccd_files,
            Err(e) => return Err(e),
        };

        Ok(ExperimentLoader {
            dir: dir.to_string(),
            ccd_files,
            experiment_type,
        })
    }
    // Package all loaded FITS files into a single Polars DataFrame.
    pub fn to_polars(&self) -> Result<DataFrame, Box<dyn std::error::Error>> {
        let keys = self.experiment_type.get_keys();

        let dfs = self
            .ccd_files
            .par_iter()
            .map(|ccd| ccd.to_polars(&keys))
            .collect::<Result<Vec<_>, _>>();
        let mut dfs = match dfs {
            Ok(dfs) => dfs,
            Err(e) => return Err(e),
        };
        let mut df = dfs.pop().ok_or("No data found")?;
        for mut d in dfs {
            df.vstack_mut(&mut d)?;
        }
        Ok(post_process(df))
    }
}

// Post process dataframe
pub fn post_process(df: DataFrame) -> DataFrame {
    let h = physical_constants::PLANCK_CONSTANT_IN_EV_PER_HZ;
    let c = physical_constants::SPEED_OF_LIGHT_IN_VACUUM * 1e10;
    // Calculate lambda and q values in angstrom
    let lz = df
        .clone()
        .lazy()
        .sort(["Scan ID"], Default::default())
        .with_column(
            col("Beamline Energy [eV]")
                .pow(-1)
                .mul(lit(h * c))
                .alias("Lambda [Å]"),
        );
    let angle_offset = lz
        .clone()
        .filter(col("Sample Theta [deg]").neq(0.0))
        .first()
        .select(&[col("CCD Theta [deg]"), col("Sample Theta [deg]")])
        .with_column(
            as_struct(vec![col("Sample Theta [deg]"), col("CCD Theta [deg]")])
                .map(
                    move |s| {
                        let struc = s.struct_()?;
                        let th_series = struc.field_by_name("Sample Theta [deg]")?;
                        let theta = th_series.f64()?;
                        let ccd_th_series = struc.field_by_name("CCD Theta [deg]")?;
                        let ccd_theta = ccd_th_series.f64()?;
                        let out: Float64Chunked = theta
                            .into_iter()
                            .zip(ccd_theta.iter())
                            .map(|(theta, ccd_theta)| match (theta, ccd_theta) {
                                (Some(theta), Some(ccd_theta)) => {
                                    Some(theta_offset(theta, ccd_theta))
                                }
                                _ => Some(0.0),
                            })
                            .collect();
                        Ok(Some(out.into_series()))
                    },
                    GetOutput::from_type(DataType::Float64),
                )
                .alias("Theta Offset [deg]"),
        )
        .select(&[col("Theta Offset [deg]")])
        .collect()
        .unwrap()
        .get(0)
        .unwrap()[0]
        .try_extract::<f64>()
        .unwrap();
    // get the row cor
    let lz = lz
        .with_column(lit(angle_offset).alias("Theta Offset [deg]"))
        .with_column(
            as_struct(vec![col("Sample Theta [deg]"), col("Lambda [Å]")])
                .map(
                    move |s| {
                        let struc = s.struct_()?;
                        let th_series = struc.field_by_name("Sample Theta [deg]")?;
                        let theta = th_series.f64()?;
                        let lam_series = struc.field_by_name("Lambda [Å]")?;
                        let lam = lam_series.f64()?;

                        let out: Float64Chunked = theta
                            .into_iter()
                            .zip(lam.iter())
                            .map(|(theta, lam)| match (theta, lam) {
                                (Some(theta), Some(lam)) => Some(q(lam, theta, angle_offset)),
                                _ => None,
                            })
                            .collect();

                        Ok(Some(out.into_series()))
                    },
                    GetOutput::from_type(DataType::Float64),
                )
                .alias("Q [Å⁻¹]"),
        );
    lz.collect().unwrap()
}

// function to unpack an image wile iterating rhough a polars dataframe.
pub fn get_image(image_data: &[u32], shape: (usize, usize)) -> Result<Array2<u32>, PolarsError> {
    let image_array = Array2::from_shape_vec(shape, image_data.to_vec())
        .map_err(|_| PolarsError::ComputeError("Invalid image data".into()))?;
    Ok(image_array)
}

// workhorse functions for loading and processing CCD data.
pub fn read_fits(file_path: &str) -> Result<DataFrame, Box<dyn std::error::Error>> {
    let loader = match FitsLoader::new(file_path) {
        Ok(loader) => loader,
        Err(e) => return Err(e),
    };
    let df = match loader.to_polars(&vec![]) {
        Ok(df) => df,
        Err(e) => return Err(e),
    };
    Ok(df)
}

pub fn read_experiment(dir: &str, exp_type: &str) -> Result<DataFrame, Box<dyn std::error::Error>> {
    let exp = ExperimentType::from_str(exp_type)?;
    let df = ExperimentLoader::new(dir, exp)?.to_polars()?;
    Ok(df)
}

pub fn simple_update(df: &mut DataFrame, dir: &str) -> Result<(), Box<dyn std::error::Error>> {
    let ccd_files: Vec<_> = fs::read_dir(dir)?
        .filter_map(Result::ok)
        .filter(|entry| entry.path().extension().and_then(|ext| ext.to_str()) == Some("fits"))
        .collect();
    let not_loaded = ccd_files.len() as isize - df.height() as isize;
    if not_loaded == 0 {
        return Ok(());
    } else if not_loaded < 0 {
        return Err("Files out of sync with loaded data, Restart".into());
    }
    let ccd_files = ccd_files[..not_loaded as usize]
        .par_iter() // Parallel iterator using Rayon
        .map(|entry| FitsLoader::new(entry.path().to_str().unwrap()))
        .collect::<Result<Vec<_>, Box<dyn std::error::Error + Send + Sync>>>();
    let ccd_files = match ccd_files {
        Ok(ccd_files) => ccd_files,
        Err(e) => return Err(e),
    };
    let mut new_df = ExperimentLoader {
        dir: dir.to_string(),
        ccd_files,
        experiment_type: ExperimentType::Xrr,
    }
    .to_polars()?;
    df.vstack_mut(&mut new_df)?;
    Ok(())
}

// Find the theta offset between theta and the ccd theta or 2theta
fn theta_offset(theta: f64, ccd_theta: f64) -> f64 {
    // 2theta = -ccd_theta / 2 - theta rounded to 3 decimal places
    let ccd_theta = ccd_theta / 2.0;
    ccd_theta - theta
}

fn q(lam: f64, theta: f64, angle_offset: f64) -> f64 {
    let theta = theta - angle_offset;
    4.0 * std::f64::consts::PI * theta.to_radians().sin() / lam
}