Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / MEDMEMBinTest / testConvertPolygon.cxx
index 8f28c430cd7de90b39ea238a90fecf0bb4c1e612..1249429aa03f4bf4b6a4ba4786d2c879d8407394 100644 (file)
@@ -1,25 +1,33 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #include "MEDMEM_Mesh.hxx"
+#ifdef WNT
+#include <io.h>
+#define access _access
+#define W_OK 02
+#else
+#include <unistd.h>
+#endif
 
 int main()
 {
@@ -40,20 +48,21 @@ int main()
   file += "BoxTetra2.med";
   cout << "File to cnvert: " << file << endl;
   // convertion
-  MEDMEM::MESH mesh(MEDMEM::MED_DRIVER, file.c_str(), "BoxTetra2");
-  mesh.convertToPoly();
+  MEDMEM::MESH *mesh=new MEDMEM::MESH(MEDMEM::MED_DRIVER, file.c_str(), "BoxTetra2");
+  mesh->convertToPoly();
 
   // File to store conversion result
-  if ( getenv("TMP") )
+  if ( getenv("TMP") && access(getenv("TMP"),W_OK)==0 )
     file = getenv("TMP");
-  else if ( getenv("TMPDIR") )
+  else if ( getenv("TMPDIR") && access(getenv("TMPDIR"),W_OK)==0 )
     file = getenv("TMPDIR");
   else
     file = "/tmp";
   file += "/pointe_testConvertPolygon.med";
 
-  int id=mesh.addDriver(MEDMEM::MED_DRIVER,file.c_str(),"mesh");
-  mesh.write(id);
+  int id=mesh->addDriver(MEDMEM::MED_DRIVER,file.c_str(),"mesh");
+  mesh->write(id);
+  mesh->removeReference();
 
   remove(file.c_str());