On Nov 2, 2015, at 5:09 PM, hdf-forum-request@lists.hdfgroup.org wrote:
Send Hdf-forum mailing list submissions to
hdf-forum@lists.hdfgroup.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org
or, via email, send a message with subject or body 'help' to
hdf-forum-request@lists.hdfgroup.org
You can reach the person managing the list at
hdf-forum-owner@lists.hdfgroup.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Hdf-forum digest..."
Today's Topics:
1. Re: Hdf-forum Digest, Vol 77, Issue 2 - how h5dump works with
a VOL plugin (Mohamad Chaarawi)
----------------------------------------------------------------------
Message: 1
Date: Mon, 2 Nov 2015 22:08:38 +0000
From: Mohamad Chaarawi <chaarawi@hdfgroup.org>
To: HDF Users Discussion List <hdf-forum@lists.hdfgroup.org>
Subject: Re: [Hdf-forum] Hdf-forum Digest, Vol 77, Issue 2 - how
h5dump works with a VOL plugin
Message-ID:
<BY2PR0701MB1957B711FF6119DB57D0567ABD2C0@BY2PR0701MB1957.namprd07.prod.outlook.com>
Content-Type: text/plain; charset="utf-8"
Not really.. h5dump only makes HDF5 API calls (or at least should). We would only need to find a way to pass the plugin information to h5dump (maybe using an environment variable or command line options) so it can set the appropriate plugin on the fapl before opening the file. Other than that, the API calls that the tools make should call into the plugin, and as long as all the HDF5 API calls that h5dump makes are handled by the plugin, then h5dump will work normally.
Thanks,
Mohamad
From: Hdf-forum [mailto:hdf-forum-bounces@lists.hdfgroup.org] On Behalf Of Dimos Stamatakis
Sent: Monday, November 02, 2015 3:47 PM
To: hdf-forum@lists.hdfgroup.org
Subject: Re: [Hdf-forum] Hdf-forum Digest, Vol 77, Issue 2 - how h5dump works with a VOL plugin
Thanks for your response!
So this mean that the h5dump has to look within the structure representing the HDF5 container so that to display the contents, right?
Also I noticed that the h5dump first calls native_file_open, then returns and then calls native_group_open for each group. Does this mean that it opens the file in the native_file_open, gets the structure with information about the file, closes the file and then calls native_group_open without re-opening the file, but only with that structure?
Thanks,
Dimos
On Mon, Nov 2, 2015 at 11:03 AM, <hdf-forum-request@lists.hdfgroup.org<mailto:hdf-forum-request@lists.hdfgroup.org>> wrote:
Send Hdf-forum mailing list submissions to
hdf-forum@lists.hdfgroup.org<mailto:hdf-forum@lists.hdfgroup.org>
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org
or, via email, send a message with subject or body 'help' to
hdf-forum-request@lists.hdfgroup.org<mailto:hdf-forum-request@lists.hdfgroup.org>
You can reach the person managing the list at
hdf-forum-owner@lists.hdfgroup.org<mailto:hdf-forum-owner@lists.hdfgroup.org>
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Hdf-forum digest..."
Today's Topics:
1. Building HDF5DotNet - C++/CLI Wrapper of the HDF5 Library
with current version of HDF5 library (Alex Bogdanov)
2. Re: HDF 1.8.16-pre2 release candidate is available for
testing (Sean McBride)
----------------------------------------------------------------------
Message: 1
Date: Mon, 02 Nov 2015 09:04:28 +0300
From: Alex Bogdanov <agb1@mail.ru<mailto:agb1@mail.ru>>
To: HDF Users Discussion List (hdf-forum@lists.hdfgroup.org<mailto:hdf-forum@lists.hdfgroup.org>)
<hdf-forum@lists.hdfgroup.org<mailto:hdf-forum@lists.hdfgroup.org>>
Subject: [Hdf-forum] Building HDF5DotNet - C++/CLI Wrapper of the HDF5
Library with current version of HDF5 library
Message-ID: <1446444268.102703165@f61.i.mail.ru<mailto:1446444268.102703165@f61.i.mail.ru>>
Content-Type: text/plain; charset="utf-8"
??? Hello,
I would like to query if anyone was successful in building of HDF5DotNet - C++/CLI wrapper
of the HDF5 library with current version of HDF5 library - i.e. HDF5-1.8.15 Patch 1 ?
I was trying to get it compiled using Visual Studio 2013 and as well Visual Studio 2015 - but
compilation failed in both cases with following error messages:
1. in? ObjectReference.cpp:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?error C2668: 'System::Array::Copy' : ambiguous call to overloaded function
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?D:\DATA\src\HDF5DotNet\trunc\src\ObjectReference.cpp 30 1
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?HDF5DotNet Code: Array::Copy(a, m_or, H5R_OBJ_REF_BUF_SIZE);
2. in? RegionReference.cpp:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? error C2668: 'System::Array::Copy' : ambiguous call to overloaded function
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?D:\DATA\src\HDF5DotNet\trunc\src\RegionReference.cpp 30 1
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? HDF5DotNet Code: Array::Copy(a, m_rr, H5R_DSET_REG_REF_BUF_SIZE);
3. in? RegionReference.cpp:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 4 IntelliSense: more than one instance of overloaded function "System::Array::Copy" matches the argument
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? list: function "System::Array::Copy(System::Array ^sourceArray, System::Array ^destinationArray, int length)" function
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? "System::Array::Copy(System::Array ^sourceArray, System::Array? ^destinationArray, long long length)"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? argument types are:? (cli::array ^, cli::array ^, unsigned int)
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? D:\DATA\src\HDF5DotNet\trunc\src\RegionReference.cpp 30 9 HDF5DotNet
Could you please advice ?
Thank you beforehand,
Regards,
Alexey
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.hdfgroup.org/pipermail/hdf-forum_lists.hdfgroup.org/attachments/20151102/8b16f81b/attachment-0001.html>
------------------------------
Message: 2
Date: Mon, 2 Nov 2015 12:02:15 -0400
From: "Sean McBride" <sean@rogue-research.com<mailto:sean@rogue-research.com>>
To: "HDF Users Discussion List" <hdf-forum@lists.hdfgroup.org<mailto:hdf-forum@lists.hdfgroup.org>>, "Larry
Knox" <lrknox@hdfgroup.org<mailto:lrknox@hdfgroup.org>>
Subject: Re: [Hdf-forum] HDF 1.8.16-pre2 release candidate is
available for testing
Message-ID: <20151102160215.850320908@mail.rogue-research.com<mailto:20151102160215.850320908@mail.rogue-research.com>>
Content-Type: text/plain; charset="iso-8859-1"
On Fri, 30 Oct 2015 20:12:51 +0000, Larry Knox said:
The Mac errors seem to involve flags that we don't test. A Jira issue
will be created specifying the flags with which the tests fail or
produce errors to be addressed as possible. Any patches to be
considered will be welcomed.
Did you also take a look at the dashboard warnings? Many of them are trivial to fix. If you're not interested in some of the warning flags, I can turn them off. It would be nice to get the dashboard into a green state so that it can serve as a tool to catch _new_ problems at least. I find having a dashboard like that is only useful if you keep it green.
Attached is a patch that fixes several warnings from the Rogue14 bot.
Cheers,
--
____________________________________________________________
Sean McBride, B. Eng sean@rogue-research.com<mailto:sean@rogue-research.com>
Rogue Research www.rogue-research.com<http://www.rogue-research.com>
Mac Software Developer Montr?al, Qu?bec, Canada
-------------- next part --------------
A non-text attachment was scrubbed...
Name: hdf-warnings.patch
Type: application/octet-stream
Size: 7974 bytes
Desc: not available
URL: <http://lists.hdfgroup.org/pipermail/hdf-forum_lists.hdfgroup.org/attachments/20151102/e779f5ff/attachment.obj>
------------------------------
Subject: Digest Footer
_______________________________________________
Hdf-forum is for HDF software users discussion.
Hdf-forum@lists.hdfgroup.org<mailto:Hdf-forum@lists.hdfgroup.org>
http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org
------------------------------
End of Hdf-forum Digest, Vol 77, Issue 2
****************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.hdfgroup.org/pipermail/hdf-forum_lists.hdfgroup.org/attachments/20151102/9e3defad/attachment.html>
------------------------------
Subject: Digest Footer
_______________________________________________
Hdf-forum is for HDF software users discussion.
Hdf-forum@lists.hdfgroup.org
http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org
------------------------------
End of Hdf-forum Digest, Vol 77, Issue 5
****************************************