#include <cstring>
#include <iomanip>
#include <istream>
#include <limits>
#include <ostream>
#include <sstream>
#include <string>
#include <vector>
#include "byte-swap.h"
#include "dMatrix.h"
#include "data-conv.h"
#include "file-ops.h"
#include "file-stat.h"
#include "glob-match.h"
#include "lo-mappers.h"
#include "mach-info.h"
#include "oct-env.h"
#include "oct-locbuf.h"
#include "oct-time.h"
#include "quit.h"
#include "str-vec.h"
#include "Cell.h"
#include "defaults.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "load-path.h"
#include "load-save.h"
#include "ls-mat5.h"
#include "ls-utils.h"
#include "oct-map.h"
#include "ov-cell.h"
#include "ov-class.h"
#include "ov.h"
#include "ovl.h"
#include "pager.h"
#include "parse.h"
#include "pt-eval.h"
#include "stack-frame.h"
#include "sysdep.h"
#include "unwind-prot.h"
#include "utils.h"
#include "variables.h"
#include "version.h"
#include <zlib.h>
Go to the source code of this file.
Macros | |
#define | INT8(l) ((l) == miINT8 || (l) == miUINT8 || (l) == miUTF8) |
#define | INT_LEN(nel, size) |
#define | MAT5_DO_WRITE(TYPE, data, count, stream) |
#define | OCTAVE_MAT5_INTEGER_READ(TYP) |
#define | PAD(l) (((l) > 0 && (l) <= 4) ? 4 : (((l)+7)/8)*8) |
#define | READ_INTEGER_DATA(TYPE, swap, data, size, len, stream) |
#define | READ_PAD(is_small_data_element, l) ((is_small_data_element) ? 4 : (((l)+7)/8)*8) |
Functions | |
static void | read_int (std::istream &is, bool swap, int32_t &val) |
static void | read_mat5_binary_data (std::istream &is, double *data, octave_idx_type count, bool swap, mat5_data_type type, octave::mach_info::float_format flt_fmt) |
static void | read_mat5_binary_data (std::istream &is, float *data, octave_idx_type count, bool swap, mat5_data_type type, octave::mach_info::float_format flt_fmt) |
std::string | read_mat5_binary_element (std::istream &is, const std::string &filename, bool swap, bool &global, octave_value &tc) |
int | read_mat5_binary_file_header (std::istream &is, bool &swap, bool quiet, const std::string &filename) |
template void | read_mat5_integer_data (std::istream &is, int *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_int16 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_int32 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_int64 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_int8 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_uint16 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_uint32 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_uint64 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template void | read_mat5_integer_data (std::istream &is, octave_uint8 *m, octave_idx_type count, bool swap, mat5_data_type type) |
template<typename T > | |
void | read_mat5_integer_data (std::istream &is, T *m, octave_idx_type count, bool swap, mat5_data_type type) |
static int | read_mat5_tag (std::istream &is, bool swap, int32_t &type, int32_t &bytes, bool &is_small_data_element) |
int | save_mat5_array_length (const Complex *val, octave_idx_type nel, bool save_as_floats) |
int | save_mat5_array_length (const double *val, octave_idx_type nel, bool save_as_floats) |
int | save_mat5_array_length (const float *, octave_idx_type nel, bool) |
int | save_mat5_array_length (const FloatComplex *val, octave_idx_type nel, bool save_as_floats) |
bool | save_mat5_binary_element (std::ostream &os, const octave_value &tc, const std::string &name, bool mark_global, bool mat7_format, bool save_as_floats, bool compressing) |
int | save_mat5_element_length (const octave_value &tc, const std::string &name, bool save_as_floats, bool mat7_format) |
static void | warn_dim_too_large (const std::string &name) |
static void | write_mat5_array (std::ostream &os, const FloatNDArray &m, bool) |
static void | write_mat5_array (std::ostream &os, const NDArray &m, bool save_as_floats) |
static bool | write_mat5_cell_array (std::ostream &os, const Cell &cell, bool mark_global, bool save_as_floats) |
template void | write_mat5_integer_data (std::ostream &os, const int *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_int16 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_int32 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_int64 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_int8 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_uint16 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_uint32 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_uint64 *m, int size, octave_idx_type nel) |
template void | write_mat5_integer_data (std::ostream &os, const octave_uint8 *m, int size, octave_idx_type nel) |
template<typename T > | |
void | write_mat5_integer_data (std::ostream &os, const T *m, int size, octave_idx_type nel) |
static void | write_mat5_sparse_index_vector (std::ostream &os, const octave_idx_type *idx, octave_idx_type nel) |
static int | write_mat5_tag (std::ostream &is, int type, octave_idx_type bytes) |
Variables | |
static octave_value | subsys_ov |
Definition at line 86 of file ls-mat5.cc.
#define INT_LEN | ( | nel, | |
size | |||
) |
#define MAT5_DO_WRITE | ( | TYPE, | |
data, | |||
count, | |||
stream | |||
) |
Definition at line 1597 of file ls-mat5.cc.
#define OCTAVE_MAT5_INTEGER_READ | ( | TYP | ) |
Definition at line 372 of file ls-mat5.cc.
#define PAD | ( | l | ) | (((l) > 0 && (l) <= 4) ? 4 : (((l)+7)/8)*8) |
Definition at line 85 of file ls-mat5.cc.
#define READ_INTEGER_DATA | ( | TYPE, | |
swap, | |||
data, | |||
size, | |||
len, | |||
stream | |||
) |
#define READ_PAD | ( | is_small_data_element, | |
l | |||
) | ((is_small_data_element) ? 4 : (((l)+7)/8)*8) |
Definition at line 84 of file ls-mat5.cc.
enum arrayclasstype |
Definition at line 99 of file ls-mat5.cc.
|
static |
Definition at line 460 of file ls-mat5.cc.
References swap_bytes< 4 >().
Referenced by read_mat5_binary_element().
|
static |
Definition at line 126 of file ls-mat5.cc.
References LS_CHAR, LS_DOUBLE, LS_FLOAT, LS_INT, LS_LONG, LS_SHORT, LS_U_CHAR, LS_U_INT, LS_U_LONG, LS_U_SHORT, miDOUBLE, miINT16, miINT32, miINT64, miINT8, miMATRIX, miRESERVE1, miRESERVE2, miRESERVE3, miSINGLE, miUINT16, miUINT32, miUINT64, miUINT8, miUTF16, miUTF32, miUTF8, and read_doubles().
Referenced by read_mat5_binary_element().
|
static |
Definition at line 191 of file ls-mat5.cc.
References LS_CHAR, LS_DOUBLE, LS_FLOAT, LS_INT, LS_LONG, LS_SHORT, LS_U_CHAR, LS_U_INT, LS_U_LONG, LS_U_SHORT, miDOUBLE, miINT16, miINT32, miINT64, miINT8, miMATRIX, miRESERVE1, miRESERVE2, miRESERVE3, miSINGLE, miUINT16, miUINT32, miUINT64, miUINT8, miUTF16, miUTF32, miUTF8, and read_floats().
std::string read_mat5_binary_element | ( | std::istream & | is, |
const std::string & | filename, | ||
bool | swap, | ||
bool & | global, | ||
octave_value & | tc | ||
) |
Definition at line 477 of file ls-mat5.cc.
References octave::__get_interpreter__(), octave_scalar_map::begin(), octave_value::cell_value(), Sparse< T >::cidx(), Array< T >::clear(), octave_scalar_map::contents(), octave_value::convert_to_str(), Sparse< T >::data(), octave::sys::file_ops::dir_sep_chars(), octave_scalar_map::end(), err_disabled_feature(), error(), octave::interpreter::eval_string(), octave::sys::base_file_stat::exists(), octave_value::fcn_handle_value(), octave_fcn_handle::fcn_val(), octave::feval(), octave::cdef_manager::find_class(), octave::directory_path::find_first_of(), octave::load_path::find_method(), octave::mach_info::flt_fmt_ieee_big_endian, octave::mach_info::flt_fmt_ieee_little_endian, octave::mach_info::flt_fmt_unknown, Array< T >::fortran_vec(), octave::interpreter::get_cdef_manager(), octave::interpreter::get_evaluator(), octave::interpreter::get_load_path(), imag(), INT8, octave_value::is_defined(), octave_value::isempty(), octave_scalar_map::key(), len, octave::load_fcn_from_file(), m, octave::sys::env::make_absolute(), octave::tree_evaluator::make_fcn_handle(), MAT_FILE_CELL_CLASS, MAT_FILE_CHAR_CLASS, MAT_FILE_DOUBLE_CLASS, MAT_FILE_FUNCTION_CLASS, MAT_FILE_INT16_CLASS, MAT_FILE_INT32_CLASS, MAT_FILE_INT64_CLASS, MAT_FILE_INT8_CLASS, MAT_FILE_OBJECT_CLASS, MAT_FILE_SINGLE_CLASS, MAT_FILE_SPARSE_CLASS, MAT_FILE_STRUCT_CLASS, MAT_FILE_UINT16_CLASS, MAT_FILE_UINT32_CLASS, MAT_FILE_UINT64_CLASS, MAT_FILE_UINT8_CLASS, MAT_FILE_WORKSPACE_CLASS, miCOMPRESSED, miINT32, miMATRIX, miUINT32, miUTF16, miUTF32, miUTF8, n, name, octave::mach_info::native_float_format(), octave_scalar_map::nfields(), dim_vector::numel(), Array< T >::numel(), octave::config::octave_exec_home(), OCTAVE_LOCAL_BUFFER, OCTAVE_MAT5_INTEGER_READ, octave_value(), octave::cdef_object::ok(), octave::tree_evaluator::pop_scope(), octave::tree_evaluator::push_dummy_scope(), read_int(), read_mat5_binary_data(), read_mat5_integer_data(), read_mat5_tag(), READ_PAD, octave_class::reconstruct_exemplar(), octave_class::reconstruct_parents(), dim_vector::resize(), retval, Sparse< T >::ridx(), octave_value::scalar_map_value(), octave_value::string_value(), subsys_ov, swap_bytes< 4 >(), octave::load_path::system_path(), octave_value::uint32_array_value(), octave_value::uint8_array_value(), warning_with_id(), and Sparse< T >::xdata().
Referenced by octave::load_save_system::load_vars(), and read_mat5_binary_file_header().
int read_mat5_binary_file_header | ( | std::istream & | is, |
bool & | swap, | ||
bool | quiet, | ||
const std::string & | filename | ||
) |
Definition at line 1494 of file ls-mat5.cc.
References error(), octave_value::is_uint8_type(), Array< T >::numel(), read_mat5_binary_element(), subsys_ov, swap_bytes< 8 >(), octave_value::uint8_array_value(), and warning_with_id().
Referenced by octave::load_save_system::get_file_format(), and octave::load_save_system::load().
template void read_mat5_integer_data | ( | std::istream & | is, |
int * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_int16 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_int32 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_int64 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_int8 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_uint16 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_uint32 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_uint64 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
template void read_mat5_integer_data | ( | std::istream & | is, |
octave_uint8 * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
void read_mat5_integer_data | ( | std::istream & | is, |
T * | m, | ||
octave_idx_type | count, | ||
bool | swap, | ||
mat5_data_type | type | ||
) |
Definition at line 257 of file ls-mat5.cc.
References m, miDOUBLE, miINT16, miINT32, miINT64, miINT8, miMATRIX, miRESERVE1, miRESERVE2, miRESERVE3, miSINGLE, miUINT16, miUINT32, miUINT64, miUINT8, and READ_INTEGER_DATA.
Referenced by read_mat5_binary_element().
|
static |
Definition at line 425 of file ls-mat5.cc.
References swap_bytes< 4 >().
Referenced by read_mat5_binary_element().
int save_mat5_array_length | ( | const Complex * | val, |
octave_idx_type | nel, | ||
bool | save_as_floats | ||
) |
Definition at line 2032 of file ls-mat5.cc.
References imag(), OCTAVE_LOCAL_BUFFER, real(), and save_mat5_array_length().
int save_mat5_array_length | ( | const double * | val, |
octave_idx_type | nel, | ||
bool | save_as_floats | ||
) |
Definition at line 1902 of file ls-mat5.cc.
References octave::math::isfinite(), and max().
Referenced by save_mat5_array_length(), and save_mat5_element_length().
int save_mat5_array_length | ( | const float * | , |
octave_idx_type | nel, | ||
bool | |||
) |
Definition at line 1976 of file ls-mat5.cc.
References PAD.
int save_mat5_array_length | ( | const FloatComplex * | val, |
octave_idx_type | nel, | ||
bool | save_as_floats | ||
) |
Definition at line 2053 of file ls-mat5.cc.
References imag(), OCTAVE_LOCAL_BUFFER, real(), and save_mat5_array_length().
bool save_mat5_binary_element | ( | std::ostream & | os, |
const octave_value & | tc, | ||
const std::string & | name, | ||
bool | mark_global, | ||
bool | mat7_format, | ||
bool | save_as_floats, | ||
bool | compressing | ||
) |
Definition at line 2252 of file ls-mat5.cc.
References octave::__get_load_path__(), octave_value::array_value(), octave_value::bool_array_value(), octave_value::cell_value(), octave_value::char_array_value(), octave_value::class_name(), Sparse< T >::cols(), octave_value::complex_array_value(), Array< T >::data(), octave_value::dims(), error(), octave::feval(), octave::load_path::find_method(), octave_value::float_array_value(), octave_value::float_complex_array_value(), imag(), octave_value::int16_array_value(), octave_value::int32_array_value(), octave_value::int64_array_value(), octave_value::int8_array_value(), octave_value::is_complex_matrix(), octave_value::is_complex_scalar(), octave_value::is_inline_function(), octave_value::is_range(), octave_value::is_real_matrix(), octave_value::is_real_scalar(), octave_value::is_single_type(), octave_value::is_string(), octave_value::iscell(), octave_value::iscomplex(), octave_value::islogical(), octave_value::isobject(), octave_value::issparse(), octave_value::isstruct(), len, m, octave_value::map_value(), MAT_FILE_CELL_CLASS, MAT_FILE_CHAR_CLASS, MAT_FILE_DOUBLE_CLASS, MAT_FILE_INT16_CLASS, MAT_FILE_INT32_CLASS, MAT_FILE_INT64_CLASS, MAT_FILE_INT8_CLASS, MAT_FILE_OBJECT_CLASS, MAT_FILE_SINGLE_CLASS, MAT_FILE_SPARSE_CLASS, MAT_FILE_STRUCT_CLASS, MAT_FILE_UINT16_CLASS, MAT_FILE_UINT32_CLASS, MAT_FILE_UINT64_CLASS, MAT_FILE_UINT8_CLASS, max(), miCOMPRESSED, miINT32, miINT8, miMATRIX, miUINT16, miUINT32, n, name, octave_value::ndims(), dim_vector::numel(), Array< T >::numel(), Sparse< T >::nzmax(), OCTAVE_LOCAL_BUFFER, PAD, real(), save_mat5_element_length(), octave_value::sparse_complex_matrix_value(), octave_value::sparse_matrix_value(), octave_value::uint16_array_value(), octave_value::uint32_array_value(), octave_value::uint64_array_value(), octave_value::uint8_array_value(), warn_dim_too_large(), warn_wrong_type_arg(), write_mat5_array(), write_mat5_cell_array(), write_mat5_integer_data(), write_mat5_sparse_index_vector(), and write_mat5_tag().
Referenced by octave::load_save_system::do_save(), and write_mat5_cell_array().
int save_mat5_element_length | ( | const octave_value & | tc, |
const std::string & | name, | ||
bool | save_as_floats, | ||
bool | mat7_format | ||
) |
Definition at line 2074 of file ls-mat5.cc.
References octave_value::array_value(), octave_value::bool_array_value(), octave_value::cell_value(), octave_value::char_array_value(), octave_value::class_name(), octave_value::complex_array_value(), octave_value::float_array_value(), octave_value::float_complex_array_value(), octave_value::int16_array_value(), octave_value::int32_array_value(), octave_value::int64_array_value(), octave_value::int8_array_value(), INT_LEN, octave_value::is_complex_matrix(), octave_value::is_complex_scalar(), octave_value::is_inline_function(), octave_value::is_range(), octave_value::is_real_matrix(), octave_value::is_real_scalar(), octave_value::is_single_type(), octave_value::is_string(), octave_value::iscell(), octave_value::iscomplex(), octave_value::islogical(), octave_value::isobject(), octave_value::issparse(), octave_value::isstruct(), len, m, octave_value::map_value(), name, octave_value::ndims(), Array< T >::numel(), PAD, save_mat5_array_length(), octave_value::sparse_complex_matrix_value(), octave_value::sparse_matrix_value(), octave_value::uint16_array_value(), octave_value::uint32_array_value(), octave_value::uint64_array_value(), and octave_value::uint8_array_value().
Referenced by save_mat5_binary_element().
|
static |
Definition at line 2241 of file ls-mat5.cc.
References name, and warning_with_id().
Referenced by save_mat5_binary_element().
|
static |
Definition at line 1707 of file ls-mat5.cc.
References error(), get_save_type(), len, LS_CHAR, LS_DOUBLE, LS_FLOAT, LS_INT, LS_LONG, LS_SHORT, LS_U_CHAR, LS_U_INT, LS_U_LONG, LS_U_SHORT, m, MAT5_DO_WRITE, miDOUBLE, miINT16, miINT32, miINT8, miSINGLE, miUINT16, miUINT32, miUINT8, PAD, and write_mat5_tag().
|
static |
Definition at line 1611 of file ls-mat5.cc.
References error(), get_save_type(), len, LS_CHAR, LS_DOUBLE, LS_FLOAT, LS_INT, LS_LONG, LS_SHORT, LS_U_CHAR, LS_U_INT, LS_U_LONG, LS_U_SHORT, m, MAT5_DO_WRITE, miDOUBLE, miINT16, miINT32, miINT8, miSINGLE, miUINT16, miUINT32, miUINT8, PAD, warning_with_id(), and write_mat5_tag().
Referenced by save_mat5_binary_element().
|
static |
Definition at line 1884 of file ls-mat5.cc.
References Array< T >::numel(), and save_mat5_binary_element().
Referenced by save_mat5_binary_element().
template void write_mat5_integer_data | ( | std::ostream & | os, |
const int * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_int16 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_int32 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_int64 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_int8 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_uint16 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_uint32 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_uint64 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
template void write_mat5_integer_data | ( | std::ostream & | os, |
const octave_uint8 * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
void write_mat5_integer_data | ( | std::ostream & | os, |
const T * | m, | ||
int | size, | ||
octave_idx_type | nel | ||
) |
Definition at line 1793 of file ls-mat5.cc.
References len, m, miINT16, miINT32, miINT64, miINT8, miUINT16, miUINT32, miUINT64, miUINT8, PAD, and write_mat5_tag().
Referenced by save_mat5_binary_element(), and write_mat5_sparse_index_vector().
|
static |
Definition at line 2226 of file ls-mat5.cc.
References OCTAVE_LOCAL_BUFFER, and write_mat5_integer_data().
Referenced by save_mat5_binary_element().
|
static |
Definition at line 1574 of file ls-mat5.cc.
Referenced by save_mat5_binary_element(), write_mat5_array(), and write_mat5_integer_data().
|
static |
Definition at line 90 of file ls-mat5.cc.
Referenced by read_mat5_binary_element(), and read_mat5_binary_file_header().