~vanvugt/ubuntu/oneiric/mediatomb/fix-770964-784431

« back to all changes in this revision

Viewing changes to src/upnp_cds.cc

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2008-02-02 01:42:48 UTC
  • Revision ID: james.westby@ubuntu.com-20080202014248-cjouolddb8gi2zkz
Tags: upstream-0.10.0.dfsg1
ImportĀ upstreamĀ versionĀ 0.10.0.dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*MT*
 
2
    
 
3
    MediaTomb - http://www.mediatomb.cc/
 
4
    
 
5
    upnp_cds.cc - this file is part of MediaTomb.
 
6
    
 
7
    Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
 
8
                       Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
 
9
    
 
10
    Copyright (C) 2006-2007 Gena Batyan <bgeradz@mediatomb.cc>,
 
11
                            Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
 
12
                            Leonhard Wimmer <leo@mediatomb.cc>
 
13
    
 
14
    MediaTomb is free software; you can redistribute it and/or modify
 
15
    it under the terms of the GNU General Public License version 2
 
16
    as published by the Free Software Foundation.
 
17
    
 
18
    MediaTomb is distributed in the hope that it will be useful,
 
19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
    GNU General Public License for more details.
 
22
    
 
23
    You should have received a copy of the GNU General Public License
 
24
    version 2 along with MediaTomb; if not, write to the Free Software
 
25
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
26
    
 
27
    $Id: upnp_cds.cc 1354 2007-06-07 23:02:34Z jin_eld $
 
28
*/
 
29
 
 
30
/// \file upnp_cds.cc
 
31
 
 
32
#ifdef HAVE_CONFIG_H
 
33
    #include "autoconfig.h"
 
34
#endif
 
35
 
 
36
#include "upnp_cds.h"
 
37
#include "config_manager.h"
 
38
 
 
39
using namespace zmm;
 
40
 
 
41
SINGLETON_MUTEX(ContentDirectoryService, false);
 
42
 
 
43
String ContentDirectoryService::serviceType = nil;
 
44
String ContentDirectoryService::serviceID = nil;
 
45
 
 
46
ContentDirectoryService::ContentDirectoryService() : Singleton<ContentDirectoryService>()
 
47
{
 
48
    if (serviceType == nil || serviceID == nil)
 
49
        throw _Exception(_("serviceType or serviceID not set!"));
 
50
    systemUpdateID = 0;
 
51
 
 
52
    stringLimit = ConfigManager::getInstance()->getIntOption(CFG_SERVER_UPNP_TITLE_AND_DESC_STRING_LIMIT);
 
53
}
 
54
 
 
55
ContentDirectoryService::~ContentDirectoryService()
 
56
{
 
57
    serviceType = nil;
 
58
    serviceID = nil;
 
59
}
 
60
 
 
61
void ContentDirectoryService::setStaticArgs(String _serviceType, String _serviceID)
 
62
{
 
63
    serviceType = _serviceType;
 
64
    serviceID = _serviceID;
 
65
}