hdf.hdf5lib.structs.H5O_info_t Maven / Gradle / Ivy
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package hdf.hdf5lib.structs;
import java.io.Serializable;
//Information struct for object (for H5Oget_info/H5Oget_info_by_name/H5Oget_info_by_idx)
public class H5O_info_t implements Serializable{
private static final long serialVersionUID = 4691681163544054518L;
public long fileno; /* File number that object is located in */
public long addr; /* Object address in file */
public int type; /* Basic object type (group, dataset, etc.) */
public int rc; /* Reference count of object */
public long atime; /* Access time */
public long mtime; /* Modification time */
public long ctime; /* Change time */
public long btime; /* Birth time */
public long num_attrs; /* # of attributes attached to object */
public H5O_hdr_info_t hdr; /* Object header information */
/* Extra metadata storage for obj & attributes */
public H5_ih_info_t meta_size_obj; /* v1/v2 B-tree & local/fractal heap for groups, B-tree for chunked datasets */
public H5_ih_info_t meta_size_attr; /* v2 B-tree & heap for attributes */
public H5O_info_t (long fileno, long addr, int type,
int rc, long num_attrs, long atime, long mtime, long ctime, long btime,
H5O_hdr_info_t hdr, H5_ih_info_t meta_size_obj, H5_ih_info_t meta_size_attr)
{
this.fileno = fileno;
this.addr = addr;
this.type = type;
this.rc = rc;
this.num_attrs = num_attrs;
this.atime = atime;
this.mtime = mtime;
this.ctime = ctime;
this.btime = btime;
this.hdr = hdr;
this.meta_size_obj = meta_size_obj;
this.meta_size_attr = meta_size_attr;
}
}