summaryrefslogtreecommitdiffstats
path: root/c++
Commit message (Collapse)AuthorAgeFilesLines
* TRILAB-244 separate CXX warnings and errors from CAllen Byrne2020-04-273-5/+3
|
* Merge branch 'hdf5_1_8' of ↵hdftest2020-04-2611-17/+51
|\ | | | | | | ssh://bitbucket.hdfgroup.org:7999/~hdftest/hdf5_hft into hdf5_1_8
| * Add prefix_relto_examplesdir function to set relative path to h5c++.Larry Knox2020-04-151-0/+23
| |
| * Fix shadow variableAllen Byrne2020-04-141-3/+3
| |
| * TRILAB-192 - merge changes from developAllen Byrne2020-04-072-6/+3
| | | | | | | | Single source, config files, for warnings for both autotools and CMake. Update CMake libraries, tools, tests to use correct flags.
| * Autotools reconfigure updateAllen Byrne2020-03-314-6/+14
| |
| * TRILAB-192 merging warnings changes from developAllen Byrne2020-03-315-8/+14
| |
* | Snapshot version 1.8 release 22 (snap6)hdftest2020-04-261-1/+1
|/ | | | Update version to 1.8.22-snap7
* Snapshot version 1.8 release 22 (snap5)hdftest2020-03-251-1/+1
| | | | Update version to 1.8.22-snap6
* Snapshot version 1.8 release 22 (snap4)hdftest2020-03-181-1/+1
| | | | Update version to 1.8-snap5
* Merge changes from other branchesAllen Byrne2020-02-294-4/+4
|
* Merfge changes to CMake test options and add sanitizersAllen Byrne2020-01-202-2/+4
|
* Snapshot version 1.8 release 22 (snap3)hdftest2019-12-041-1/+1
|
* Ran bin/reconfigurebyrn2019-10-074-0/+12
|
* Snapshot version 1.8 release 22 (snap2)hdftest2019-09-231-1/+1
|
* Snapshot version 1.8 release 22 (snap1)hdftest2019-09-161-1/+1
|
* Add changes to Makefile.in files and four H5e*.h files from running ↵Larry Knox2019-08-284-16/+20
| | | | bin/reconfigur.
* OESS-29 Fix shared MPI builds, more HD prefixAllen Byrne2019-08-222-7/+7
|
* Merge mostly CMake changes from develop and file cleanupAllen Byrne2019-08-061-37/+43
|
* HDFFV-10845 More changes from 1.10 branchAllen Byrne2019-07-316-149/+212
|
* Reconfigured autoconf filesdpopat2019-07-194-1/+11
|
* Added options to build tools and tests for HDF5_ 1_8Dhvanil Popat2019-07-161-1/+7
|
* Merge in CMake changes from developAllen Byrne2019-04-041-4/+4
|
* Snapshot version 1.8 release 22 (snap0)hdftest2019-04-011-1/+1
|
* Merge CMake changes from 1.10 to 1.8Allen Byrne2018-10-024-57/+42
|
* Updated support branch version number to 1.8.22-snap0lrknox2018-05-221-1/+1
|
* Fixed EED-319 cont.Binh-Minh Ribler2018-05-211-1/+1
| | | | | Description: Updated document header file.
* Fixed EED-319Binh-Minh Ribler2018-05-213-35294/+24269
| | | | | | | Description: Added an html version for the C++ function mapping table and removed the single web page version. Updated cpp_doc_config to use the html file.
* Merge branch 'hdf5_1_8' of ↵Binh-Minh Ribler2018-05-141-1/+1
|\ | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_1_8_bmr into hdf5_1_8
| * Merge branch 'hdf5_1_8' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 ↵lrknox2018-05-1325-374/+1067
| |\ | | | | | | | | | into hdf5_1_8
| * | Updated support branch version number to 1.8.22lrknox2018-05-131-1/+1
| | |
* | | Fixed typosBinh-Minh Ribler2018-05-142-9/+14
| |/ |/| | | | | | | | | | | | | | | Description: Fixed miscellaneous typos that caused warnings when generating the documents with doxygen. Platforms tested: Linux/64 (jelly) Darwin (osx1010test)
* | Code cleanupBinh-Minh Ribler2018-05-126-92/+29
| | | | | | | | | | | | | | | | | | | | | | Description: The function getNumAttrs should be in H5Location so that when an attribute is the location, the function will get the number of attributes belong to the object, which the invoking attribute is attached to. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test)
* | Added C++ wrappersBinh-Minh Ribler2018-05-1225-381/+1137
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Added the following wrappers to class H5::H5Location: + H5Lcreate_soft: changed name from newLink to link // Creates a soft link from link_name to target_name. void link(const char *target_name, const char *link_name,...) void link(const H5std_string& target_name,...) + H5Lcreate_hard: changed name from newLink to link // Creates a hard link from new_name to curr_name. void link(const char *curr_name, const Group& new_loc,...) void link(const H5std_string& curr_name, const Group& new_loc,...) // Creates a hard link from new_name to curr_name in same location. void link(const char *curr_name, const hid_t same_loc,...) void link(const H5std_string& curr_name, const hid_t same_loc,...) + H5Ldelete: modified existing functions to add 2nd argument // Removes the specified link from this location. void unlink(const char *link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) void unlink(const H5std_string& link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) + H5Lcopy: // Copy an object from a group of file to another. void copyLink(const char *src_name, const Group& dst,...) void copyLink(const H5std_string& src_name, const Group& dst,...) // Copy an object from a group of file to the same location. void copyLink(const char *src_name, const char *dst_name,...) void copyLink(const H5std_string& src_name,...) + H5Lmove: // Rename an object in a group or file to a new location. void moveLink(const char* src_name, const Group& dst,...) void moveLink(const H5std_string& src_name, const Group& dst,...) // Rename an object in a group or file to the same location. void moveLink(const char* src_name, const char* dst_name,...) void moveLink(const H5std_string& src_name,...) - Added using statements to H5::Group for functions that need to be be in both classes, H5Location and CommonFG, until they can be removed. - Removed H5A wrappers from H5Location as they've been in H5Object. - Clean up deprecated items and updated comments. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test)
* C++ API improvementBinh-Minh Ribler2018-05-1027-247/+365
| | | | | | | | | | | | | | | | | | | | Description: - Reorganized some exception classes to reflect the HDF5 object hierarchy and provide extendibility. DataSetIException -> LocationException -> Exception DataTypeIException -> LocationException -> Exception GroupIException -> LocationException -> Exception AttributeIException -> LocationException -> Exception FileIException -> GroupIException -> LocationException -> Exception - Added throwException() to these subclasses and use it in H5Location and H5Object member functions to throw an exception that is specific to the object that invokes the member function. Applications that catch the base exception can continue to do the same. - Many cleanup for inconsistencies in comments/headers. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test)
* Fixed typoBinh-Minh Ribler2018-05-081-12/+12
|
* Merge branch 'hdf5_1_8' of ↵Binh-Minh Ribler2018-05-071-1/+1
|\ | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_1_8_bmr into hdf5_1_8
| * Snapshot version 1.8 release 21 (snap12)hdftest2018-04-161-1/+1
| |
* | C++ API improvementBinh-Minh Ribler2018-05-0723-89/+659
|/ | | | | | | | | | | | | | | | | | | | | Description: - Added another argument, LinkCreatPropList& lcpl, to the CommonFG::createGroup() functions for the use of link creation property list. The new argument has a default value. Group createGroup(const char* name, size_t size_hint = 0, const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) Group createGroup(const H5std_string& name, size_t size_hint = 0, const LinkCreatPropList& lcpl = LinkCreatPropList::DEFAULT) - Removed memory leaks caused by accidentally invoking p_get_member_type (in H5CompType.cpp, user reported via email, maybe no jira issue) - Made H5Location::closeObjId static, so no object is needed to close an hdf5 id. - Added classes StrCreatPropList, LinkCreatPropList, AttrCreatPropList for the C property list classes H5P_STRING_CREATE, H5P_LINK_CREATE, and H5P_ATTRIBUTE_CREATE. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test)
* HDFFV-10444 fix so numbersAllen Byrne2018-04-102-4/+4
|
* Merge branch 'hdf5_1_8' of ↵Binh-Minh Ribler2018-04-097-15/+59
|\ | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_1_8_bmr into hdf5_1_8
| * Snapshot version 1.8 release 21 (snap11)hdftest2018-04-021-1/+1
| |
| * Snapshot version 1.8 release 21 (snap10)hdftest2018-03-261-1/+1
| |
| * Merge from develop HDFFV-8359 and remove FindMPI copiesAllen Byrne2018-03-091-0/+47
| |
| * Change CMake min to 3.10Allen Byrne2018-03-094-4/+4
| |
| * Snapshot version 1.8 release 21 (snap9)hdftest2018-03-051-1/+1
| |
| * Snapshot version 1.8 release 21 (snap8)hdftest2018-02-261-1/+1
| |
| * Snapshot version 1.8 release 21 (snap7)hdftest2018-02-191-1/+1
| |
| * Snapshot version 1.8 release 21 (snap6)hdftest2018-02-121-1/+1
| |
| * Snapshot version 1.8 release 21 (snap5)hdftest2018-02-051-1/+1
| |