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
|
// **********************************************************************
//
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <Ice/Communicator.h>
#include <Ice/Properties.h>
#include <IceGrid/TraceLevels.h>
using namespace std;
using namespace IceGrid;
TraceLevels::TraceLevels(const Ice::CommunicatorPtr& communicator, const string& prefix) :
application(0),
applicationCat("Application"),
node(0),
nodeCat("Node"),
replica(0),
replicaCat("Replica"),
server(0),
serverCat("Server"),
adapter(0),
adapterCat("Adapter"),
object(0),
objectCat("Object"),
activator(0),
activatorCat("Activator"),
patch(0),
patchCat("Patch"),
locator(0),
locatorCat("Locator"),
session(0),
sessionCat("Session"),
logger(communicator->getLogger())
{
Ice::PropertiesPtr properties = communicator->getProperties();
string keyBase = prefix + ".Trace.";
const_cast<int&>(application) = properties->getPropertyAsInt(keyBase + applicationCat);
const_cast<int&>(node) = properties->getPropertyAsInt(keyBase + nodeCat);
const_cast<int&>(replica) = properties->getPropertyAsInt(keyBase + replicaCat);
const_cast<int&>(server) = properties->getPropertyAsInt(keyBase + serverCat);
const_cast<int&>(adapter) = properties->getPropertyAsInt(keyBase + adapterCat);
const_cast<int&>(object) = properties->getPropertyAsInt(keyBase + objectCat);
const_cast<int&>(activator) = properties->getPropertyAsInt(keyBase + activatorCat);
const_cast<int&>(patch) = properties->getPropertyAsInt(keyBase + patchCat);
const_cast<int&>(locator) = properties->getPropertyAsInt(keyBase + locatorCat);
const_cast<int&>(session) = properties->getPropertyAsInt(keyBase + sessionCat);
}
TraceLevels::~TraceLevels()
{
}
|