[754] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | //
|
---|
[3011] | 3 | // $Id: datacards.h,v 1.5 2006-07-07 11:16:02 ansari Exp $
|
---|
[754] | 4 | //
|
---|
| 5 | // Datacards, acquisition EROS II
|
---|
| 6 | //
|
---|
| 7 | //
|
---|
| 8 | // Eric Aubourg, Decembre 95
|
---|
| 9 | // Reza Ansari, Aout 96
|
---|
| 10 | //
|
---|
| 11 | // DAPNIA/SPP (Saclay) / CEA LAL - IN2P3/CNRS (Orsay)
|
---|
| 12 |
|
---|
| 13 | #ifndef DATACARDS_SEEN
|
---|
| 14 | #define DATACARDS_SEEN
|
---|
| 15 |
|
---|
[895] | 16 | #include "machdefs.h"
|
---|
[754] | 17 | #include <string.h>
|
---|
| 18 | #include <string>
|
---|
| 19 | #include <functional>
|
---|
| 20 | #include <list>
|
---|
| 21 | #include <vector>
|
---|
| 22 |
|
---|
| 23 |
|
---|
[895] | 24 | namespace SOPHYA {
|
---|
| 25 |
|
---|
[754] | 26 | typedef int (*ProcCard)(string const& key, string const& toks);
|
---|
| 27 |
|
---|
[895] | 28 | //! Class for decoding parameters from an ascii file.
|
---|
| 29 |
|
---|
| 30 | class DataCards {
|
---|
[754] | 31 | public:
|
---|
[895] | 32 |
|
---|
[754] | 33 | DataCards();
|
---|
| 34 | DataCards(string const& fn);
|
---|
| 35 |
|
---|
[895] | 36 | // nom dans variable d'environnement SOPHYA_DATACARDS
|
---|
| 37 | // par defaut, sophya.datacards
|
---|
[754] | 38 | // Si pas chemin complet, on tente dans repertoire
|
---|
[895] | 39 | // en cours, puis dans SOPHYA_WORK
|
---|
[754] | 40 |
|
---|
| 41 | virtual ~DataCards() {}
|
---|
| 42 |
|
---|
| 43 | void AddProcF(ProcCard f, string const& mtch="*");
|
---|
| 44 |
|
---|
| 45 | void Clear();
|
---|
| 46 | void ReadFile(string const& fn);
|
---|
| 47 | void AppendCard(string const& line);
|
---|
| 48 |
|
---|
[1258] | 49 | int NbCards() const;
|
---|
| 50 | bool HasKey(string const& key) const;
|
---|
| 51 | int NbParam(string const& key) const;
|
---|
| 52 | string GetKey(int num) const;
|
---|
| 53 | string GetParams(string const& key) const;
|
---|
| 54 | string SParam(string const& key, int numero = 0, string def="") const;
|
---|
| 55 | long IParam(string const& key, int numero = 0, long def = 0) const;
|
---|
| 56 | double DParam(string const& key, int numero = 0, double def = 0) const;
|
---|
[754] | 57 |
|
---|
[895] | 58 | void Print(ostream& s) const;
|
---|
[754] | 59 |
|
---|
[895] | 60 | protected:
|
---|
[3011] | 61 | /*! \cond
|
---|
| 62 | Card structure - for internal use by DataCard
|
---|
| 63 | */
|
---|
[754] | 64 | struct Card {
|
---|
| 65 | string kw;
|
---|
| 66 | vector<string> tokens;
|
---|
[895] | 67 | bool operator == (Card const & b) const { return(kw == b.kw); }
|
---|
| 68 | bool operator < (Card const & b) const { return(kw < b.kw); }
|
---|
[754] | 69 | };
|
---|
| 70 | struct CrdPF {
|
---|
| 71 | ProcCard pf;
|
---|
| 72 | string patt;
|
---|
[895] | 73 | bool operator == (CrdPF const & b) const { return(pf == b.pf); }
|
---|
| 74 | bool operator < (CrdPF const & b) const { return(pf == b.pf); }
|
---|
[754] | 75 | };
|
---|
[3011] | 76 | /*! \endcond */
|
---|
[754] | 77 | void DoReadFile(string const& fn);
|
---|
| 78 |
|
---|
| 79 | int ApplyPF(CrdPF & cpf, string const& key, string const& toks);
|
---|
| 80 | int ApplyPFL(string const& key, string const& toks);
|
---|
| 81 |
|
---|
| 82 | void RemoveCard(string const& key);
|
---|
| 83 |
|
---|
[1258] | 84 | Card* FindKey(string const& key) ;
|
---|
[895] | 85 |
|
---|
| 86 | typedef list<Card> CardList;
|
---|
| 87 | typedef list<CrdPF> CrdPFList;
|
---|
[1258] | 88 |
|
---|
| 89 | CardList::const_iterator FindKeyC(string const& key) const;
|
---|
| 90 |
|
---|
[895] | 91 | CardList cards;
|
---|
| 92 | CrdPFList cpfs;
|
---|
| 93 |
|
---|
[754] | 94 | struct KeyEq : binary_function<Card, string, bool> {
|
---|
| 95 | bool operator()(const Card& x, const string& y) const { return x.kw == y; }
|
---|
| 96 | };
|
---|
| 97 | };
|
---|
[895] | 98 |
|
---|
| 99 | //! operator << overloading - calls Print()
|
---|
[1197] | 100 | inline ostream& operator << (ostream& s, DataCards const & c)
|
---|
[895] | 101 | { c.Print(s); return s; }
|
---|
| 102 |
|
---|
| 103 | } // namespace SOPHYA
|
---|
| 104 |
|
---|
[754] | 105 | #endif
|
---|