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
97
98
99
100
101
102
103
|
// **********************************************************************
//
// Copyright (c) 2003-2013 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 <IceUtil/IceUtil.h>
#include <Ice/Ice.h>
#include <ContactDBI.h>
using namespace std;
using namespace Demo;
void
ContactDBI::addContact(const std::string& name, const IceUtil::Optional< NumberType>& type,
const IceUtil::Optional< std::string>& number, const IceUtil::Optional< Ice::Int>& dialGroup,
const Ice::Current&)
{
ContactPtr contact = new Contact();
contact->name = name;
if(type)
{
contact->type = type;
}
if(number)
{
contact->number = number;
}
if(dialGroup)
{
contact->dialGroup = dialGroup;
}
pair<map<string, ContactPtr>::iterator, bool> p = _contacts.insert(make_pair(name, contact));
if(!p.second)
{
p.first->second = contact;
}
}
void
ContactDBI::updateContact(const std::string& name, const IceUtil::Optional< NumberType>& type,
const IceUtil::Optional< std::string>& number, const IceUtil::Optional< Ice::Int>& dialGroup,
const Ice::Current&)
{
map<string, ContactPtr>::iterator p = _contacts.find(name);
if(p != _contacts.end())
{
if(type)
{
p->second->type = type;
}
if(number)
{
p->second->number = number;
}
if(dialGroup)
{
p->second->dialGroup = dialGroup;
}
}
}
ContactPtr
ContactDBI::query(const std::string& name, const Ice::Current&)
{
map<string, ContactPtr>::const_iterator p = _contacts.find(name);
if(p != _contacts.end())
{
return p->second;
}
return 0;
}
IceUtil::Optional<std::string>
ContactDBI::queryNumber(const std::string& name, const Ice::Current&)
{
map<string, ContactPtr>::const_iterator p = _contacts.find(name);
if(p != _contacts.end())
{
return p->second->number;
}
return IceUtil::None;
}
void
ContactDBI::queryDialgroup(const std::string& name, IceUtil::Optional< Ice::Int>& dialGroup, const Ice::Current&)
{
map<string, ContactPtr>::const_iterator p = _contacts.find(name);
if(p != _contacts.end())
{
dialGroup = p->second->dialGroup;
}
}
void
ContactDBI::shutdown(const Ice::Current& c)
{
cout << "Shutting down..." << endl;
c.adapter->getCommunicator()->shutdown();
}
|