[754] | 1 | // Classe Dynamic Variable List (DVList) de PEIDA
|
---|
| 2 | // R. Ansari 1997
|
---|
| 3 | // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA
|
---|
| 4 |
|
---|
| 5 | #include "machdefs.h"
|
---|
| 6 | #include <stdlib.h>
|
---|
| 7 | #include <stdio.h>
|
---|
| 8 |
|
---|
| 9 | #include "dvlist.h"
|
---|
| 10 | #include "strutil.h"
|
---|
| 11 |
|
---|
| 12 | //++
|
---|
| 13 | // Class DVList
|
---|
[895] | 14 | // Lib SysTools
|
---|
[754] | 15 | // include dvlist.h
|
---|
| 16 | //
|
---|
| 17 | // Cette classe permet de gérer une ensemble de variables (ou paramètres)
|
---|
| 18 | // pouvant être définies dynamiquement à l'execution. Le nom des
|
---|
| 19 | // variables ne doit pas contenir de blancs ("<espace>") et est
|
---|
| 20 | // limité à 64 caractères maximum. Cette classe
|
---|
| 21 | // offre la possibilité de sauvegarder l'ensemble
|
---|
| 22 | // des variables (Nom, Type, Valeur) dans un fichier, ou de
|
---|
| 23 | // recréer l'objet DVList et l'ensemble de ses variables à
|
---|
| 24 | // partir d'un fichier (Objet PPersist). Une zone commentaire (max=320 c.)
|
---|
| 25 | // est associée à chaque objet DVList, accessible à travers
|
---|
| 26 | // la méthode "Comment()". Les objets de cette classe sont
|
---|
| 27 | // en particulier destinés à être inclus dans d'autres objets
|
---|
| 28 | // PPersist plus complexes. La classe DVList gère des
|
---|
| 29 | // variables de type entier ("int_8"), réél double précision ("r_8")
|
---|
| 30 | // et de type chaine de caracteres ("string, char*", maxi 30 caracteres ).
|
---|
| 31 | // Une classe intermédiaire (*MuTyV*) est utilisée pour représenter une
|
---|
| 32 | // variable et fournit les services de conversion entre les différents types.
|
---|
| 33 | //--
|
---|
| 34 | //--
|
---|
| 35 | //++
|
---|
| 36 | // Links Parents
|
---|
| 37 | // PPersist
|
---|
| 38 | //--
|
---|
| 39 |
|
---|
| 40 |
|
---|
| 41 | static MuTyV ddvdum(-9.e19);
|
---|
| 42 |
|
---|
[913] | 43 |
|
---|
| 44 | /*!
|
---|
[895] | 45 | \class SOPHYA::DVList
|
---|
[913] | 46 | \ingroup SysTools
|
---|
[895] | 47 | This class can be used to construct list of values associated with names.
|
---|
| 48 | Variables names should not contain space characters and is limited to 64
|
---|
| 49 | characters. The DVList class uses \b SOPHYA::MuTyV objects to hold values
|
---|
| 50 | of type string, integer (\b int_8) or float (\b r_8). A comment string
|
---|
| 51 | can be associated with each variable name. A global comment string
|
---|
| 52 | can be attached to the DVList object. DVList objects can conveniently be
|
---|
| 53 | used to represent FITS headers. The class \b SOPHYA::ObjFileIO<DVList>
|
---|
| 54 | handles serialisation for DVList. (See SOPHYA::PPersist ).
|
---|
[1080] | 55 |
|
---|
[895] | 56 | // ------- Using DVList objects ------
|
---|
| 57 | DVList dvl;
|
---|
| 58 | dvl("toto") = 14; // Integer type value (=14) named toto
|
---|
| 59 | dvl("titi") = 25.5; // float type value (=25.5) named titi
|
---|
| 60 | dvl("tata") = "Bonjour !"; // string type value (="Bonjour !") named tata
|
---|
| 61 | // Upper and lower case letters are distinguished
|
---|
| 62 | dvl("hello") = 88;
|
---|
| 63 | dvl("Hello") = 77.77;
|
---|
| 64 | dvl.Comment() = "DVList test object, with values named hello, Hello ";
|
---|
| 65 | // Saving the dvl object into a PPF file
|
---|
| 66 | POutStream os("dvl.ppf");
|
---|
| 67 | os << dvl;
|
---|
| 68 | // later on ...
|
---|
| 69 | DVList dvlr;
|
---|
| 70 | PInStream is("dvl.ppf");
|
---|
| 71 | is << dvlr;
|
---|
| 72 | int k = dvlr["toto"] ; // k = 14
|
---|
| 73 | r_8 b = dvlr["titi"] ; // b = 25.5
|
---|
| 74 | string s = dvlr["tata"] ; // s = "Bonjour !"
|
---|
| 75 | int m = dvlr["hello"] ; // m = 88
|
---|
[754] | 76 |
|
---|
[895] | 77 | \endcode
|
---|
[1363] | 78 | \sa SOPHYA::ObjFileIO<DVList>
|
---|
[895] | 79 | */
|
---|
| 80 |
|
---|
[754] | 81 | //++
|
---|
| 82 | // Titre Constructeurs
|
---|
| 83 | //--
|
---|
| 84 |
|
---|
| 85 | //++
|
---|
| 86 | // DVList()
|
---|
| 87 | // Constructeur par défaut
|
---|
| 88 | // DVList(DVList& cfd)
|
---|
| 89 | // Constructeur par copie. Le nouvel objet est une copie complète de "cfd"
|
---|
| 90 | // DVList(char* flnm)
|
---|
| 91 | // Constructeur avec initialisation à partir du contenu du fichier (PPF)
|
---|
| 92 | // "flnm". Le fichier doit avoir été créé par la méthode "Write()"
|
---|
| 93 | //--
|
---|
| 94 |
|
---|
| 95 | /* --Methode-- */
|
---|
[895] | 96 | /*! Default constructor */
|
---|
[754] | 97 | DVList::DVList()
|
---|
| 98 | {
|
---|
| 99 | comment = "";
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | /* --Methode-- */
|
---|
[895] | 103 | /*! copy constructor */
|
---|
[754] | 104 | DVList::DVList(const DVList& dvl)
|
---|
| 105 | {
|
---|
| 106 | Merge(dvl);
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | /* --Methode-- */
|
---|
[895] | 110 | /*! Copy constructor - Object initialized using the PPF file \b flnm */
|
---|
[754] | 111 | DVList::DVList(char *flnm)
|
---|
| 112 | {
|
---|
| 113 | PInPersist s(flnm);
|
---|
| 114 | ObjFileIO<DVList> fiodvl(this);
|
---|
| 115 | fiodvl.Read(s);
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 |
|
---|
| 119 | /* --Methode-- */
|
---|
| 120 | DVList::~DVList()
|
---|
| 121 | {
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | //++
|
---|
| 125 | // Titre Gestion des variables et opérateurs
|
---|
| 126 | //--
|
---|
| 127 |
|
---|
| 128 | //++
|
---|
| 129 | // void Clear()
|
---|
| 130 | // Supprime la définition de toutes les variables de l'objet.
|
---|
| 131 | // DVList& Merge(const DVList& lv)
|
---|
| 132 | // Fusionne l'objet avec la liste des variables de l'objet "lv"
|
---|
| 133 | // DVList& operator= (const DVList& cofr)
|
---|
| 134 | // Remplace la liste des variables de l'objet par celle de l'objet "cofr".
|
---|
| 135 | //--
|
---|
| 136 |
|
---|
| 137 | /* --Methode-- */
|
---|
[895] | 138 | /*! Copy operator - Replaces the variables list with the list from \b dvl */
|
---|
[754] | 139 | DVList& DVList::operator= (const DVList& dvl)
|
---|
| 140 | {
|
---|
| 141 | Clear();
|
---|
| 142 | return(Merge(dvl));
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 |
|
---|
| 146 | /* --Methode-- */
|
---|
[895] | 147 | /*! Resets the object and clears the variable list and global comment */
|
---|
[754] | 148 | void DVList::Clear()
|
---|
| 149 | {
|
---|
| 150 | mvlist.erase(mvlist.begin(), mvlist.end());
|
---|
| 151 | comment = "";
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | /* --Methode-- */
|
---|
[895] | 155 | /*! Appends the values from the object \b dvl to the objects list */
|
---|
[754] | 156 | DVList& DVList::Merge(const DVList& dvl)
|
---|
| 157 | {
|
---|
| 158 | ValList::const_iterator it;
|
---|
| 159 | for(it = dvl.mvlist.begin(); it != dvl.mvlist.end(); it++)
|
---|
| 160 | {
|
---|
[1310] | 161 | switch ((*it).second.elval.Type())
|
---|
[754] | 162 | {
|
---|
[1310] | 163 | case MuTyV::MTVInteger :
|
---|
[1080] | 164 | SetI((*it).first, (*it).second.elval.iv);
|
---|
[754] | 165 | break;
|
---|
[1310] | 166 | case MuTyV::MTVFloat :
|
---|
[1080] | 167 | SetD((*it).first, (*it).second.elval.dv);
|
---|
[754] | 168 | break;
|
---|
[1310] | 169 | case MuTyV::MTVComplex :
|
---|
[1080] | 170 | SetZ((*it).first, complex<r_8>((*it).second.elval.dv, (*it).second.elval.dv_im));
|
---|
| 171 | break;
|
---|
[1310] | 172 | case MuTyV::MTVString :
|
---|
[1080] | 173 | SetS((*it).first, *((*it).second.elval.strv));
|
---|
[754] | 174 | break;
|
---|
| 175 | default :
|
---|
| 176 | break;
|
---|
| 177 | }
|
---|
[1245] | 178 | SetComment((*it).first, (*it).second.elcomm);
|
---|
[754] | 179 | }
|
---|
| 180 | comment = comment + "\n" + dvl.comment;
|
---|
| 181 | return(*this);
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 |
|
---|
| 185 | //++
|
---|
| 186 | // int_8 GetI(string const& key, int_8 def=-1)
|
---|
| 187 | // r_8 GetD(string const& key, r_8 def=-9.e19)
|
---|
| 188 | // string GetS(string const& key, char* def="")
|
---|
| 189 | // Retourne la valeur de la variable de nom "key" et de type entier, réél,
|
---|
| 190 | // chaine de caracteres.
|
---|
| 191 | // Si la variable n'existe pas, la valeur par défaut "def" est renvoyée.
|
---|
| 192 | // string GetComment(string const& key)
|
---|
| 193 | // Retourne le commentaire associé à la variable de nom "key".
|
---|
| 194 | //--
|
---|
| 195 |
|
---|
| 196 | /* --Methode-- */
|
---|
[895] | 197 | /*! Returns the value corresponding to name \b key, converted to integer
|
---|
| 198 | Default value \b def is returned if name \b key not found */
|
---|
[1157] | 199 | int_8 DVList::GetI(string const& key, int_8 def) const
|
---|
[754] | 200 | {
|
---|
[1157] | 201 | ValList::const_iterator it = mvlist.find(key);
|
---|
[754] | 202 | if (it == mvlist.end()) return(def);
|
---|
[1225] | 203 | return( (int_8)((*it).second.elval) );
|
---|
[754] | 204 | }
|
---|
| 205 |
|
---|
| 206 | /* --Methode-- */
|
---|
[895] | 207 | /*! Returns the value corresponding to name \b key, converted to double
|
---|
| 208 | Default value \b def is returned if name \b key not found */
|
---|
[1157] | 209 | r_8 DVList::GetD(string const& key, r_8 def) const
|
---|
[754] | 210 | {
|
---|
[1157] | 211 | ValList::const_iterator it = mvlist.find(key);
|
---|
[754] | 212 | if (it == mvlist.end()) return(def);
|
---|
[1225] | 213 | return( (r_8)((*it).second.elval) );
|
---|
[754] | 214 | }
|
---|
| 215 |
|
---|
| 216 | /* --Methode-- */
|
---|
[1080] | 217 | /*! Returns the value corresponding to name \b key, converted to complex
|
---|
| 218 | Default value \b def is returned if name \b key not found */
|
---|
[1157] | 219 | complex<r_8> DVList::GetZ(string const& key, complex<r_8> def) const
|
---|
[1080] | 220 | {
|
---|
[1157] | 221 | ValList::const_iterator it = mvlist.find(key);
|
---|
[1080] | 222 | if (it == mvlist.end()) return(def);
|
---|
[1228] | 223 | #if defined(__GNUG__)
|
---|
| 224 | complex<r_8> z;
|
---|
| 225 | z = (*it).second.elval;
|
---|
| 226 | return(z);
|
---|
| 227 | #else
|
---|
| 228 | return( (complex<r_8>)(*it).second.elval );
|
---|
| 229 | #endif
|
---|
[1080] | 230 | }
|
---|
| 231 |
|
---|
| 232 | /* --Methode-- */
|
---|
[895] | 233 | /*! Returns the value corresponding to name \b key, converted to string
|
---|
| 234 | Default value \b def is returned if name \b key not found */
|
---|
[1157] | 235 | string DVList::GetS(string const& key, char* def) const
|
---|
[754] | 236 | {
|
---|
[1157] | 237 | ValList::const_iterator it = mvlist.find(key);
|
---|
[754] | 238 | if (it == mvlist.end()) return(def);
|
---|
[1225] | 239 | return( (string)((*it).second.elval) );
|
---|
[754] | 240 | }
|
---|
| 241 |
|
---|
| 242 | /* --Methode-- */
|
---|
[895] | 243 | /*! Returns the comment associated with name \b key */
|
---|
[1157] | 244 | string DVList::GetComment(string const& key) const
|
---|
[754] | 245 | {
|
---|
[1157] | 246 | ValList::const_iterator it = mvlist.find(key);
|
---|
[754] | 247 | if (it == mvlist.end()) return("");
|
---|
| 248 | return((*it).second.elcomm);
|
---|
| 249 | }
|
---|
| 250 |
|
---|
| 251 | //++
|
---|
| 252 | // void SetI(string const& key, int_8 val)
|
---|
| 253 | // void SetD(string const& key, r_8 val)
|
---|
[1080] | 254 | // void SetZ(string const& key, complex<r_8> val)
|
---|
[754] | 255 | // void SetS(string const& key, char* val)
|
---|
| 256 | // void SetS(string const& key, string val)
|
---|
[1080] | 257 | // Crée la variable de nom "key", de type entier, double, complexe, string et
|
---|
[754] | 258 | // lui attribue la valeur "val". Si une variable du même nom existe,
|
---|
| 259 | // sa valeur et eventuellement son type sont modifiés. Les noms de
|
---|
| 260 | // variables ne doivent pas contenir de caractères spéciaux,
|
---|
| 261 | // en particulier pas de CR/LF.
|
---|
| 262 | // void SetComment(string const& key, string const& comm)
|
---|
| 263 | // Modifie le commentaire associé à la variable de nom "key", si
|
---|
| 264 | // celle-ci existe. Le texte du commentaire ne doit pas contenir
|
---|
| 265 | // de caractères spéciaux, et en particulier pas de CR/LF.
|
---|
| 266 | //--
|
---|
| 267 |
|
---|
| 268 | /* --Methode-- */
|
---|
[1157] | 269 | /*! Removes the definition and value associated with the name \b key.
|
---|
| 270 | Return \c true if the \b key is found in the list, \c false otherwise. */
|
---|
| 271 | bool DVList::DeleteKey(string const& key)
|
---|
| 272 | {
|
---|
| 273 | ValList::iterator it = mvlist.find(key);
|
---|
| 274 | if (it == mvlist.end()) return(false);
|
---|
| 275 | mvlist.erase(it);
|
---|
| 276 | return(true);
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | /* --Methode-- */
|
---|
| 280 | /*! Return \c true if the \b key is found in the list, \c false otherwise. */
|
---|
| 281 | bool DVList::HasKey(string const& key) const
|
---|
| 282 | {
|
---|
| 283 | ValList::const_iterator it = mvlist.find(key);
|
---|
| 284 | if (it == mvlist.end()) return(false);
|
---|
| 285 | return(true);
|
---|
| 286 | }
|
---|
| 287 |
|
---|
| 288 |
|
---|
| 289 | /* --Methode-- */
|
---|
[895] | 290 | /*! Appends or sets the integer value \b val in the list with name \b key */
|
---|
[754] | 291 | void DVList::SetI(string const& key, int_8 val)
|
---|
| 292 | {
|
---|
| 293 | Get(key) = (int_8)val;
|
---|
| 294 | }
|
---|
| 295 |
|
---|
| 296 | /* --Methode-- */
|
---|
| 297 | void DVList::SetD(string const& key, r_8 val)
|
---|
[895] | 298 | /*! Appends or sets the double value \b val in the list with name \b key */
|
---|
[754] | 299 | {
|
---|
| 300 | Get(key) = (r_8)val;
|
---|
| 301 | }
|
---|
| 302 |
|
---|
| 303 | /* --Methode-- */
|
---|
[1080] | 304 | void DVList::SetZ(string const& key, complex<r_8> val)
|
---|
| 305 | /*! Appends or sets the complex value \b val in the list with name \b key */
|
---|
| 306 | {
|
---|
| 307 | Get(key) = val;
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | /* --Methode-- */
|
---|
[895] | 311 | /*! Appends or sets the string value \b val in the list with name \b key */
|
---|
[754] | 312 | void DVList::SetS(string const& key, char const* val)
|
---|
| 313 | {
|
---|
| 314 | MuTyV div(val);
|
---|
| 315 | Get(key) = div;
|
---|
| 316 | }
|
---|
| 317 |
|
---|
| 318 | /* --Methode-- */
|
---|
[895] | 319 | /*! Appends or sets the string value \b val in the list with name \b key */
|
---|
[1080] | 320 | void DVList::SetS(string const& key, string const& val)
|
---|
[754] | 321 | {
|
---|
| 322 | MuTyV div(val);
|
---|
| 323 | Get(key) = div;
|
---|
| 324 | }
|
---|
| 325 |
|
---|
| 326 | /* --Methode-- */
|
---|
[895] | 327 | /*! Assigns the comment \b comm with the name \b key .
|
---|
| 328 | Does nothing if the entry with name is not present in the list */
|
---|
[754] | 329 | void DVList::SetComment(string const& key, string const& comm)
|
---|
| 330 | {
|
---|
| 331 | ValList::iterator it = mvlist.find(key);
|
---|
| 332 | if (it == mvlist.end()) return;
|
---|
| 333 | (*it).second.elcomm = comm;
|
---|
| 334 | }
|
---|
| 335 |
|
---|
| 336 | //++
|
---|
| 337 | // MuTyV& Get(string const& key)
|
---|
| 338 | // Renvoie une référence sur l'objet "MuTyV" de la liste avec le nom "key".
|
---|
| 339 | // Si cet objet (variable) n'existe pas, il est créé.
|
---|
| 340 | // MuTyV& operator() (string const& key)
|
---|
| 341 | // MuTyV& operator[] (string const& key)
|
---|
| 342 | //
|
---|
| 343 | // Renvoie la variable de nom "key". Equivalent à "Get(key)".
|
---|
| 344 | // string& Comment()
|
---|
| 345 | // Renvoie une référence sur le champ commentaire de l'objet.
|
---|
| 346 | //--
|
---|
| 347 |
|
---|
| 348 | /* --Methode-- */
|
---|
[895] | 349 | /*! Return the MuTyV value associated with name \b key .
|
---|
[1157] | 350 | Integer 0 is returned if \b key is not present in the list */
|
---|
| 351 | MuTyV DVList::Get(string const& key) const
|
---|
| 352 | {
|
---|
| 353 | ValList::const_iterator it = mvlist.find(key);
|
---|
[1386] | 354 | if (it == mvlist.end()) return(MuTyV( (int_8) 0));
|
---|
[1157] | 355 | else return((*it).second.elval);
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | /* --Methode-- */
|
---|
| 359 | /*! Return the MuTyV value associated with name \b key .
|
---|
[895] | 360 | Adds an entry of type integer in the list if \b key is not present in the list */
|
---|
[754] | 361 | MuTyV& DVList::Get(string const& key)
|
---|
| 362 | {
|
---|
| 363 | size_t l = key.length();
|
---|
| 364 | if ( (l < 1) || (key.find_first_of(" ") < l) ) return(ddvdum);
|
---|
| 365 | // dvlElement xxx = {(int_8)0 , ""}; marche pas sur mac/CW (!) - cf DY
|
---|
| 366 | dvlElement xxx; xxx.elval = (int_8)0; xxx.elcomm = "";
|
---|
| 367 | ValList::iterator it = mvlist.find(key);
|
---|
| 368 | if (it == mvlist.end()) mvlist[key] = xxx;
|
---|
| 369 | it = mvlist.find(key);
|
---|
| 370 | if (it == mvlist.end()) return(ddvdum);
|
---|
| 371 | else return((*it).second.elval);
|
---|
| 372 | }
|
---|
| 373 |
|
---|
| 374 | //++
|
---|
| 375 | // Titre Entrée-Sortie
|
---|
| 376 | //--
|
---|
| 377 |
|
---|
| 378 | //++
|
---|
| 379 | // void Print()
|
---|
| 380 | // Imprime (sur "cout") la liste des variables et leurs valeurs.
|
---|
| 381 | // void Print(ostream& os)
|
---|
| 382 | // Imprime sur le flot "os" la liste des variables et leurs valeurs.
|
---|
| 383 | // ostream& operator << (ostream& s, DVList& dvl)
|
---|
| 384 | // sortie sur flot "s" (Appel a "Print(s)").
|
---|
| 385 | //--
|
---|
| 386 |
|
---|
[895] | 387 | /* --Methode-- */
|
---|
| 388 | /*! Prints a brief description of object on on the output stream \b os */
|
---|
| 389 | void DVList::Show(ostream& os) const
|
---|
| 390 | {
|
---|
| 391 | os << "DVList::Show() - NVar= " << (int)mvlist.size() << "\n";
|
---|
| 392 | os << comment << endl;
|
---|
| 393 | }
|
---|
[754] | 394 |
|
---|
| 395 | /* --Methode-- */
|
---|
[895] | 396 | /*! Prints the list of variables on the output stream \b os */
|
---|
[754] | 397 | void DVList::Print(ostream& os) const
|
---|
| 398 | {
|
---|
| 399 | os << "DVList::Print() - NVar= " << (int)mvlist.size() << "\n";
|
---|
| 400 | if (comment.length() > 0) os << comment << endl;
|
---|
[1310] | 401 | char buff[1024];
|
---|
[754] | 402 | ValList::const_iterator it;
|
---|
| 403 | for(it = mvlist.begin(); it != mvlist.end(); it++) {
|
---|
[1310] | 404 | switch ((*it).second.elval.Type())
|
---|
[754] | 405 | {
|
---|
[1310] | 406 | case MuTyV::MTVInteger :
|
---|
[827] | 407 | sprintf(buff, "%s = %ld (int) %s\n", (*it).first.substr(0,64).c_str(),
|
---|
[1080] | 408 | (long)((*it).second.elval.iv), (*it).second.elcomm.substr(0,128).c_str());
|
---|
[754] | 409 | break;
|
---|
[1310] | 410 | case MuTyV::MTVFloat :
|
---|
[754] | 411 | sprintf(buff, "%s = %.20g (double) %s\n", (*it).first.substr(0,64).c_str(),
|
---|
[1080] | 412 | (*it).second.elval.dv, (*it).second.elcomm.substr(0,128).c_str());
|
---|
[754] | 413 | break;
|
---|
[1310] | 414 | case MuTyV::MTVComplex :
|
---|
[1080] | 415 | sprintf(buff, "%s = %.20g %.20g i (complex) %s\n", (*it).first.substr(0,64).c_str(),
|
---|
| 416 | (*it).second.elval.dv, (*it).second.elval.dv_im, (*it).second.elcomm.substr(0,128).c_str());
|
---|
| 417 | break;
|
---|
[1310] | 418 | case MuTyV::MTVString :
|
---|
[754] | 419 | sprintf(buff, "%s = %s (string) %s\n", (*it).first.substr(0,64).c_str(),
|
---|
[1310] | 420 | (*it).second.elval.strv->substr(0,800).c_str(), (*it).second.elcomm.substr(0,128).c_str());
|
---|
[754] | 421 | break;
|
---|
| 422 | default :
|
---|
| 423 | break;
|
---|
| 424 | }
|
---|
| 425 | os << (string)buff;
|
---|
| 426 | }
|
---|
| 427 | os << endl;
|
---|
| 428 | }
|
---|
| 429 |
|
---|
| 430 |
|
---|
| 431 | //++
|
---|
| 432 | // Titre Exemples
|
---|
| 433 | // Utilisation des objets *MuTyV* :
|
---|
| 434 | //| MuTyV mvu; // Declaration d'une variable
|
---|
| 435 | //| mvu = 60; // mvu est de type entier (= 60)
|
---|
| 436 | //| mvu = 66.6; // et double (= 66.6) maintenant ...
|
---|
| 437 | //| MuTyV mvi(14); // On construit une variable entiere = 14
|
---|
| 438 | //| r_4 x = mvi; // x vaut 14.0
|
---|
| 439 | //| MuTyV mvd(44.4); // Variable double = 44.4
|
---|
| 440 | //| int k = mvd; // k vaut 44
|
---|
| 441 | //| MuTyV mvs("Bonjour, Ca va ?"); // Variable chaine de caracteres
|
---|
| 442 | //| string s = mvs; // s vaut "Bonjour, Ca va ?"
|
---|
| 443 | // Utilisation des *DVList* :
|
---|
| 444 | //| DVList dvl;
|
---|
| 445 | //| dvl("toto") = 14;
|
---|
| 446 | //| dvl("titi") = 25.5;
|
---|
| 447 | //| dvl("tata") = "Bonjour, Ca va ?";
|
---|
| 448 | // Majuscules et minuscules sont differenciees pour les noms, pas de blanc ...
|
---|
| 449 | //| dvl("hello") = 88;
|
---|
| 450 | //| dvl("Hello") = 77.77;
|
---|
| 451 | //| dvl.Comment() = "Test d'objet DVList, avec variables hello, Hello ";
|
---|
| 452 | //| dvl.Write("dvlist.ppf");
|
---|
| 453 | // Plus loin, ou dans un autre programme, on relit le fichier fabrique plus haut
|
---|
| 454 | //| DVList dvlr("dvlist.ppf");
|
---|
| 455 | //| int k = dvlr["toto"] ; // k = 14
|
---|
| 456 | //| r_8 b = dvlr["titi"] ; // b = 25.5
|
---|
| 457 | //| string s = dvlr["tata"] ; // s = "Bonjour, Ca va ?"
|
---|
| 458 | //| r_4 c = dvlr["Hello"] ; // c = 77.77
|
---|
| 459 | //| int l = dvlr["Hello"] ; // l = 77
|
---|
| 460 | //| int m = dvlr["hello"] ; // m = 88
|
---|
| 461 | //--
|
---|
| 462 |
|
---|
| 463 |
|
---|
| 464 | //----------------------------------------------------------
|
---|
| 465 | // Classe pour la gestion de persistance
|
---|
| 466 | // ObjFileIO<DVList>
|
---|
| 467 | //----------------------------------------------------------
|
---|
| 468 |
|
---|
| 469 | /* --Methode-- */
|
---|
| 470 | void ObjFileIO<DVList>::WriteSelf(POutPersist& s) const
|
---|
| 471 | {
|
---|
[1310] | 472 | char buf[1024];
|
---|
[802] | 473 | string sfw;
|
---|
[1310] | 474 | int lc = dobj->Comment().length();
|
---|
| 475 | // itab - 0 : Version, 1 : NVar, 2 : Comment length, 3 reserved
|
---|
| 476 | uint_4 itab[4];
|
---|
| 477 | itab[0] = 2; // Version number = 2
|
---|
| 478 | itab[1] = dobj->Size();
|
---|
| 479 | itab[2] = lc;
|
---|
| 480 | itab[3] = 0;
|
---|
| 481 | s.Put(itab, 4);
|
---|
[754] | 482 |
|
---|
[1310] | 483 | if (lc > 0) s.PutStr(dobj->Comment());
|
---|
| 484 | sfw = "\n----Variable-List---------------\n";
|
---|
| 485 | s.PutStr(sfw);
|
---|
| 486 |
|
---|
[754] | 487 | DVList::ValList::const_iterator it;
|
---|
| 488 | for(it = dobj->Begin(); it != dobj->End(); it++) {
|
---|
[1310] | 489 | switch ((*it).second.elval.Type()) {
|
---|
| 490 | case MuTyV::MTVInteger :
|
---|
| 491 | sprintf(buf,"I %s %ld\n", (*it).first.substr(0,64).c_str(), (long)((*it).second.elval.iv) );
|
---|
[802] | 492 | sfw = buf; s.PutStr(sfw);
|
---|
[754] | 493 | break;
|
---|
[1310] | 494 | case MuTyV::MTVFloat :
|
---|
| 495 | sprintf(buf,"F %s %.20g\n", (*it).first.substr(0,64).c_str(), (*it).second.elval.dv );
|
---|
[802] | 496 | sfw = buf; s.PutStr(sfw);
|
---|
[754] | 497 | break;
|
---|
[1310] | 498 | case MuTyV::MTVComplex :
|
---|
| 499 | sprintf(buf,"Z %s %.20g %.20g\n", (*it).first.substr(0,64).c_str(), (*it).second.elval.dv,
|
---|
[1080] | 500 | (*it).second.elval.dv_im);
|
---|
| 501 | sfw = buf; s.PutStr(sfw);
|
---|
| 502 | break;
|
---|
[1310] | 503 | case MuTyV::MTVString :
|
---|
| 504 | sprintf(buf,"S %s %s\n", (*it).first.substr(0,64).c_str(), (*it).second.elval.strv->substr(0,960).c_str() );
|
---|
[802] | 505 | sfw = buf; s.PutStr(sfw);
|
---|
[754] | 506 | break;
|
---|
| 507 | default :
|
---|
| 508 | break;
|
---|
| 509 | }
|
---|
| 510 | // Ecriture eventuelle du commentaire associe
|
---|
| 511 | if ((*it).second.elcomm.length() > 0) {
|
---|
| 512 | sprintf(buf,"# %s", (*it).second.elcomm.substr(0,256).c_str());
|
---|
[802] | 513 | sfw = buf; s.PutStr(sfw);
|
---|
[754] | 514 | }
|
---|
| 515 | }
|
---|
| 516 |
|
---|
[802] | 517 | sfw = "ZZZZZ--End-of-Varible-List------"; s.PutStr(sfw);
|
---|
[754] | 518 | }
|
---|
| 519 |
|
---|
| 520 | /* --Methode-- */
|
---|
| 521 | void ObjFileIO<DVList>::ReadSelf(PInPersist& s)
|
---|
| 522 | {
|
---|
[1310] | 523 | char buf[1024];
|
---|
[802] | 524 | string sfr;
|
---|
[1080] | 525 | int_8 j,iv,k;
|
---|
| 526 | r_8 dv, dvi;
|
---|
| 527 | complex<r_8> z;
|
---|
[754] | 528 | bool ok=true;
|
---|
| 529 | buf[0] = '\0';
|
---|
| 530 | dobj->Clear();
|
---|
| 531 |
|
---|
[1310] | 532 | // itab - 0 : Version, 1 : NVar, 2 : Comment length, 3 reserved
|
---|
| 533 | uint_4 itab[4];
|
---|
| 534 | s.Get(itab, 4);
|
---|
| 535 | if (itab[2] > 0) { // Il y a un champ commentaire a lire
|
---|
[802] | 536 | s.GetStr(sfr);
|
---|
| 537 | dobj->Comment() = sfr;
|
---|
[754] | 538 | }
|
---|
| 539 |
|
---|
[1310] | 540 | s.GetStr(sfr); // Pour lire les "------- "
|
---|
| 541 |
|
---|
[754] | 542 | string key="";
|
---|
| 543 | while(ok) {
|
---|
[802] | 544 | s.GetStr(sfr);
|
---|
[1310] | 545 | strncpy(buf, sfr.c_str(), 1024);
|
---|
| 546 | buf[1023] = '\0';
|
---|
| 547 | j = strlen(buf)-1;
|
---|
| 548 | if ( (j >= 0) && (buf[j] == '\n') ) buf[j] = '\0';
|
---|
[754] | 549 | if (strncmp(buf,"ZZZZZ",5) == 0) { ok=false; break; }
|
---|
| 550 | if (buf[0] == '#') {
|
---|
| 551 | dobj->SetComment(key, buf+2);
|
---|
| 552 | continue;
|
---|
| 553 | }
|
---|
| 554 | j = posc(buf+2, ' ')+2;
|
---|
| 555 | buf[j] = '\0';
|
---|
| 556 | switch (buf[0]) {
|
---|
| 557 | case 'I' :
|
---|
| 558 | iv = (int_8)atol(buf+j+1);
|
---|
| 559 | key = buf+2;
|
---|
| 560 | dobj->SetI(key, iv);
|
---|
| 561 | break;
|
---|
[1310] | 562 | case 'F' :
|
---|
[754] | 563 | dv = atof(buf+j+1);
|
---|
| 564 | key = buf+2;
|
---|
| 565 | dobj->SetD(key, dv);
|
---|
| 566 | break;
|
---|
[1080] | 567 | case 'Z' :
|
---|
| 568 | k = posc(buf+j+1, ' ')+j+1;
|
---|
| 569 | buf[k] = '\0';
|
---|
| 570 | dv = atof(buf+j+1);
|
---|
| 571 | dvi = atof(buf+k+1);
|
---|
| 572 | key = buf+2;
|
---|
| 573 | z = complex<r_8>(dv, dvi);
|
---|
| 574 | dobj->SetZ(key, z);
|
---|
| 575 | break;
|
---|
[1310] | 576 | case 'S' :
|
---|
[754] | 577 | key = buf+2;
|
---|
| 578 | dobj->SetS(key, buf+j+1);
|
---|
| 579 | break;
|
---|
| 580 | default :
|
---|
| 581 | break;
|
---|
| 582 | }
|
---|
[1310] | 583 | }
|
---|
| 584 | if (dobj->Size() != itab[1]) // Probleme !!!
|
---|
| 585 | throw FileFormatExc("ObjFileIO<DVList>::ReadSelf() Error in Nb. Variables !");
|
---|
[754] | 586 | }
|
---|
| 587 |
|
---|
| 588 | #ifdef __CXX_PRAGMA_TEMPLATES__
|
---|
| 589 | #pragma define_template ObjFileIO<DVList>
|
---|
| 590 | #endif
|
---|
| 591 |
|
---|
| 592 | #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES)
|
---|
| 593 | template class ObjFileIO<DVList>;
|
---|
| 594 | #endif
|
---|