|
reSIProcate/stack
9694
|
00001 #include <cassert> 00002 00003 #include "resip/stack/ContentsFactoryBase.hxx" 00004 #include "rutil/WinLeakCheck.hxx" 00005 00006 using namespace resip; 00007 using namespace std; 00008 00009 HashMap<Mime, ContentsFactoryBase*>* ContentsFactoryBase::FactoryMap = 0; 00010 00011 ContentsFactoryBase::ContentsFactoryBase(const Mime& contentType) 00012 : mContentType(contentType) 00013 { 00014 // .amr. Due to multiple static initializers, this can be called more than once for a mimetype 00015 // so gracefully handle it 00016 if(ContentsFactoryBase::getFactoryMap().count(contentType) == 0) 00017 ContentsFactoryBase::getFactoryMap()[contentType] = this; 00018 } 00019 00020 ContentsFactoryBase::~ContentsFactoryBase() 00021 { 00022 if (ContentsFactoryBase::FactoryMap == 0) 00023 return; 00024 00025 HashMap<Mime, ContentsFactoryBase*>::iterator i; 00026 i = ContentsFactoryBase::getFactoryMap().find(mContentType); 00027 // .amr. Need to check if iterator is valid since on some STL instances erase(i) will crash if i is invalid. 00028 if (i != ContentsFactoryBase::getFactoryMap().end()) 00029 ContentsFactoryBase::getFactoryMap().erase(i); 00030 if (ContentsFactoryBase::getFactoryMap().size() == 0) 00031 { 00032 delete &ContentsFactoryBase::getFactoryMap(); 00033 ContentsFactoryBase::FactoryMap = 0; 00034 } 00035 } 00036 00037 HashMap<Mime, ContentsFactoryBase*>& 00038 ContentsFactoryBase::getFactoryMap() 00039 { 00040 if (ContentsFactoryBase::FactoryMap == 0) 00041 { 00042 ContentsFactoryBase::FactoryMap = new HashMap<Mime, ContentsFactoryBase*>(); 00043 } 00044 return *ContentsFactoryBase::FactoryMap; 00045 } 00046 00047 /* ==================================================================== 00048 * The Vovida Software License, Version 1.0 00049 * 00050 * Copyright (c) 2000-2005 00051 * 00052 * Redistribution and use in source and binary forms, with or without 00053 * modification, are permitted provided that the following conditions 00054 * are met: 00055 * 00056 * 1. Redistributions of source code must retain the above copyright 00057 * notice, this list of conditions and the following disclaimer. 00058 * 00059 * 2. Redistributions in binary form must reproduce the above copyright 00060 * notice, this list of conditions and the following disclaimer in 00061 * the documentation and/or other materials provided with the 00062 * distribution. 00063 * 00064 * 3. The names "VOCAL", "Vovida Open Communication Application Library", 00065 * and "Vovida Open Communication Application Library (VOCAL)" must 00066 * not be used to endorse or promote products derived from this 00067 * software without prior written permission. For written 00068 * permission, please contact vocal@vovida.org. 00069 * 00070 * 4. Products derived from this software may not be called "VOCAL", nor 00071 * may "VOCAL" appear in their name, without prior written 00072 * permission of Vovida Networks, Inc. 00073 * 00074 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED 00075 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00076 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND 00077 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA 00078 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES 00079 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, 00080 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00081 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00082 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 00083 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00084 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 00085 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 00086 * DAMAGE. 00087 * 00088 * ==================================================================== 00089 * 00090 * This software consists of voluntary contributions made by Vovida 00091 * Networks, Inc. and many individuals on behalf of Vovida Networks, 00092 * Inc. For more information on Vovida Networks, Inc., please see 00093 * <http://www.vovida.org/>. 00094 * 00095 */
1.7.5.1