source: Sophya/trunk/SophyaLib/BaseTools/dvlist.h@ 827

Last change on this file since 827 was 827, checked in by ansari, 25 years ago

Suppression de warning compil dvlist (format printf) - Reza 6/4/2000

File size: 5.2 KB
Line 
1// This may look like C code, but it is really -*- C++ -*-
2// Classe DVList : Liste dynamique de variables (valeurs)
3// identifiees par un nom Reza Ansari - Dec 96
4
5#ifndef DVLIST_H_SEEN
6#define DVLIST_H_SEEN
7
8#include "objfio.h"
9
10#include <stdio.h>
11
12#include <iostream.h>
13
14#include <list>
15#include <map>
16#include <string.h>
17#include <string>
18
19namespace SOPHYA {
20
21// Classe utilitaire pour manipuler des variables typees
22class MuTyV {
23public:
24 union {
25 int_8 iv;
26 r_8 dv;
27 char strv[39];
28 } mtv;
29 char typ;
30
31 static char myStrBuf[64];
32
33 inline MuTyV() { typ = 'I'; mtv.iv = 0; mtv.dv = 0.; mtv.strv[0] ='\0'; }
34 inline MuTyV(MuTyV const & a) { typ = a.typ; mtv = a.mtv; }
35 inline MuTyV(int_4 i) { typ = 'I'; mtv.iv = (int_8)i; mtv.dv = 0.; mtv.strv[0] ='\0'; }
36 inline MuTyV(int_8 i) { typ = 'I'; mtv.iv = i; mtv.dv = 0.; mtv.strv[0] ='\0'; }
37 inline MuTyV(r_4 f) { typ = 'D'; mtv.dv = (r_8)f; mtv.iv = 0; mtv.strv[0] ='\0'; }
38 inline MuTyV(r_8 d) { typ = 'D'; mtv.dv = d; mtv.iv = 0; mtv.strv[0] ='\0'; }
39 inline MuTyV(char const* s) { typ = 'S'; strncpy(mtv.strv, s, 39); mtv.strv[38] = '\0'; }
40 inline MuTyV(string const& s) { typ = 'S'; strncpy(mtv.strv, s.c_str(), 39); mtv.strv[38] = '\0'; }
41 inline MuTyV & operator= (MuTyV const & a) { typ = a.typ; mtv = a.mtv; return(*this); }
42 inline int_4 operator= (int_4 v) { typ = 'I'; mtv.iv = (int_8)v; return(v); }
43 inline int_8 operator= (int_8 v) { typ = 'I'; mtv.iv = v; return(v); }
44 inline r_4 operator= (r_4 v) { typ = 'D'; mtv.dv = (r_8)v; return(v); }
45 inline r_8 operator= (r_8 v) { typ = 'D'; mtv.dv = v; return(v); }
46 inline char* operator= (char* s) { typ = 'S'; strncpy(mtv.strv, s, 39);
47 mtv.strv[38] = '\0'; return(s); }
48 inline string& operator= (string& s) { typ = 'S'; strncpy(mtv.strv, s.c_str(), 39);
49 mtv.strv[38] = '\0'; return(s); }
50
51 inline operator int_4() { if (typ == 'I') return((int_4)mtv.iv);
52 else if (typ == 'D') return((int_4)mtv.dv);
53 else return(atol(mtv.strv)); }
54 inline operator int_8() { if (typ == 'I') return((int_8)mtv.iv);
55 else if (typ == 'D') return((int_8)mtv.dv);
56 else return(atol(mtv.strv)); }
57 inline operator r_4() { if (typ == 'I') return((r_4)mtv.iv);
58 else if (typ == 'D') return((r_4)mtv.dv);
59 else return((r_4)atof(mtv.strv)); }
60 inline operator r_8() { if (typ == 'I') return((r_8)mtv.iv);
61 else if (typ == 'D') return(mtv.dv);
62 else return(atof(mtv.strv)); }
63 inline operator string() { char *ss=myStrBuf;
64 if (typ == 'I') sprintf(ss,"%ld", (long)mtv.iv);
65 else if (typ == 'D') sprintf(ss,"%.20g", mtv.dv);
66 else ss = mtv.strv;
67 return(ss); }
68};
69
70// Classe liste de variables Dynamic Variable List
71
72class DVList : public AnyDataObj {
73public:
74// enum {classId = ClassId_DVList };
75
76 DVList();
77 DVList(const DVList&);
78 DVList(char *flnm);
79
80 virtual ~DVList();
81
82 DVList& operator= (const DVList&);
83
84 void Clear();
85 DVList& Merge(const DVList&);
86
87 int_8 GetI(string const& key, int_8 def=-1);
88 r_8 GetD(string const& key, r_8 def=-9.e19);
89 string GetS(string const& key, char* def="");
90 string GetComment(string const& key);
91
92 void SetI(string const& key, int_8 val);
93 void SetD(string const& key, r_8 val);
94 void SetS(string const& key, char const* val);
95 void SetS(string const& key, string val);
96 void SetComment(string const& key, string const& comm);
97
98 MuTyV& Get(string const& key);
99 inline MuTyV& operator() (string const& key) { return Get(key); }
100 inline MuTyV& operator[] (string const& key) { return Get(key); }
101 inline string& Comment() { return(comment); }
102
103 inline void Print() const { Print(cout); }
104 virtual void Print(ostream& os) const;
105
106// Chaque element dans un DVList est constitue desormais d'un MuTyV
107// et d'une chaine de caracteres (commentaire) regroupe dans la structure
108// dvlElement. Ces elements sont associes aux noms de variables dans un
109// map<...> ValList. Reza 02/2000
110
111 struct dvlElement {MuTyV elval; string elcomm; } ;
112 typedef map<string, dvlElement, less<string> > ValList;
113 inline ValList::const_iterator Begin() { return(mvlist.begin()); }
114 inline ValList::const_iterator End() { return(mvlist.end()); }
115
116
117private:
118
119 ValList mvlist;
120 string comment;
121};
122
123inline ostream& operator << (ostream& s, DVList const & dvl)
124 { dvl.Print(s); return(s); }
125
126inline POutPersist& operator << (POutPersist& os, DVList & obj)
127{ ObjFileIO<DVList> fio(&obj); fio.Write(os); return(os); }
128inline PInPersist& operator >> (PInPersist& is, DVList & obj)
129{ ObjFileIO<DVList> fio(&obj); fio.Read(is); return(is); }
130
131// Classe pour la gestion de persistance
132// ObjFileIO<DVList>
133
134} // namespace SOPHYA
135
136#endif /* DVLIST_H__SEEN */
137
138
Note: See TracBrowser for help on using the repository browser.