comparison deps/Platinum/Source/Devices/MediaServer/PltMediaServer.h @ 0:3425707ddbf6

Initial import (hopefully this mercurial stuff works...)
author fraserofthenight
date Mon, 06 Jul 2009 08:06:28 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3425707ddbf6
1 /*****************************************************************
2 |
3 | Platinum - AV Media Server Device
4 |
5 | Copyright (c) 2004-2008, Plutinosoft, LLC.
6 | All rights reserved.
7 | http://www.plutinosoft.com
8 |
9 | This program is free software; you can redistribute it and/or
10 | modify it under the terms of the GNU General Public License
11 | as published by the Free Software Foundation; either version 2
12 | of the License, or (at your option) any later version.
13 |
14 | OEMs, ISVs, VARs and other distributors that combine and
15 | distribute commercially licensed software with Platinum software
16 | and do not wish to distribute the source code for the commercially
17 | licensed software under version 2, or (at your option) any later
18 | version, of the GNU General Public License (the "GPL") must enter
19 | into a commercial license agreement with Plutinosoft, LLC.
20 |
21 | This program is distributed in the hope that it will be useful,
22 | but WITHOUT ANY WARRANTY; without even the implied warranty of
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 | GNU General Public License for more details.
25 |
26 | You should have received a copy of the GNU General Public License
27 | along with this program; see the file LICENSE.txt. If not, write to
28 | the Free Software Foundation, Inc.,
29 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
30 | http://www.gnu.org/licenses/gpl-2.0.html
31 |
32 ****************************************************************/
33
34 #ifndef _PLT_MEDIA_SERVER_H_
35 #define _PLT_MEDIA_SERVER_H_
36
37 /*----------------------------------------------------------------------
38 | includes
39 +---------------------------------------------------------------------*/
40 #include "Neptune.h"
41 #include "PltDeviceHost.h"
42 #include "PltMediaItem.h"
43
44 /*----------------------------------------------------------------------
45 | constants
46 +---------------------------------------------------------------------*/
47 #define MAX_PATH_LENGTH 1024
48
49 /* BrowseFlags */
50 enum BrowseFlags {
51 BROWSEMETADATA,
52 BROWSEDIRECTCHILDREN
53 };
54
55 /*----------------------------------------------------------------------
56 | forward declarations
57 +---------------------------------------------------------------------*/
58 extern const char* BrowseFlagsStr[];
59 class PLT_HttpFileServerHandler;
60
61 /*----------------------------------------------------------------------
62 | PLT_MediaServer class
63 +---------------------------------------------------------------------*/
64 class PLT_MediaServer : public PLT_DeviceHost
65 {
66 public:
67 PLT_MediaServer(const char* friendly_name,
68 bool show_ip = false,
69 const char* uuid = NULL,
70 NPT_UInt16 port = 0,
71 bool port_rebind = false);
72 virtual ~PLT_MediaServer();
73
74 // PLT_DeviceHost methods
75 virtual NPT_Result SetupServices(PLT_DeviceData& data);
76 virtual NPT_Result OnAction(PLT_ActionReference& action,
77 const PLT_HttpRequestContext& context);
78
79 // class methods
80 static NPT_Result GetBrowseFlag(const char* str, BrowseFlags& flag);
81
82 protected:
83 // ConnectionManager
84 virtual NPT_Result OnGetCurrentConnectionIDs(PLT_ActionReference& action,
85 const PLT_HttpRequestContext& context);
86 virtual NPT_Result OnGetProtocolInfo(PLT_ActionReference& action,
87 const PLT_HttpRequestContext& context);
88 virtual NPT_Result OnGetCurrentConnectionInfo(PLT_ActionReference& action,
89 const PLT_HttpRequestContext& context);
90
91 // ContentDirectory
92 virtual NPT_Result OnGetSortCapabilities(PLT_ActionReference& action,
93 const PLT_HttpRequestContext& context);
94 virtual NPT_Result OnGetSearchCapabilities(PLT_ActionReference& action,
95 const PLT_HttpRequestContext& context);
96 virtual NPT_Result OnGetSystemUpdateID(PLT_ActionReference& action,
97 const PLT_HttpRequestContext& context);
98 virtual NPT_Result OnBrowse(PLT_ActionReference& action,
99 const PLT_HttpRequestContext& context);
100 virtual NPT_Result OnSearch(PLT_ActionReference& action,
101 const PLT_HttpRequestContext& context);
102
103 // overridable methods
104 virtual NPT_Result OnBrowseMetadata(PLT_ActionReference& action,
105 const char* object_id,
106 const PLT_HttpRequestContext& context);
107 virtual NPT_Result OnBrowseDirectChildren(PLT_ActionReference& action,
108 const char* object_id,
109 const PLT_HttpRequestContext& context);
110 virtual NPT_Result OnSearch(PLT_ActionReference& action,
111 const NPT_String& object_id,
112 const NPT_String& searchCriteria,
113 const PLT_HttpRequestContext& context);
114 };
115
116 #endif /* _PLT_MEDIA_SERVER_H_ */