blob: 66ffa96bab03be51c83b26ea3859bf44fff80952 (
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
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#include <Ice/DefaultsAndOverrides.h>
#include <Ice/Properties.h>
#include <Ice/Network.h>
using namespace std;
using namespace Ice;
using namespace IceInternal;
void IceInternal::incRef(DefaultsAndOverrides* p) { p->__incRef(); }
void IceInternal::decRef(DefaultsAndOverrides* p) { p->__decRef(); }
IceInternal::DefaultsAndOverrides::DefaultsAndOverrides(const PropertiesPtr& properties) :
overrideTimeout(false),
overrideTimeoutValue(-1),
overrideComppress(false),
overrideComppressValue(false)
{
const_cast<string&>(defaultProtocol) = properties->getPropertyWithDefault("Ice.Default.Protocol", "tcp");
const_cast<string&>(defaultHost) = properties->getProperty("Ice.Default.Host");
if (defaultHost.empty())
{
const_cast<string&>(defaultHost) = getLocalHost(true);
}
const_cast<string&>(defaultRouter) = properties->getProperty("Ice.Default.Router");
string value;
value = properties->getProperty("Ice.Override.Timeout");
if (!value.empty())
{
const_cast<bool&>(overrideTimeout) = true;
const_cast<Int&>(overrideTimeoutValue) = atoi(value.c_str());
}
value = properties->getProperty("Ice.Override.Compress");
if (!value.empty())
{
const_cast<bool&>(overrideComppress) = true;
const_cast<bool&>(overrideComppressValue) = atoi(value.c_str());
}
}
|