summaryrefslogtreecommitdiff
path: root/apps/JAWS/remora/app/test.cc
blob: 987c7bd07af98e3cddd07fcfc200668d16c875c6 (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
// $Id

#include <unistd.h>
#include <stdlib.h>
#include <iostream.h>
#include "ace/Signal.h"
#include "Remora_Export.h"
#include "Remora_Import.h"

class Shutdown : public ACE_Event_Handler
{
public:
  Shutdown(int& cond) : cond_(cond) {}
  
  virtual int handle_signal (int, siginfo*, ucontext*)
    {
      this->cond_ = 0;
      return 0;
    }

private:

  int& cond_;
};

int
main(int argc, char** argv)
{
  int lcv = 1;
  ACE_Sig_Handler shutdown;

  shutdown.register_handler (SIGINT, new Shutdown (lcv));
  
  try
    {
      Remora_Export cpu("CPU Usage", 0, 100);
      Remora_Export thread("Thread Count", 0, 24);
      Remora_Export through("Throughput", 0, 150);
      Remora_Export energy("Energy Levels", 0, 2084);
      Remora_Export warp("Warp Drive Output", 0, 1023);

      Remora_Import in_threads("Threads", 1, 0, 24);
      Remora_Import in_tachyon("Tachyon Emmissions", 25, 0, 100);
      Remora_Import in_shields("Shield Integrity", 100, 0, 100);
      Remora_Import in_phasers("Phaser Power", 421, 0, 1024);
      
      while (lcv)
	{
	  cpu = rand() % 100;
	  thread = rand() % 24;
	  energy = rand() % 2084;
	  through = rand() % 150;
	  warp = rand() % 1023;

	  cout << "Statistics: " << endl;
	  cout << "CPU: " << CORBA::Long(cpu) << endl;
	  cout << "Thread: " << CORBA::Long(thread) << endl;
	  cout << "Throughput: " << CORBA::Long(through) << endl;
	  cout << "Energy: " << CORBA::Long(energy) << endl;
	  cout << "Warp: " << CORBA::Long(cpu) << endl;

	  cout << "Controls: " << endl;
	  cout << "Threads: " << CORBA::Long(in_threads) << endl;
	  cout << "Tachyon: " << CORBA::Long(in_tachyon) << endl;
	  cout << "Shields: " << CORBA::Long(in_shields) << endl;
	  cout << "Phasers: " << CORBA::Long(in_phasers) << endl;

	  sleep(1);
	}
    }
  catch(CORBA::SystemException& e)
    {

      cerr << e << endl;
    }
}