]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Prepare int64 management
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 1 Feb 2019 12:19:47 +0000 (13:19 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 1 Feb 2019 12:19:47 +0000 (13:19 +0100)
CMakeLists.txt
src/MEDCoupling/MCType.hxx
src/MEDCoupling/MEDCouplingRefCountObject.cxx
src/MEDCoupling/MEDCouplingRefCountObject.hxx
src/MEDCoupling_Swig/MEDCouplingRefCountObject.i

index 3139000fc80a1458b4ebfbe3dc5389468b0c5aa4..909692bc3cf9667e798a467dff5d54b088539752 100644 (file)
@@ -61,6 +61,7 @@ OPTION(MEDCOUPLING_USE_MPI "(Use MPI containers) - For MED this triggers the bui
 OPTION(MEDCOUPLING_BUILD_TESTS "Build MED tests." ON)
 OPTION(MEDCOUPLING_BUILD_DOC "Build MED doc." ON)
 OPTION(MEDCOUPLING_BUILD_STATIC "Build MEDCoupling library in static mode." OFF)
+OPTION(MEDCOUPLING_USE_64BIT_IDS "Size of IDs to refer cells and nodes. 32 bits when OFF (default), 64 bits when ON. Not implemented yet for 64 bits." OFF)
 IF(${MEDCOUPLING_USE_MPI})
   SET(USE_METIS_NOT_PARMETIS OFF)
 ELSE()
@@ -101,6 +102,10 @@ ENDIF()
 # Set list of prerequisites
 # =========================
 
+IF(MEDCOUPLING_USE_64BIT_IDS)
+  ADD_DEFINITIONS("-DMEDCOUPLING_USE_64BIT_IDS")
+ENDIF(MEDCOUPLING_USE_64BIT_IDS)
+
 IF(NOT MEDCOUPLING_MICROMED)
   FIND_PACKAGE(SalomeHDF5 REQUIRED)
   FIND_PACKAGE(SalomeMEDFile REQUIRED)
index 2bb14a2f538596c689647d2642da3e7f21afb5e3..bd0c868cd6d0f7690c1afbb2defc70bfea62deb1 100644 (file)
@@ -27,8 +27,11 @@ namespace MEDCoupling
 {
   using Int64 = std::int64_t;
   using Int32 = std::int32_t;
+#ifndef MEDCOUPLING_USE_64BIT_IDS
   using mcIdType = std::int32_t;
-
+#else
+  using mcIdType = std::int64_t;
+#endif
   inline mcIdType ToIdType(std::size_t val) { return mcIdType(val); }
 }
 
index da9e4ee667718b60e145468eca3337a3dccd842c..394f4308f7fa8d60097c58b4b7bdc8ea425cb4dc 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "MEDCouplingRefCountObject.hxx"
 #include "MEDCoupling_version.h"
+#include "MCType.hxx"
 
 #include "InterpKernelException.hxx"
 
@@ -53,6 +54,11 @@ int MEDCoupling::MEDCouplingSizeOfVoidStar()
   return 8*sizeof(std::size_t);
 }
 
+std::size_t MEDCoupling::MEDCouplingSizeOfIDs()
+{
+  return 8*sizeof(mcIdType);
+}
+
 /*!
  * If true is returned it is a LittleEndian machine.
  * If false it is a BigEndian machine.
index 62e859c1cd083914487e0c4007b8f4c0353290cf..ba2ebe5d6f9c502427072e41fb3b3870c00cc7b0 100644 (file)
@@ -64,6 +64,7 @@ namespace MEDCoupling
   MEDCOUPLING_EXPORT int MEDCouplingVersion();
   MEDCOUPLING_EXPORT void MEDCouplingVersionMajMinRel(int& maj, int& minor, int& releas);
   MEDCOUPLING_EXPORT int MEDCouplingSizeOfVoidStar();
+  MEDCOUPLING_EXPORT std::size_t MEDCouplingSizeOfIDs();
   MEDCOUPLING_EXPORT bool MEDCouplingByteOrder();
   MEDCOUPLING_EXPORT const char *MEDCouplingByteOrderStr();
   MEDCOUPLING_EXPORT bool IsCXX11Compiled();
index 218fafa4afc7d3418d35662c29c36451c971d4b2..c79059dfbe9a505e071fb3a99db941a237edbd99 100644 (file)
@@ -60,6 +60,7 @@ namespace MEDCoupling
   const char *MEDCouplingVersionStr();
   int MEDCouplingVersion();
   int MEDCouplingSizeOfVoidStar();
+  int MEDCouplingSizeOfIDs();
   bool MEDCouplingByteOrder();
   const char *MEDCouplingByteOrderStr();
   bool IsCXX11Compiled();