Salome HOME
updated copyright message
[modules/kernel.git] / src / HDFPersist / HDFgroup.cc
index 6ee132a57cc08937b3058cefe3e06de8ec021b9e..f00ca32e8df7581769fe1f312e8bc8eceaff241c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 #include "HDFgroup.hxx"
 #include "HDFexception.hxx"
 
-herr_t group_attr(hid_t loc_id, const char *attr_name, void *operator_data)
+herr_t group_attr(hid_t /*loc_id*/, const char *attr_name, void *operator_data)
 {
-   *(char**)operator_data = new char[strlen(attr_name)+1];
-   strcpy(*(char**)operator_data, attr_name);
-   return 1;
+  *(char**)operator_data = new char[strlen(attr_name)+1];
+  strcpy(*(char**)operator_data, attr_name);
+  return 1;
 }
 
 HDFgroup::HDFgroup(const char *name, HDFcontainerObject *father)
@@ -44,7 +44,7 @@ HDFgroup::HDFgroup(const char *name, HDFcontainerObject *father)
   _father->AddSon(this);
   _mid = -1;
   _attribute = NULL;
-};
+}
 
 void HDFgroup::CreateOnDisk()
 {
@@ -104,17 +104,31 @@ int HDFgroup::ExistInternalObject(const char *object_name)
 
   n = this->nInternalObjects(); 
   for (i=0;i<n;i++) 
+  {
+    this->InternalObjectIndentify(i,name);
+    if (!strcmp(name,object_name))
     {
-      this->InternalObjectIndentify(i,name);
-      if (!strcmp(name,object_name))
-       {
-         ret = 1;
-         break;
-       }
-    }  
+      ret = 1;
+      break;
+    }
+  }  
   return ret;
 }
 
+void HDFgroup::GetAllObjects(std::vector< std::string > & object_names )
+{
+  int n,i;
+  char name[HDF_NAME_MAX_LEN+1];
+
+  n = this->nInternalObjects();
+  object_names.reserve( object_names.size() + n );
+  for (i=0;i<n;i++)
+  {
+    this->InternalObjectIndentify(i,name);
+    object_names.push_back( name );
+  }
+}
+
 hdf_object_type HDFgroup::InternalObjectType(char *object_name)
 {
   hdf_object_type type;
@@ -145,10 +159,10 @@ void HDFgroup::FileUnMount()
   hdf_err ret;
 
   if ((ret = HDFfileUmount(_fid,_name)) < 0)
-        throw HDFexception("Can't unmount the file");
+    throw HDFexception("Can't unmount the file");
 
   if ((ret = HDFfileClose(_mid)) < 0)
-        throw HDFexception("Can't unmount the file");
+    throw HDFexception("Can't unmount the file");
 
   _mid = -1;
 }