summaryrefslogtreecommitdiff
path: root/TAO/local/bin/Event_Service/GPlot_File.h
blob: dc6040d0ed7c30965ee0424fd5d70252d8f6d2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// $Id$
//
// ============================================================================
//
// = FILENAME
//    GPlot_File.h
//
// = AUTHOR
//    Tim Harrison
// 
// ============================================================================

#if !defined (ACE_GPlot_File_H)
#define ACE_GPlot_File_H

#include "ace/Map_Manager.h"
#include "ace/Synch.h"

class ACE_GPlot_File
// = TITLE
//    Reads and writes files in GPlot format.
//
// = DESCRIPTION
//    Gplot formats are as follows:
//      entry   value
//      entry   value
//      entry   value
//	  ...
//    They represent x,y pairs to be graphed by GPlot.  entry's are
//    type long.  value's are type long or float.
{
public:
  ACE_GPlot_File (void);
  // Construction.

  ~ACE_GPlot_File (void);
  // Destruction.  Calls this->close.

  int open (const char *filename);
  // If the file does not exist, create it. If the file exists open
  // the file and read all the entries into map_.  Returns 0 on
  // success, -1 on failure.

  void close (void);
  // Close the file and sync all the contents.

  int get (long entry, long &value);
  // Get the entry at this value.  Returns 0 if a value was found.
  // Returns -1 if no value has been set for <entry>.

  int get (long entry, float &value);
  // Get the entry at this value.  Returns 0 if a value was found.
  // Returns -1 if no value has been set for <entry>.

  void set (long entry, long value);
  // Set the entry at this value.

  void set (long entry, float value);
  // Set the entry at this value.

  void set_greatest (long entry, long value);
  // Compare <value> with the value at <entry>.  Store the largest.

  void set_greatest (long entry, float value);
  // Compare <value> with the value at <entry>.  Store the largest.

  void set_least (long entry, long value);
  // Compare <value> with the value at <entry>.  Store the smallest.

  void set_least (long entry, float value);
  // Compare <value> with the value at <entry>.  Store the smallest.

  void dump (void);
  // Dump state of the object.

private:
  // = map_ stores all values.  It is sync'ed to file when this->close
  // is called.
  typedef ACE_Map_Entry <long, char *> GPLOT_ENTRY;
  typedef ACE_Map_Iterator <long, char *, ACE_Null_Mutex> GPLOT_ITERATOR;
  typedef ACE_Map_Manager<long, char *, ACE_Null_Mutex> GPLOT_MAP;
  GPLOT_MAP map_;

  char filename_[BUFSIZ];
  FILE *write_file_;

  int closed_;
  // Only close once.
};

#if defined (__ACE_INLINE__)
#include "GPlot_File.i"
#endif /* __ACE_INLINE__ */


#endif /* ACE_GPlot_File_H */