author | Sampo Huttunen <sampo.huttunen@nokia.com> |
Thu, 18 Nov 2010 15:46:57 +0200 | |
branch | IOP_Improvements |
changeset 44 | 97caed2372ca |
parent 38 | 5360b7ddc251 |
permissions | -rw-r--r-- |
38
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1 |
/* |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
2 |
* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
3 |
* All rights reserved. |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
4 |
* This component and the accompanying materials are made available |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
5 |
* under the terms of "Eclipse Public License v1.0" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
6 |
* which accompanies this distribution, and is available |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
8 |
* |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
9 |
* Initial Contributors: |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
10 |
* Nokia Corporation - initial contribution. |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
11 |
* |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
12 |
* Contributors: |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
13 |
* |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
14 |
* Description: device with extended information - used in AVC server |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
15 |
* |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
16 |
*/ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
17 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
18 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
19 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
20 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
21 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
22 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
23 |
// INCLUDES |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
24 |
#include <in_sock.h> |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
25 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
26 |
// dlnasrv / mediaserver api |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
27 |
#include <upnpdlnaprotocolinfo.h> |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
28 |
#include <upnpitem.h> |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
29 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
30 |
// dlnasrv / avcontroller helper api |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
31 |
#include "upnpitemutility.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
32 |
#include "upnpconstantdefs.h" // for upnp-specific stuff |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
33 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
34 |
// dlnasrv / internal api's |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
35 |
#include "upnpcommonutils.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
36 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
37 |
// dlnasrv / avcontroller internal |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
38 |
#include "upnpavdeviceextended.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
39 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
40 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
41 |
_LIT8( KAudioSupport, "audio/" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
42 |
_LIT8( KImageSupport, "image/" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
43 |
_LIT8( KVideoSupport, "video/" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
44 |
_LIT8( KDlnaPn, "DLNA.ORG_PN" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
45 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
46 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
47 |
const TInt KProtocolInfoDelimeter = 44; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
48 |
const TInt KUnicodeC0RangeStart = 0;// the begin character of C0 range |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
49 |
const TInt KUnicodeC0RangeEnd = 32;// the end character of C0 range |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
50 |
const TInt KUnicodeC1RangeStart = 127;// the begin character of C1 range |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
51 |
const TInt KUnicodeC1RangeEnd = 159;// the end character of C1 range |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
52 |
const TInt KSlash = 92; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
53 |
_LIT8( KProtocolInfo, "protocolInfo" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
54 |
_LIT8( KAsterisk, "*" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
55 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
56 |
const TInt KUrlIpBufLen = 16; // For IP address e.g. xxx.xxx.xxx.xxx |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
57 |
const TInt KUrlPortLen = 11; // For HTTP port e.g. yyyyy |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
58 |
_LIT8( KUrlColon, ":" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
59 |
_LIT8( KUrlSlash, "/" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
60 |
_LIT8( KUrlHttp, "http://" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
61 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
62 |
_LIT( KComponentLogfile, "upnpavcontrollerserver.txt"); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
63 |
#include "upnplog.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
64 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
65 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
66 |
// EnsureFinalSlash |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
67 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
68 |
static void EnsureFinalSlash( TDes8& aUrl ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
69 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
70 |
TInt len( aUrl.Length() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
71 |
if ( len > 0 && aUrl[ len - 1 ] != KUrlSlash()[ 0 ] ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
72 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
73 |
aUrl.Append( KUrlSlash ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
74 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
75 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
76 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
77 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
78 |
// RemoveInitial |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
79 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
80 |
static TPtrC8 RemoveInitial( const TDesC8& aUrl, const TDesC8& aInitial ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
81 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
82 |
return aUrl.Find( aInitial ) == 0 ? aUrl.Mid( aInitial.Length() ) : aUrl; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
83 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
84 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
85 |
// ============================ MEMBER FUNCTIONS ============================ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
86 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
87 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
88 |
// CUpnpAVDeviceExtended::NewL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
89 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
90 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
91 |
CUpnpAVDeviceExtended* CUpnpAVDeviceExtended::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
92 |
const CUpnpAVDevice& aDevice ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
93 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
94 |
CUpnpAVDeviceExtended* dev = new(ELeave) CUpnpAVDeviceExtended(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
95 |
CleanupStack::PushL( dev ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
96 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
97 |
dev->iDeviceType = aDevice.DeviceType(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
98 |
dev->SetFriendlyNameL( aDevice.FriendlyName() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
99 |
dev->SetUuidL( aDevice.Uuid() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
100 |
dev->iCopyCapability = aDevice.CopyCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
101 |
dev->iSearchCapability = aDevice.SearchCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
102 |
dev->iPauseCapability = aDevice.PauseCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
103 |
dev->iVolumeCapability = aDevice.VolumeCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
104 |
dev->iMuteCapability = aDevice.MuteCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
105 |
dev->iAudioMediaCapability = aDevice.AudioCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
106 |
dev->iImageMediaCapability = aDevice.ImageCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
107 |
dev->iVideoMediaCapability = aDevice.VideoCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
108 |
dev->iNextAVTransportUri = aDevice.NextAVTransportUri(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
109 |
dev->iMaxVolume = aDevice.MaxVolume(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
110 |
dev->iDlnaCompatible = aDevice.DlnaCompatible(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
111 |
dev->iSeekCapability = aDevice.SeekCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
112 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
113 |
dev->ConstructL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
114 |
CleanupStack::Pop(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
115 |
return dev; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
116 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
117 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
118 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
119 |
// CUpnpAVDeviceExtended::NewL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
120 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
121 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
122 |
CUpnpAVDeviceExtended* CUpnpAVDeviceExtended::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
123 |
const CUpnpAVDeviceExtended& aDevice ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
124 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
125 |
CUpnpAVDeviceExtended* dev = new(ELeave) CUpnpAVDeviceExtended(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
126 |
CleanupStack::PushL( dev ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
127 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
128 |
dev->iDeviceType = aDevice.DeviceType(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
129 |
dev->SetFriendlyNameL( aDevice.FriendlyName() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
130 |
dev->SetUuidL( aDevice.Uuid() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
131 |
dev->iCopyCapability = aDevice.CopyCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
132 |
dev->iSearchCapability = aDevice.SearchCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
133 |
dev->iPauseCapability = aDevice.PauseCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
134 |
dev->iVolumeCapability = aDevice.VolumeCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
135 |
dev->iMuteCapability = aDevice.MuteCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
136 |
dev->iAudioMediaCapability = aDevice.AudioCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
137 |
dev->iImageMediaCapability = aDevice.ImageCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
138 |
dev->iVideoMediaCapability = aDevice.VideoCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
139 |
dev->iNextAVTransportUri = aDevice.NextAVTransportUri(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
140 |
dev->iMaxVolume = aDevice.MaxVolume(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
141 |
dev->iDlnaCompatible = aDevice.DlnaCompatible(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
142 |
dev->iSeekCapability = aDevice.SeekCapability(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
143 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
144 |
dev->SetSinkProtocolInfoL( aDevice.SinkProtocolInfo() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
145 |
dev->SetSourceProtocolInfoL( aDevice.SourceProtocolInfo() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
146 |
dev->iSubscriptionCount = aDevice.SubscriptionCount(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
147 |
dev->iLocal = aDevice.Local(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
148 |
dev->iAudioUpload = aDevice.AudioUpload(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
149 |
dev->iImageUpload = aDevice.ImageUpload(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
150 |
dev->iVideoUpload = aDevice.VideoUpload(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
151 |
dev->iCreateChildContainer = aDevice.CreateChildContainer(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
152 |
dev->iDestroyObject = aDevice.DestroyObject(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
153 |
dev->iPInfoReceived = aDevice.PInfoReceived(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
154 |
dev->iDLNADeviceType = aDevice.DLNADeviceType(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
155 |
dev->iPrepareForConnection = aDevice.PrepareForConnection(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
156 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
157 |
dev->ConstructL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
158 |
CleanupStack::Pop(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
159 |
return dev; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
160 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
161 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
162 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
163 |
// CUpnpAVDeviceExtended::NewL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
164 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
165 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
166 |
CUpnpAVDeviceExtended* CUpnpAVDeviceExtended::NewL() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
167 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
168 |
CUpnpAVDeviceExtended* dev = new(ELeave) CUpnpAVDeviceExtended(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
169 |
CleanupStack::PushL( dev ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
170 |
dev->ConstructL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
171 |
CleanupStack::Pop(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
172 |
return dev; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
173 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
174 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
175 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
176 |
// CUpnpAVDeviceExtended::~CUpnpAVDeviceExtended |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
177 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
178 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
179 |
CUpnpAVDeviceExtended::~CUpnpAVDeviceExtended() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
180 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
181 |
delete iIconUrl; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
182 |
iSinkProtocolInfo.ResetAndDestroy(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
183 |
iSourceProtocolInfo.ResetAndDestroy(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
184 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
185 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
186 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
187 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
188 |
// CUpnpAVDeviceExtended::CUpnpAVDeviceExtended |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
189 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
190 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
191 |
CUpnpAVDeviceExtended::CUpnpAVDeviceExtended() : |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
192 |
CUpnpAVDevice() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
193 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
194 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
195 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
196 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
197 |
// CUpnpAVDeviceExtended::IncreaseSubscriptionCount |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
198 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
199 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
200 |
TInt CUpnpAVDeviceExtended::IncreaseSubscriptionCount() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
201 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
202 |
return ++iSubscriptionCount; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
203 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
204 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
205 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
206 |
// CUpnpAVDeviceExtended::DecreaseSubscriptionCount |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
207 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
208 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
209 |
TInt CUpnpAVDeviceExtended::DecreaseSubscriptionCount() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
210 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
211 |
iSubscriptionCount--; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
212 |
if( iSubscriptionCount < 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
213 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
214 |
iSubscriptionCount = 0; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
215 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
216 |
return iSubscriptionCount; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
217 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
218 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
219 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
220 |
// CUpnpAVDeviceExtended::SubscriptionCount |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
221 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
222 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
223 |
TInt CUpnpAVDeviceExtended::SubscriptionCount() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
224 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
225 |
return iSubscriptionCount; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
226 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
227 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
228 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
229 |
// CUpnpAVDeviceExtended::ConstructL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
230 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
231 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
232 |
void CUpnpAVDeviceExtended::ConstructL() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
233 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
234 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
235 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
236 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
237 |
// CUpnpAVDeviceExtended::SetSinkProtocolInfoL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
238 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
239 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
240 |
void CUpnpAVDeviceExtended::SetSinkProtocolInfoL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
241 |
const TDesC8& aProtocolInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
242 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
243 |
__LOG( "CUpnpAVDeviceExtended::SetSinkProtocolInfoL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
244 |
HBufC8* buffer = RemoveIllegalCharactersL( aProtocolInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
245 |
if( buffer ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
246 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
247 |
CleanupStack::PushL( buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
248 |
TLex8 input( *buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
249 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
250 |
while( !input.Eos() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
251 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
252 |
ParseToDelimeter( input, TChar( KProtocolInfoDelimeter ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
253 |
CUpnpDlnaProtocolInfo* tmpInfo = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
254 |
TRAPD( err, tmpInfo = CUpnpDlnaProtocolInfo::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
255 |
input.MarkedToken() ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
256 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
257 |
if( err == KErrNone && tmpInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
258 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
259 |
// Transfer ownership of tmpInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
260 |
iSinkProtocolInfo.Append( tmpInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
261 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
262 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
263 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
264 |
__LOG1( "CUpnpDlnaProtocolInfo::NewL failed: %d", err ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
265 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
266 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
267 |
if( !input.Eos() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
268 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
269 |
input.SkipAndMark( 1 ); // Skip the delimeter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
270 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
271 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
272 |
CleanupStack::PopAndDestroy( buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
273 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
274 |
__LOG( "CUpnpAVDeviceExtended::SetSinkProtocolInfoL end" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
275 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
276 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
277 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
278 |
// CUpnpAVDeviceExtended::SinkProtocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
279 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
280 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
281 |
const RPointerArray<CUpnpDlnaProtocolInfo>& |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
282 |
CUpnpAVDeviceExtended::SinkProtocolInfo() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
283 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
284 |
return iSinkProtocolInfo; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
285 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
286 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
287 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
288 |
// CUpnpAVDeviceExtended::SetSourceProtocolInfoL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
289 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
290 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
291 |
void CUpnpAVDeviceExtended::SetSourceProtocolInfoL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
292 |
const TDesC8& aProtocolInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
293 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
294 |
__LOG( "CUpnpAVDeviceExtended::SetSourceProtocolInfoL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
295 |
HBufC8* buffer = RemoveIllegalCharactersL( aProtocolInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
296 |
if( buffer ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
297 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
298 |
CleanupStack::PushL( buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
299 |
TLex8 input( *buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
300 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
301 |
while( !input.Eos() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
302 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
303 |
ParseToDelimeter( input, TChar( KProtocolInfoDelimeter ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
304 |
CUpnpDlnaProtocolInfo* tmpInfo = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
305 |
TRAPD( err, tmpInfo = CUpnpDlnaProtocolInfo::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
306 |
input.MarkedToken() ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
307 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
308 |
if( err == KErrNone && tmpInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
309 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
310 |
// Transfer ownership of tmpInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
311 |
iSourceProtocolInfo.Append( tmpInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
312 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
313 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
314 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
315 |
__LOG1( "CUpnpDlnaProtocolInfo::NewL failed: %d", err ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
316 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
317 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
318 |
if( !input.Eos() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
319 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
320 |
input.SkipAndMark( 1 ); // Skip the delimeter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
321 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
322 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
323 |
CleanupStack::PopAndDestroy( buffer ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
324 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
325 |
__LOG( "CUpnpAVDeviceExtended::SetSourceProtocolInfoL end" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
326 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
327 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
328 |
// CUpnpAVDeviceExtended::SourceProtocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
329 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
330 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
331 |
const RPointerArray<CUpnpDlnaProtocolInfo>& |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
332 |
CUpnpAVDeviceExtended::SourceProtocolInfo() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
333 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
334 |
return iSourceProtocolInfo; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
335 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
336 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
337 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
338 |
// CUpnpAVDeviceExtended::SetLocal |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
339 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
340 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
341 |
void CUpnpAVDeviceExtended::SetLocal( TBool aLocal ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
342 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
343 |
iLocal = aLocal; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
344 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
345 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
346 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
347 |
// CUpnpAVDeviceExtended::Local |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
348 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
349 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
350 |
TBool CUpnpAVDeviceExtended::Local() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
351 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
352 |
return iLocal; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
353 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
354 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
355 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
356 |
// CUpnpAVDeviceExtended::MatchSinkProtocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
357 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
358 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
359 |
TBool CUpnpAVDeviceExtended::MatchSinkProtocolInfo( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
360 |
const TDesC8& aInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
361 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
362 |
__LOG( "CUpnpAVDeviceExtended::MatchSinkProtocolInfo" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
363 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
364 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
365 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
366 |
if( DlnaCompatible() && DLNADeviceType() == CUpnpAVDeviceExtended::EDMR ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
367 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
368 |
// The device is DLNA compatible |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
369 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
370 |
// Try try find PN parameter to determine if it's dlna content |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
371 |
if( aInfo.Find( KDlnaPn ) != KErrNotFound ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
372 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
373 |
__LOG( "MatchSinkProtocolInfo - DLNA content and the renderer \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
374 |
is DLNA compatible, start matching..." ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
375 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
376 |
match = MatchSinkProfileId( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
377 |
if( !match ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
378 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
379 |
// if profile id was not found try matching mime |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
380 |
match = MatchSinkMime( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
381 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
382 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
383 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
384 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
385 |
__LOG( "MatchSinkProtocolInfo - Non DLNA content and the \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
386 |
renderer is DLNA compatible, start matching..." ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
387 |
match = MatchSinkMime( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
388 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
389 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
390 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
391 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
392 |
__LOG( "MatchSinkProtocolInfo - Renderer is not DLNA compatible, \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
393 |
start matching..." ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
394 |
match = MatchSinkMime( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
395 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
396 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
397 |
return match; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
398 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
399 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
400 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
401 |
// CUpnpAVDeviceExtended::MatchSourceProtocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
402 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
403 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
404 |
TBool CUpnpAVDeviceExtended::ValidateTransfer( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
405 |
const TDesC8& aInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
406 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
407 |
__LOG( "CUpnpAVDeviceExtended::MatchSourceProtocolInfo" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
408 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
409 |
// Try try find PN parameter to determine if it's dlna content |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
410 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
411 |
if( aInfo.Find( KDlnaPn ) != KErrNotFound ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
412 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
413 |
match = MatchSourceProfileId( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
414 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
415 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
416 |
return match; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
417 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
418 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
419 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
420 |
// CUpnpAVDeviceExtended::MatchSinkProfileId |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
421 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
422 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
423 |
TBool CUpnpAVDeviceExtended::MatchSinkProfileId( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
424 |
const TDesC8& aInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
425 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
426 |
__LOG( "CUpnpAVDeviceExtended::MatchSinkProfileId" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
427 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
428 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
429 |
CUpnpDlnaProtocolInfo* tmpInfo = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
430 |
TRAPD( err, tmpInfo = CUpnpDlnaProtocolInfo::NewL( aInfo ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
431 |
if ( err == KErrNone ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
432 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
433 |
// Match the first parameter and PN parameter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
434 |
TInt count = iSinkProtocolInfo.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
435 |
for( TInt i = 0; i < count; i++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
436 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
437 |
if( iSinkProtocolInfo[ i ]->PnParameter() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
438 |
tmpInfo->PnParameter() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
439 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
440 |
// PN parameter matches, try matching the first |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
441 |
// parameter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
442 |
if( iSinkProtocolInfo[ i ]->FirstField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
443 |
tmpInfo->FirstField() || |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
444 |
iSinkProtocolInfo[ i ]->FirstField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
445 |
KAsterisk ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
446 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
447 |
__LOG( "MatchSinkProfileId - a match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
448 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
449 |
// We have a match! |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
450 |
i = count; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
451 |
match = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
452 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
453 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
454 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
455 |
delete tmpInfo; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
456 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
457 |
return match; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
458 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
459 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
460 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
461 |
// CUpnpAVDeviceExtended::MatchSourceProfileId |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
462 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
463 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
464 |
TBool CUpnpAVDeviceExtended::MatchSourceProfileId( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
465 |
const TDesC8& aInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
466 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
467 |
__LOG( "CUpnpAVDeviceExtended::MatchSourceProfileId" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
468 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
469 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
470 |
CUpnpDlnaProtocolInfo* tmpInfo = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
471 |
TRAPD( err, tmpInfo = CUpnpDlnaProtocolInfo::NewL( aInfo ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
472 |
if ( err == KErrNone ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
473 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
474 |
// Match the first parameter and PN parameter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
475 |
TInt count = iSourceProtocolInfo.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
476 |
for( TInt i = 0; i < count; i++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
477 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
478 |
if( iSourceProtocolInfo[ i ]->PnParameter() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
479 |
tmpInfo->PnParameter() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
480 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
481 |
// PN parameter matches, try matching the first |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
482 |
// parameter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
483 |
if( iSourceProtocolInfo[ i ]->FirstField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
484 |
tmpInfo->FirstField() || |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
485 |
iSourceProtocolInfo[ i ]->FirstField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
486 |
KAsterisk ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
487 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
488 |
__LOG( "MatchSourceProfileId - a match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
489 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
490 |
// We have a match! |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
491 |
i = count; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
492 |
match = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
493 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
494 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
495 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
496 |
delete tmpInfo; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
497 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
498 |
return match; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
499 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
500 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
501 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
502 |
// CUpnpAVDeviceExtended::MatchSinkMime |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
503 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
504 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
505 |
TBool CUpnpAVDeviceExtended::MatchSinkMime( const TDesC8& aInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
506 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
507 |
__LOG( "CUpnpAVDeviceExtended::MatchSinkMime" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
508 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
509 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
510 |
CUpnpDlnaProtocolInfo* tmpInfo = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
511 |
TRAPD( err, tmpInfo = CUpnpDlnaProtocolInfo::NewL( aInfo ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
512 |
if ( err == KErrNone ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
513 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
514 |
// Match the first parameter and mime-type |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
515 |
TInt count = iSinkProtocolInfo.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
516 |
for( TInt i = 0; i < count; i++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
517 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
518 |
if( iSinkProtocolInfo[ i ]->ThirdField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
519 |
tmpInfo->ThirdField() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
520 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
521 |
// Mime-parameter matches, try matching the first |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
522 |
// parameter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
523 |
if( iSinkProtocolInfo[ i ]->FirstField() == |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
524 |
tmpInfo->FirstField() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
525 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
526 |
__LOG( "MatchSinkMime - a match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
527 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
528 |
// We have a match! |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
529 |
i = count; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
530 |
match = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
531 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
532 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
533 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
534 |
delete tmpInfo; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
535 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
536 |
return match; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
537 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
538 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
539 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
540 |
// CUpnpAVDeviceExtended::FindFirstMatchingInSinkL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
541 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
542 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
543 |
const TDesC8& CUpnpAVDeviceExtended::FindFirstMatchingInSinkL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
544 |
const CUpnpItem& aItem ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
545 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
546 |
__LOG( "CUpnpAVDeviceExtended::FindFirstMatchingInSinkL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
547 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
548 |
RUPnPElementsArray array; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
549 |
CleanupClosePushL( array ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
550 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
551 |
UPnPItemUtility::GetResElements( aItem, array ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
552 |
TBool match = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
553 |
TInt i; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
554 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
555 |
TInt count = array.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
556 |
for( i = 0; i < count; i ++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
557 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
558 |
const CUpnpAttribute& protocolInfo = |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
559 |
UPnPItemUtility::FindAttributeByNameL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
560 |
*array[ i ], KProtocolInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
561 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
562 |
if( MatchType( aItem.ObjectClass(), protocolInfo.Value() ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
563 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
564 |
if( MatchSinkProtocolInfo( protocolInfo.Value() ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
565 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
566 |
// We have a match! |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
567 |
__LOG( "FindFirstMatchingInSinkL - a match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
568 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
569 |
match = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
570 |
break; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
571 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
572 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
573 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
574 |
__LOG( "FindFirstMatchingInSinkL - not a match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
575 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
576 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
577 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
578 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
579 |
// Res-elements mime-type does not match to object-class |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
580 |
// Ignore |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
581 |
__LOG( "FindFirstMatchingInSinkL - Res doesn't match \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
582 |
to objectclass" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
583 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
584 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
585 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
586 |
if( !match ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
587 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
588 |
__LOG( "FindFirstMatchingInSinkL - No match" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
589 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
590 |
User::Leave( KErrNotSupported ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
591 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
592 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
593 |
const TDesC8& uri = array[ i ]->Value(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
594 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
595 |
CleanupStack::PopAndDestroy( &array ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
596 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
597 |
return uri; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
598 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
599 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
600 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
601 |
// CUpnpAVDeviceExtended::MatchType |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
602 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
603 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
604 |
TBool CUpnpAVDeviceExtended::MatchType( const TDesC8& aObjectClass, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
605 |
const TDesC8& aProtocolInfo ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
606 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
607 |
__LOG( "CUpnpAVDeviceExtended::MatchType" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
608 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
609 |
TBool retVal = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
610 |
if( aObjectClass.Find( KClassAudio ) == 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
611 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
612 |
if( aProtocolInfo.Find( KAudioSupport ) >= 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
613 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
614 |
retVal = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
615 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
616 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
617 |
else if( aObjectClass.Find( KClassImage ) == 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
618 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
619 |
if( aProtocolInfo.Find( KImageSupport ) >= 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
620 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
621 |
retVal = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
622 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
623 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
624 |
else if( aObjectClass.Find( KClassVideo ) == 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
625 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
626 |
if( aProtocolInfo.Find( KVideoSupport ) >= 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
627 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
628 |
retVal = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
629 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
630 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
631 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
632 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
633 |
__PANICD( __FILE__, __LINE__ ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
634 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
635 |
return retVal; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
636 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
637 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
638 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
639 |
// CUpnpAVDeviceExtended::SetCapabilitiesBySupportedMimeTypesL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
640 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
641 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
642 |
void CUpnpAVDeviceExtended::SetCapabilitiesBySupportedMimeTypesL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
643 |
const TDesC8& aListOfMimeTypes ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
644 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
645 |
__LOG( "CUpnpAVDeviceExtended::SetCapabilitiesBySupportedMimeTypesL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
646 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
647 |
if( aListOfMimeTypes != KNullDesC8 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
648 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
649 |
// Update the audio media capability |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
650 |
if( UPnPCommonUtils::IsAudioSupported( aListOfMimeTypes ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
651 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
652 |
iAudioMediaCapability = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
653 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
654 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
655 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
656 |
iAudioMediaCapability = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
657 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
658 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
659 |
// Update the audio media capability |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
660 |
if( UPnPCommonUtils::IsImageSupported( aListOfMimeTypes ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
661 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
662 |
iImageMediaCapability = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
663 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
664 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
665 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
666 |
iImageMediaCapability = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
667 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
668 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
669 |
// Update the video media capability |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
670 |
if( UPnPCommonUtils::IsVideoSupported( aListOfMimeTypes ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
671 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
672 |
iVideoMediaCapability = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
673 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
674 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
675 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
676 |
iVideoMediaCapability = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
677 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
678 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
679 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
680 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
681 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
682 |
// CUpnpAVDeviceExtended::SetSourceProtocolInfoL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
683 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
684 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
685 |
void CUpnpAVDeviceExtended::SetSourceProtocolInfoL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
686 |
const RPointerArray<CUpnpDlnaProtocolInfo>& aProtocolInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
687 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
688 |
__LOG( "CUpnpAVDeviceExtended::SetSourceProtocolInfoL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
689 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
690 |
for( TInt i = 0; i < aProtocolInfo.Count(); i++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
691 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
692 |
CUpnpDlnaProtocolInfo* tmpInfo = CUpnpDlnaProtocolInfo::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
693 |
aProtocolInfo[ i ]->ProtocolInfoL() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
694 |
iSourceProtocolInfo.Append( tmpInfo ); // Ownership is transferred |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
695 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
696 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
697 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
698 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
699 |
// CUpnpAVDeviceExtended::SetSinkProtocolInfoL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
700 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
701 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
702 |
void CUpnpAVDeviceExtended::SetSinkProtocolInfoL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
703 |
const RPointerArray<CUpnpDlnaProtocolInfo>& aProtocolInfo ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
704 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
705 |
__LOG( "CUpnpAVDeviceExtended::SetSinkProtocolInfoL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
706 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
707 |
for( TInt i = 0; i < aProtocolInfo.Count(); i++ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
708 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
709 |
CUpnpDlnaProtocolInfo* tmpInfo = CUpnpDlnaProtocolInfo::NewL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
710 |
aProtocolInfo[ i ]->ProtocolInfoL() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
711 |
iSinkProtocolInfo.Append( tmpInfo ); // Ownership is transferred |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
712 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
713 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
714 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
715 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
716 |
// CUpnpAVDeviceExtended::ParseToDelimeter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
717 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
718 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
719 |
void CUpnpAVDeviceExtended::ParseToDelimeter( TLex8& aLex, TChar aDelimeter ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
720 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
721 |
aLex.Mark(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
722 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
723 |
TChar chr = 0; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
724 |
TChar edchr = 0; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
725 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
726 |
while( !aLex.Eos() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
727 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
728 |
edchr = chr; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
729 |
chr = aLex.Peek(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
730 |
if( chr == aDelimeter && edchr != TChar( KSlash ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
731 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
732 |
break; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
733 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
734 |
aLex.Inc(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
735 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
736 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
737 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
738 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
739 |
// CUpnpAVDeviceExtended::RemoveIllegalCharactersL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
740 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
741 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
742 |
HBufC8* CUpnpAVDeviceExtended::RemoveIllegalCharactersL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
743 |
const TDesC8& aPtr ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
744 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
745 |
HBufC8* ptrResult = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
746 |
TInt i = KErrNotFound; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
747 |
if ( aPtr.Length() != 0 ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
748 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
749 |
ptrResult = aPtr.AllocL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
750 |
CleanupStack::PushL( ptrResult ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
751 |
TPtr8 ptr = ptrResult->Des(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
752 |
while( ++i < ptr.Length() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
753 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
754 |
if( IsIllegalCharacter( ptr[i] ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
755 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
756 |
ptr.Delete( i, 1 ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
757 |
i--; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
758 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
759 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
760 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
761 |
CleanupStack::Pop( ptrResult ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
762 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
763 |
return ptrResult; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
764 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
765 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
766 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
767 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
768 |
// CUpnpAVDeviceExtended::IsIllegalCharacter |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
769 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
770 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
771 |
TBool CUpnpAVDeviceExtended::IsIllegalCharacter( TChar aCharacter ) const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
772 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
773 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
774 |
TBool retVal = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
775 |
if ( ( ( aCharacter >= TChar( KUnicodeC0RangeStart ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
776 |
&& aCharacter <= TChar( KUnicodeC0RangeEnd ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
777 |
|| ( aCharacter >= TChar( KUnicodeC1RangeStart ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
778 |
&& aCharacter <= TChar( KUnicodeC1RangeEnd ) ) ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
779 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
780 |
retVal = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
781 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
782 |
return retVal; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
783 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
784 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
785 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
786 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
787 |
// CUpnpAVDeviceExtended::SetAudioUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
788 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
789 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
790 |
void CUpnpAVDeviceExtended::SetAudioUpload( TBool aAudioUpload ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
791 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
792 |
iAudioUpload = aAudioUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
793 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
794 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
795 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
796 |
// CUpnpAVDeviceExtended::AudioUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
797 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
798 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
799 |
TBool CUpnpAVDeviceExtended::AudioUpload() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
800 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
801 |
return iAudioUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
802 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
803 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
804 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
805 |
// CUpnpAVDeviceExtended::SetImageUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
806 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
807 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
808 |
void CUpnpAVDeviceExtended::SetImageUpload( TBool aImageUpload ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
809 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
810 |
iImageUpload = aImageUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
811 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
812 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
813 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
814 |
// CUpnpAVDeviceExtended::ImageUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
815 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
816 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
817 |
TBool CUpnpAVDeviceExtended::ImageUpload() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
818 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
819 |
return iImageUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
820 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
821 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
822 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
823 |
// CUpnpAVDeviceExtended::SetVideoUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
824 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
825 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
826 |
void CUpnpAVDeviceExtended::SetVideoUpload( TBool aVideoUpload ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
827 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
828 |
iVideoUpload = aVideoUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
829 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
830 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
831 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
832 |
// CUpnpAVDeviceExtended::VideoUpload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
833 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
834 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
835 |
TBool CUpnpAVDeviceExtended::VideoUpload() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
836 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
837 |
return iVideoUpload; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
838 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
839 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
840 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
841 |
// CUpnpAVDeviceExtended::SetCreateChildContainer |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
842 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
843 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
844 |
void CUpnpAVDeviceExtended::SetCreateChildContainer( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
845 |
TBool aCreateChildContainer ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
846 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
847 |
iCreateChildContainer = aCreateChildContainer; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
848 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
849 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
850 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
851 |
// CUpnpAVDeviceExtended::CreateChildContainer |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
852 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
853 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
854 |
TBool CUpnpAVDeviceExtended::CreateChildContainer() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
855 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
856 |
return iCreateChildContainer; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
857 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
858 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
859 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
860 |
// CUpnpAVDeviceExtended::SetDestroyObject |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
861 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
862 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
863 |
void CUpnpAVDeviceExtended::SetDestroyObject( TBool aDestroyObject ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
864 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
865 |
iDestroyObject = aDestroyObject; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
866 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
867 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
868 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
869 |
// CUpnpAVDeviceExtended::DestroyObject |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
870 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
871 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
872 |
TBool CUpnpAVDeviceExtended::DestroyObject() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
873 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
874 |
return iDestroyObject; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
875 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
876 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
877 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
878 |
// CUpnpAVDeviceExtended::SetPInfoReceived |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
879 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
880 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
881 |
void CUpnpAVDeviceExtended::SetPInfoReceived( TBool aPInfoReceived ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
882 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
883 |
iPInfoReceived = aPInfoReceived; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
884 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
885 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
886 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
887 |
// CUpnpAVDeviceExtended::PInfoReceived |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
888 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
889 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
890 |
TBool CUpnpAVDeviceExtended::PInfoReceived() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
891 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
892 |
return iPInfoReceived; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
893 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
894 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
895 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
896 |
// CUpnpAVDeviceExtended::PrepareForConnection |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
897 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
898 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
899 |
TBool CUpnpAVDeviceExtended::PrepareForConnection() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
900 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
901 |
return iPrepareForConnection; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
902 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
903 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
904 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
905 |
// CUpnpAVDeviceExtended::SetPrepareForConnection |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
906 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
907 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
908 |
void CUpnpAVDeviceExtended::SetPrepareForConnection( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
909 |
TBool aPrepareForConnection ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
910 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
911 |
iPrepareForConnection = aPrepareForConnection; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
912 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
913 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
914 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
915 |
// CUpnpAVDeviceExtended::SetDLNADeviceType |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
916 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
917 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
918 |
void CUpnpAVDeviceExtended::SetDLNADeviceType( TDLNADeviceType aDeviceType ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
919 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
920 |
iDLNADeviceType = aDeviceType; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
921 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
922 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
923 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
924 |
// CUpnpAVDeviceExtended::DLNADeviceType |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
925 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
926 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
927 |
CUpnpAVDeviceExtended::TDLNADeviceType |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
928 |
CUpnpAVDeviceExtended::DLNADeviceType() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
929 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
930 |
return iDLNADeviceType; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
931 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
932 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
933 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
934 |
// CUpnpAVDeviceExtended::SetIconUrlL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
935 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
936 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
937 |
void CUpnpAVDeviceExtended::SetIconUrlL( const TInetAddr& aAddress, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
938 |
const TDesC8& aUrlBase, const TDesC8& aIconUrl ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
939 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
940 |
__LOG8_1( "CUpnpAVDeviceExtended::SetIconUrlL - Base: %S", &aUrlBase ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
941 |
__LOG8_1( "CUpnpAVDeviceExtended::SetIconUrlL - Icon: %S", &aIconUrl ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
942 |
TBuf< KUrlIpBufLen > ip; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
943 |
aAddress.Output( ip ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
944 |
HBufC8* iconUrl = HBufC8::NewL( KUrlHttp().Length() + ip.Length() + 1 + // 1 for colon |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
945 |
KUrlPortLen + 1 + // 1 for slash |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
946 |
aUrlBase.Length() + 1 + // 1 for slash |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
947 |
aIconUrl.Length() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
948 |
TPtr8 ptr( iconUrl->Des() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
949 |
if ( aUrlBase.Find( KUrlHttp ) == KErrNotFound ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
950 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
951 |
ptr.Copy( KUrlHttp ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
952 |
ptr.Append( ip ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
953 |
ptr.Append( KUrlColon ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
954 |
ptr.AppendNumUC( aAddress.Port() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
955 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
956 |
EnsureFinalSlash( ptr ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
957 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
958 |
TPtrC8 urlBase( RemoveInitial( aUrlBase, KUrlSlash ) ); // Url base without initial slash |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
959 |
ptr.Append( urlBase ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
960 |
EnsureFinalSlash( ptr ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
961 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
962 |
TPtrC8 icon( RemoveInitial( aIconUrl, KUrlSlash ) ); // Icon url without initial slash |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
963 |
ptr.Append( RemoveInitial( icon, urlBase ) ); // Remove base from icon url if it already contains base |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
964 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
965 |
delete iIconUrl; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
966 |
iIconUrl = iconUrl; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
967 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
968 |
__LOG8_1( "CUpnpAVDeviceExtended::SetIconUrlL - Device: %S", &( FriendlyName() ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
969 |
__LOG8_1( "CUpnpAVDeviceExtended::SetIconUrlL - Url: %S", iIconUrl ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
970 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
971 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
972 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
973 |
// CUpnpAVDeviceExtended::IconUrl |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
974 |
// See upnpavdeviceextended.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
975 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
976 |
TPtrC8 CUpnpAVDeviceExtended::IconUrl() const |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
977 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
978 |
return ( iIconUrl ? *iIconUrl : KNullDesC8() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
979 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
980 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
981 |
// end of file |