~ubuntu-branches/debian/experimental/kopete/experimental

« back to all changes in this revision

Viewing changes to protocols/jabber/libjingle/talk/p2p/base/sessiondescription.cc

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-02-24 11:32:57 UTC
  • mfrom: (1.1.41 vivid)
  • Revision ID: package-import@ubuntu.com-20150224113257-gnupg4v7lzz18ij0
Tags: 4:14.12.2-1
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * libjingle
 
3
 * Copyright 2010, Google Inc.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions are met:
 
7
 *
 
8
 *  1. Redistributions of source code must retain the above copyright notice,
 
9
 *     this list of conditions and the following disclaimer.
 
10
 *  2. Redistributions in binary form must reproduce the above copyright notice,
 
11
 *     this list of conditions and the following disclaimer in the documentation
 
12
 *     and/or other materials provided with the distribution.
 
13
 *  3. The name of the author may not be used to endorse or promote products
 
14
 *     derived from this software without specific prior written permission.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 
17
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
18
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 
19
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
20
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
21
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
22
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
23
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
24
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
25
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
26
 */
 
27
 
 
28
#include "talk/p2p/base/sessiondescription.h"
 
29
 
 
30
#include "talk/xmllite/xmlelement.h"
 
31
 
 
32
namespace cricket {
 
33
 
 
34
const ContentInfo* FindContentInfoByName(
 
35
    const ContentInfos& contents, const std::string& name) {
 
36
  for (ContentInfos::const_iterator content = contents.begin();
 
37
       content != contents.end(); content++) {
 
38
    if (content->name == name) {
 
39
      return &(*content);
 
40
    }
 
41
  }
 
42
  return NULL;
 
43
}
 
44
 
 
45
const ContentInfo* FindContentInfoByType(
 
46
    const ContentInfos& contents, const std::string& type) {
 
47
  for (ContentInfos::const_iterator content = contents.begin();
 
48
       content != contents.end(); content++) {
 
49
    if (content->type == type) {
 
50
      return &(*content);
 
51
    }
 
52
  }
 
53
  return NULL;
 
54
}
 
55
 
 
56
void ContentGroup::AddContentName(const std::string& content_name) {
 
57
  content_types_.insert(content_name);
 
58
}
 
59
 
 
60
bool ContentGroup::RemoveContentName(const std::string& content_name) {
 
61
  bool ret = false;
 
62
  std::set<std::string>::iterator iter;
 
63
  iter = content_types_.find(content_name);
 
64
  if (iter != content_types_.end()) {
 
65
    content_types_.erase(iter);
 
66
    ret = true;
 
67
  }
 
68
  return ret;
 
69
}
 
70
 
 
71
bool ContentGroup::HasContentName(const std::string& content_name) const {
 
72
  return (content_types_.find(content_name) != content_types_.end());
 
73
}
 
74
 
 
75
const std::string* ContentGroup::FirstContentName() const {
 
76
  return (content_types_.begin() != content_types_.end()) ?
 
77
      &(*content_types_.begin()) : NULL;
 
78
}
 
79
 
 
80
SessionDescription* SessionDescription::Copy() const {
 
81
  SessionDescription* copy = new SessionDescription(*this);
 
82
  // Copy all ContentDescriptions.
 
83
  for (ContentInfos::iterator content = copy->contents_.begin();
 
84
      content != copy->contents().end(); ++content) {
 
85
    content->description = content->description->Copy();
 
86
  }
 
87
  return copy;
 
88
}
 
89
const ContentInfo* SessionDescription::GetContentByName(
 
90
    const std::string& name) const {
 
91
  return FindContentInfoByName(contents_, name);
 
92
}
 
93
 
 
94
const ContentInfo* SessionDescription::FirstContentByType(
 
95
    const std::string& type) const {
 
96
  return FindContentInfoByType(contents_, type);
 
97
}
 
98
 
 
99
const ContentInfo* SessionDescription::FirstContent() const {
 
100
  return (contents_.empty()) ? NULL : &(*contents_.begin());
 
101
}
 
102
 
 
103
void SessionDescription::AddContent(const std::string& name,
 
104
                                    const std::string& type,
 
105
                                    const ContentDescription* description) {
 
106
  contents_.push_back(ContentInfo(name, type, description));
 
107
}
 
108
 
 
109
bool SessionDescription::RemoveContentByName(const std::string& name) {
 
110
  for (ContentInfos::iterator content = contents_.begin();
 
111
       content != contents_.end(); ++content) {
 
112
    if (content->name == name) {
 
113
      delete content->description;
 
114
      contents_.erase(content);
 
115
      return true;
 
116
    }
 
117
  }
 
118
 
 
119
  return false;
 
120
}
 
121
 
 
122
void SessionDescription::RemoveGroupByName(const std::string& name) {
 
123
  for (ContentGroups::iterator iter = content_groups_.begin();
 
124
       iter != content_groups_.end(); ++iter) {
 
125
    if (iter->semantics() == name) {
 
126
      content_groups_.erase(iter);
 
127
      break;
 
128
    }
 
129
  }
 
130
}
 
131
 
 
132
bool SessionDescription::HasGroup(const std::string& name) const {
 
133
  for (ContentGroups::const_iterator iter = content_groups_.begin();
 
134
       iter != content_groups_.end(); ++iter) {
 
135
    if (iter->semantics() == name) {
 
136
      return true;
 
137
    }
 
138
  }
 
139
  return false;
 
140
}
 
141
 
 
142
const ContentGroup* SessionDescription::GetGroupByName(
 
143
    const std::string& name) const {
 
144
  for (ContentGroups::const_iterator iter = content_groups_.begin();
 
145
       iter != content_groups_.end(); ++iter) {
 
146
    if (iter->semantics() == name) {
 
147
      return &(*iter);
 
148
    }
 
149
  }
 
150
  return NULL;
 
151
}
 
152
 
 
153
}  // namespace cricket