/src/resiprocate/resip/stack/ContentsFactoryBase.cxx
Line | Count | Source (jump to first uncovered line) |
1 | | #include "rutil/ResipAssert.h" |
2 | | |
3 | | #include "resip/stack/ContentsFactoryBase.hxx" |
4 | | #include "rutil/WinLeakCheck.hxx" |
5 | | |
6 | | using namespace resip; |
7 | | using namespace std; |
8 | | |
9 | | HashMap<Mime, ContentsFactoryBase*>* ContentsFactoryBase::FactoryMap = nullptr; |
10 | | |
11 | | ContentsFactoryBase::ContentsFactoryBase(const Mime& contentType) |
12 | 38 | : mContentType(contentType) |
13 | 38 | { |
14 | | // .amr. Due to multiple static initializers, this can be called more than once for a mimetype |
15 | | // so gracefully handle it |
16 | 38 | auto& factoryMap = ContentsFactoryBase::getFactoryMap(); |
17 | 38 | if (factoryMap.find(contentType) == factoryMap.end()) |
18 | 36 | { |
19 | 36 | factoryMap[contentType] = this; |
20 | 36 | } |
21 | 38 | } |
22 | | |
23 | | ContentsFactoryBase::~ContentsFactoryBase() |
24 | 0 | { |
25 | 0 | if (!ContentsFactoryBase::FactoryMap) |
26 | 0 | return; |
27 | | |
28 | 0 | HashMap<Mime, ContentsFactoryBase*>::iterator i; |
29 | 0 | i = ContentsFactoryBase::getFactoryMap().find(mContentType); |
30 | | // .amr. Need to check if iterator is valid since on some STL instances erase(i) will crash if i is invalid. |
31 | 0 | if (i != ContentsFactoryBase::getFactoryMap().end()) |
32 | 0 | ContentsFactoryBase::getFactoryMap().erase(i); |
33 | 0 | if (ContentsFactoryBase::getFactoryMap().empty()) |
34 | 0 | { |
35 | 0 | delete &ContentsFactoryBase::getFactoryMap(); |
36 | 0 | ContentsFactoryBase::FactoryMap = nullptr; |
37 | 0 | } |
38 | 0 | } |
39 | | |
40 | | HashMap<Mime, ContentsFactoryBase*>& |
41 | | ContentsFactoryBase::getFactoryMap() |
42 | 38 | { |
43 | 38 | if (!ContentsFactoryBase::FactoryMap) |
44 | 2 | { |
45 | 2 | ContentsFactoryBase::FactoryMap = new HashMap<Mime, ContentsFactoryBase*>(); |
46 | 2 | } |
47 | 38 | return *ContentsFactoryBase::FactoryMap; |
48 | 38 | } |
49 | | |
50 | | /* ==================================================================== |
51 | | * The Vovida Software License, Version 1.0 |
52 | | * |
53 | | * Copyright (c) 2000-2005 |
54 | | * |
55 | | * Redistribution and use in source and binary forms, with or without |
56 | | * modification, are permitted provided that the following conditions |
57 | | * are met: |
58 | | * |
59 | | * 1. Redistributions of source code must retain the above copyright |
60 | | * notice, this list of conditions and the following disclaimer. |
61 | | * |
62 | | * 2. Redistributions in binary form must reproduce the above copyright |
63 | | * notice, this list of conditions and the following disclaimer in |
64 | | * the documentation and/or other materials provided with the |
65 | | * distribution. |
66 | | * |
67 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
68 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
69 | | * not be used to endorse or promote products derived from this |
70 | | * software without prior written permission. For written |
71 | | * permission, please contact vocal@vovida.org. |
72 | | * |
73 | | * 4. Products derived from this software may not be called "VOCAL", nor |
74 | | * may "VOCAL" appear in their name, without prior written |
75 | | * permission of Vovida Networks, Inc. |
76 | | * |
77 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
78 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
79 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
80 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
81 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
82 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
83 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
84 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
85 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
86 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
87 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
88 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
89 | | * DAMAGE. |
90 | | * |
91 | | * ==================================================================== |
92 | | * |
93 | | * This software consists of voluntary contributions made by Vovida |
94 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
95 | | * Inc. For more information on Vovida Networks, Inc., please see |
96 | | * <http://www.vovida.org/>. |
97 | | * |
98 | | */ |