summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/NodeManager/CIAO_Monitor.cpp
blob: 7c5485adf82446a9318fb9799f4a0100265c194e (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$
//==========================================================================
/// The RSS Monitor class defination
/**
 *  @file CIAO_Monitor.cpp
 *
 *  @brief The Monitor class defination
 *
 * @author Nilabja Roy <nilabjar@dre.vanderbilt.edu>
 */
//==========================================================================

#include "CIAO_Monitor.h"
#include "CIAO_common.h"
#include "ace/OS_NS_stdio.h"


extern "C" ACE_Proper_Export_Flag CIAO::MonitorBase * CIAO::createMonitor ()
{
  return new CIAO::CIAO_Monitor ();
}

CIAO::CIAO_Monitor::CIAO_Monitor ()
{
}

/// The Desctructor
CIAO::CIAO_Monitor::~CIAO_Monitor ()
{
}

int CIAO::CIAO_Monitor::initialize_params (
                                     ::Deployment::Domain& domain,
                                     ::Deployment::TargetManager_ptr target_manager,
                                     int interval
                                     )
{
  current_domain_.reset (new ::Deployment::Domain (domain));
  target_ptr_= target_manager;
  this->interval_=interval;

  return 0;
}

int CIAO::CIAO_Monitor::start (CORBA::ORB_ptr)
{
  return 0;
}

int CIAO::CIAO_Monitor::stop ()
{
  return 0;
}

::Deployment::Domain* CIAO::CIAO_Monitor::get_current_data ()
{
  if (CIAO::debug_level () > 9)
    {
      ACE_DEBUG ((LM_DEBUG , "Inside the get_current_data"));
    }

  float current_load;

  // get the load average value from the /proc/loadavg

  FILE *load_file = ACE_OS::fopen ("/proc/loadavg", "r");
  
  if (load_file == 0)
    {
      // load file cannot be opened ..
      current_load = 0;
    }
  else
    {
      fscanf (load_file, "%f", &current_load);
      if (CIAO::debug_level () > 9)
      {
        ACE_DEBUG ((LM_DEBUG , "Current load is %d\n",current_load));
      }
    }

  ACE_OS::fclose (load_file);

    CORBA::Any any;
    any <<= current_load;

    current_domain_->node[0].resource[0].property[0].kind = ::Deployment::Quantity;
    current_domain_->node[0].resource[0].property[0].value = any;

    if (CIAO::debug_level () > 9)
    {
      ACE_DEBUG ((LM_DEBUG , "Exiting from the get_current_data function\n"));
    }

    return current_domain_.get ();
}