Salome HOME
Copyrights update
[modules/med.git] / src / MEDWrapper / V2_1 / MEDunvCr.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 /*************************************************************************
21 * COPYRIGHT (C) 1999 - 2002  EDF R&D
22 * THIS LIBRARY IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
23 * IT UNDER THE TERMS OF THE GNU LESSER GENERAL PUBLIC LICENSE 
24 * AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION; 
25 * EITHER VERSION 2.1 OF THE LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION.
26 *  
27 * THIS LIBRARY IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
28 * WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
29 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
30 * LESSER GENERAL PUBLIC LICENSE FOR MORE DETAILS.
31 *
32 * YOU SHOULD HAVE RECEIVED A COPY OF THE GNU LESSER GENERAL PUBLIC LICENSE
33 * ALONG WITH THIS LIBRARY; IF NOT, WRITE TO THE FREE SOFTWARE FOUNDATION,
34 * INC., 59 TEMPLE PLACE, SUITE 330, BOSTON, MA 02111-1307 USA
35 *
36 *************************************************************************/
37
38 #include "med.hxx"
39 #include "med_outils.hxx"
40
41 #include <string.h>
42 #include <stdlib.h>
43
44 #include <stdio.h>
45 #include <time.h>
46
47 #ifdef PPRO_NT
48 // Windows Header Files:
49 #include <windows.h>
50 #include <Lmcons.h>
51 #include <sys/timeb.h>
52 #else
53 #include <sys/time.h>
54 #endif
55
56 namespace med_2_1{
57
58 med_err 
59 MEDunvCr(med_idt fid, char *maa)
60 {
61   med_idt maaid;
62   char chemin [MED_TAILLE_MAA+MED_TAILLE_NOM+1];
63   char nomu   [MED_TAILLE_LNOM+1];    
64   time_t  temps;
65 #ifdef PPRO_NT
66   struct timeb   tp;
67   char   lpBuffer [UNLEN+1];
68   long   nSize   = UNLEN+1;
69 #else
70   struct timeval tp;
71 #endif 
72   med_err ret;
73
74   /*
75    * On inhibe le gestionnaire d'erreur
76    */
77   _MEDmodeErreurVerrouiller();
78
79   /*
80    * Si le maillage n'existe pas => erreur
81    */
82   strcpy(chemin,MED_MAA);
83   strcat(chemin,maa);
84   if ((maaid = _MEDdatagroupOuvrir(fid,chemin)) < 0)
85       return -1;
86
87   /*
88    * Creation/Ecriture de l'attribut nom universel 
89    */
90   
91 #ifdef PPRO_NT
92   if ( GetUserName(lpBuffer,&nSize) == 0 ) return -1;
93   if ( nSize > MED_TAILLE_NOM ) nSize = MED_TAILLE_NOM;
94   strncpy(nomu,lpBuffer,nSize);
95   strcat(nomu," ");
96   temps=time(&temps);
97   strcat(nomu,ctime(&temps));
98   ftime(&tp);
99   nSize = strlen(nomu)-1;
100   if ( sprintf(&nomu[nSize]," %hu",tp.millitm) < 0 ) return -1;
101 #else
102   if (cuserid(nomu) == (void*) NULL) return -1;
103   strcat(nomu," ");
104   temps=time(&temps);
105   strcat(nomu,ctime(&temps));
106   if ( gettimeofday(&tp,NULL) < 0 ) return -1;
107   if ( sprintf(&nomu[strlen(nomu)-1]," %li",tp.tv_usec) < 0 ) return -1;
108 #endif
109   if ((ret = _MEDattrStringEcrire(maaid,MED_NOM_UNV,MED_TAILLE_LNOM,nomu,MED_REMP)) < 0) 
110     return -1;
111
112   /* 
113    * Nettoyages divers
114    */
115   if ((ret = _MEDdatagroupFermer(maaid)) < 0)
116     return -1;
117  
118   return 0;
119 }
120
121 }