1 |
#ifndef RESIP_HttpProvider |
2 |
#define RESIP_HttpProvider |
3 |
|
4 |
#include "resiprocate/os/Mutex.hxx" |
5 |
#include <memory> |
6 |
|
7 |
namespace resip |
8 |
{ |
9 |
class TransactionUser; |
10 |
class Data; |
11 |
class GenericUri; |
12 |
|
13 |
//To provide this functionality, plug in an instance of |
14 |
//HttpProviderFactory(before any instances of DialogUsageManager/SipStack are |
15 |
//created. Null will be returned by default. |
16 |
class HttpProviderFactory; |
17 |
|
18 |
class HttpProvider |
19 |
{ |
20 |
public: |
21 |
//HttpProvider assumes memory |
22 |
static void setFactory(std::auto_ptr<HttpProviderFactory> fact); |
23 |
//ptr so users can check for existence |
24 |
static HttpProvider* instance(); |
25 |
|
26 |
//.dcm. tu param will become a postable |
27 |
virtual void get(const GenericUri& target, const Data& tid, TransactionUser& tu)=0; |
28 |
virtual ~HttpProvider(){} //impl. singleton destructor pattern later |
29 |
private: |
30 |
static HttpProvider* mInstance; |
31 |
static HttpProviderFactory* mFactory; |
32 |
static Mutex mMutex; |
33 |
}; |
34 |
|
35 |
class HttpProviderFactory |
36 |
{ |
37 |
public: |
38 |
virtual HttpProvider* createHttpProvider()=0; |
39 |
virtual ~HttpProviderFactory(){} |
40 |
}; |
41 |
} |
42 |
|
43 |
#endif |
44 |
|
45 |
/* ==================================================================== |
46 |
* The Vovida Software License, Version 1.0 |
47 |
* |
48 |
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
49 |
* |
50 |
* Redistribution and use in source and binary forms, with or without |
51 |
* modification, are permitted provided that the following conditions |
52 |
* are met: |
53 |
* |
54 |
* 1. Redistributions of source code must retain the above copyright |
55 |
* notice, this list of conditions and the following disclaimer. |
56 |
* |
57 |
* 2. Redistributions in binary form must reproduce the above copyright |
58 |
* notice, this list of conditions and the following disclaimer in |
59 |
* the documentation and/or other materials provided with the |
60 |
* distribution. |
61 |
* |
62 |
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
63 |
* and "Vovida Open Communication Application Library (VOCAL)" must |
64 |
* not be used to endorse or promote products derived from this |
65 |
* software without prior written permission. For written |
66 |
* permission, please contact vocal@vovida.org. |
67 |
* |
68 |
* 4. Products derived from this software may not be called "VOCAL", nor |
69 |
* may "VOCAL" appear in their name, without prior written |
70 |
* permission of Vovida Networks, Inc. |
71 |
* |
72 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
73 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
74 |
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
75 |
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
76 |
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
77 |
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
78 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
79 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
80 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
81 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
82 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
83 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
84 |
* DAMAGE. |
85 |
* |
86 |
* ==================================================================== |
87 |
* |
88 |
* This software consists of voluntary contributions made by Vovida |
89 |
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
90 |
* Inc. For more information on Vovida Networks, Inc., please see |
91 |
* <http://www.vovida.org/>. |
92 |
* |
93 |
*/ |