author | samhuttu |
Mon, 01 Nov 2010 12:37:49 +0200 | |
branch | new development branch with rendering state machine and other goodies |
changeset 38 | 5360b7ddc251 |
parent 32 | 3785f754ee62 |
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) 2007 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: server impl. of session against media 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 |
// INCLUDE FILES |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
19 |
// System |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
20 |
#include <mmf/common/mmfcontrollerpluginresolver.h> |
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 |
// upnp stack api |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
23 |
#include <upnpstring.h> |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
24 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
25 |
// 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
|
26 |
#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
|
27 |
#include <upnpattribute.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 <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
|
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 "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
|
32 |
#include "upnpitemutility.h" // FindElementByNameL, GetResElements |
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 / xmlparser api |
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 "upnpxmlparser.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 / 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
|
38 |
#include "upnpcdsreselementutility.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 |
#include "httpuploader.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
40 |
#include "upnpmetadatafetcher.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
41 |
#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
|
42 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
43 |
// dlnasrv / avcontroller 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
|
44 |
#include "upnpuploadsession.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
45 |
#include "upnpfiletransferitem.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
46 |
#include "upnpavcontrollerserver.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
47 |
#include "upnpfiletransferitem.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
48 |
#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
|
49 |
#include "upnpavdispatcher.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
50 |
#include "upnpaverrorhandler.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
51 |
#include "upnpavcpstrings.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
52 |
#include "upnpresourcehelper.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
53 |
#include "upnpavcontrolpoint.h" |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
54 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
55 |
using namespace UpnpAVCPStrings; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
56 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
57 |
_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
|
58 |
#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
|
59 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
60 |
// CONSTANTS |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
61 |
_LIT8( KImportUri, "importUri" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
62 |
_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
|
63 |
const TUint32 KBufferSize = 0x40000; // 256K |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
64 |
const TInt KParallerTransfers = 1; |
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 |
// ======== 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
|
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
69 |
// CUPnPUploadSession::NewL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
70 |
// See upnpuploadsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
71 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
72 |
CUPnPUploadSession* CUPnPUploadSession::NewL( CUpnpAVControllerServer& |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
73 |
aServer, TInt aSessionId, const TDesC8& aUuid ) |
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 |
CUPnPUploadSession* self = new (ELeave) CUPnPUploadSession( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
76 |
aServer, aSessionId ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
77 |
CleanupStack::PushL( self ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
78 |
self->ConstructL( aUuid ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
79 |
CleanupStack::Pop( self ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
80 |
return self; |
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 |
|
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 |
// CUPnPUploadSession::CUPnPUploadSession |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
85 |
// See upnpuploadsession.h |
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 |
CUPnPUploadSession::CUPnPUploadSession( CUpnpAVControllerServer& aServer, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
88 |
TInt aSessionId ) : |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
89 |
CUPnPFileTransferSessionBase( aServer, aSessionId ), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
90 |
iResourceIndex( KErrNotFound ), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
91 |
iAsyncError( KErrNone ), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
92 |
iIPSessionId( KErrNotFound ), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
93 |
iSchedulerStopped( ETrue ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
94 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
95 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
98 |
// CUPnPUploadSession::~CUPnPUploadSession |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
99 |
// See upnpuploadsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
100 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
101 |
CUPnPUploadSession::~CUPnPUploadSession() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
102 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
103 |
__LOG( "CUPnPUploadSession::~CUPnPUploadSession" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
104 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
105 |
delete iUploader; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
106 |
iResources.ResetAndDestroy(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
107 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
108 |
__LOG( "CUPnPUploadSession::~CUPnPUploadSession - end" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
109 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
110 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
111 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
112 |
// CUPnPUploadSession::ConstructL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
113 |
// See upnpuploadsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
114 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
115 |
void CUPnPUploadSession::ConstructL( const TDesC8& aUuid ) |
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 |
__LOG( "CUPnPUploadSession::ConstructL" ); |
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 |
CUPnPFileTransferSessionBase::ConstructL( aUuid ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
120 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
121 |
iUploader = CHttpUploader::NewL( *this, (TUint32)iServer.IAP(), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
122 |
KBufferSize, KParallerTransfers ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
123 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
124 |
// Gets related ControlPoint device (CUpnpDevice). |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
125 |
// It is needed for CUpnpAVControlPoint. |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
126 |
iCpDevice = iServer.ControlPoint().Device( aUuid ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
127 |
if ( !iCpDevice ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
128 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
129 |
User::Leave( KErrNotFound ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
130 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
131 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
132 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
133 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
134 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
135 |
// CUPnPUploadSession::ActionResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
136 |
// From MUpnpAVControlPointObserver |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
137 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
138 |
void CUPnPUploadSession::ActionResponseL( CUpnpAction* aAction ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
139 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
140 |
if (aAction->Name().Compare(KCreateObject) == 0) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
141 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
142 |
__ASSERT( iIPSessionId == aAction->SessionId(), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
143 |
__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
|
144 |
CdsCreateObjectResponse( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
145 |
aAction->Error(), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
146 |
aAction->ArgumentValue(KObjectID), |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
147 |
aAction->ArgumentValue(KResult) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
148 |
); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
149 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
150 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
151 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
152 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
153 |
// CUPnPUploadSession::ActionResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
154 |
// From MUpnpAVControlPointObserver |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
155 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
156 |
void CUPnPUploadSession::StateUpdatedL( CUpnpService* /*aService*/ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
157 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
158 |
// No implementation required |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
159 |
} |
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 |
// CUPnPUploadSession::ActionResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
163 |
// From MUpnpAVControlPointObserver |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
164 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
165 |
void CUPnPUploadSession::HttpResponseL( CUpnpHttpMessage* /*aMessage*/ ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
166 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
167 |
// No implementation required |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
168 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
169 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
170 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
171 |
// CUPnPUploadSession::ActionResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
172 |
// From MUpnpAVControlPointObserver |
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 |
void CUPnPUploadSession::DeviceDiscoveredL( CUpnpDevice* /*aDevice*/ ) |
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 |
// No implementation required |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
177 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
180 |
// CUPnPUploadSession::ActionResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
181 |
// From MUpnpAVControlPointObserver |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
182 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
183 |
void CUPnPUploadSession::DeviceDisappearedL( CUpnpDevice* /*aDevice*/ ) |
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 |
// No implementation required |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
189 |
// CUPnPDownloadSession::TransferProgress |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
190 |
// See upnpdownloadsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
191 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
192 |
void CUPnPUploadSession::TransferProgress( TAny* aKey, TInt aBytes, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
193 |
TInt aTotalBytes ) |
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 |
__LOG( "CUPnPUploadSession::TransferProgress" ); |
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 |
if( iProgressTrackingEnabled ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
198 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
199 |
TUpnpFileTransferEvent item; |
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 err = FindItemByKey( item, (TInt)aKey ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
201 |
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
|
202 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
203 |
item.iStatus = KErrNone; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
204 |
item.iParam2 = aTotalBytes; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
205 |
item.iParam1 = aBytes; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
206 |
item.iEvent = TUpnpFileTransferEvent::ETransferProgress; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
207 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
208 |
Complete( item ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
209 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
210 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
211 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
212 |
__LOG( "TransferProgress - Not enabled!" ); |
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 |
} |
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 |
|
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 |
// CUPnPUploadSession::ReadyForTransfer |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
219 |
// See upnpdownloadsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
220 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
221 |
void CUPnPUploadSession::ReadyForTransferL( TAny* aKey ) |
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 |
__LOG( "CUPnPUploadSession::ReadyForTransferL" ); |
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 |
TUpnpFileTransferEvent event; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
226 |
if( FindItemByKey( event, (TInt)aKey, iResourceIndex ) == KErrNone ) |
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 |
ReadyForTransferL( event ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
229 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
230 |
event.iEvent = TUpnpFileTransferEvent::ETransferStarted; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
231 |
Complete( event ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
232 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
233 |
else |
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 |
__LOG( "ReadyForTransfer - Key not found" ); |
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 |
// Not found |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
238 |
event.iStatus = KErrGeneral; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
239 |
event.iParam2 = 0; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
240 |
event.iEvent = TUpnpFileTransferEvent::ETransferCompleted; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
241 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
242 |
Complete( event ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
243 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
244 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
245 |
|
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 |
// CUPnPUploadSession::TransferCompleted |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
248 |
// See upnpdownloadsession.h |
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 |
void CUPnPUploadSession::TransferCompleted( TAny* aKey, TInt aStatus ) |
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 |
__LOG2( "CUPnPUploadSession::TransferCompleted, key = %d, status = %d", |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
253 |
(TInt)aKey, aStatus ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
254 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
255 |
TUpnpFileTransferEvent item; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
256 |
TInt index; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
257 |
TInt err = FindItemByKey( item, (TInt)aKey, index ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
258 |
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
|
259 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
260 |
item.iStatus = UPnPAVErrorHandler::ConvertToSymbianErrorCode( aStatus, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
261 |
EUPnPHTTPError ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
262 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
263 |
item.iEvent = TUpnpFileTransferEvent::ETransferCompleted; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
264 |
Complete( item ); |
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 |
iTransferItems.Remove( index ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
267 |
delete iResources[ index ]; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
268 |
iResources.Remove( index ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
269 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
270 |
else |
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 |
__LOG( "TransferCompleted - Key not found" ); |
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 |
// Not found |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
275 |
if( aStatus == KErrCancel ) |
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 |
item.iStatus = aStatus; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
278 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
279 |
else |
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 |
item.iStatus = KErrGeneral; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
282 |
} |
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 |
item.iParam2 = 0; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
285 |
item.iEvent = TUpnpFileTransferEvent::ETransferCompleted; |
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 |
Complete( item ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
288 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
289 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
290 |
if( aStatus == KErrDisconnected ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
291 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
292 |
__LOG( "TransferCompleted - Target device lost" ); |
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 |
TInt count = iTransferItems.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
295 |
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
|
296 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
297 |
iUploader->CancelTransfer( (TAny*)iTransferItems[i].iKey ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
298 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
299 |
if( iResources[ i ]->ItemId() ) |
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 |
// Send destroyobject |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
302 |
__LOG( "CancelAllUploadsL - sending destroyobject" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
303 |
TRAP_IGNORE( DestroyObjectL( *iResources[ i ]->ItemId() ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
304 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
305 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
306 |
iResources.ResetAndDestroy(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
307 |
iTransferItems.Reset(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
308 |
} |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
311 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
312 |
// CUPnPUploadSession::CdsCreateObjectResponse |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
313 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::CdsCreateObjectResponse( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
316 |
TInt aErr, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
317 |
const TDesC8& aObjectID, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
318 |
const TDesC8& aResult ) |
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 |
__LOG1( "CUPnPUploadSession::CdsCreateObjectResponse: %d" , aErr ); |
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 |
__ASSERTD( iTransferItems.Count() == iResources.Count(), __FILE__, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
323 |
__LINE__ ); |
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 |
iServer.Dispatcher().UnRegister( iIPSessionId ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
326 |
iIPSessionId = KErrNotFound; |
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 |
aErr = UPnPAVErrorHandler::ConvertToSymbianErrorCode( aErr, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
329 |
EUPnPContentDirectoryError ); |
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 |
if( aErr == KErrNone ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
332 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
333 |
TRAP( aErr, HandleObjectResponseL( aObjectID, aResult ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
334 |
} |
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 |
iAsyncError = aErr; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
337 |
StopWait(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
338 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
339 |
|
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 |
// CUPnPUploadSession::StartUploadL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
342 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
343 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
344 |
void CUPnPUploadSession::StartUploadL( const RMessage2& aMessage ) |
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 |
__LOG( "CUPnPUploadSession::StartUploadL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
347 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
348 |
__ASSERTD( iTransferItems.Count() == iResources.Count(), __FILE__, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
349 |
__LINE__ ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
350 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
351 |
CUpnpFileTransferItem* tmpTransferItem = CUpnpFileTransferItem::NewLC(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
352 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
353 |
ReadTransferItemFromMessageL( aMessage, 1 ,tmpTransferItem ); |
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 |
if( CheckIfKeyExists( tmpTransferItem->Key() ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
356 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
357 |
User::Leave( KErrInUse ); |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
360 |
TUpnpFileTransferEvent transferItem; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
361 |
transferItem.iKey = tmpTransferItem->Key(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
362 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
363 |
CUpnpItem* tmpUpnpItem = UPnPMetadataFetcher::CreateItemFromFileLC( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
364 |
tmpTransferItem->Path() ); |
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 |
tmpUpnpItem->SetIdL( KNullDesC8 ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
367 |
tmpUpnpItem->SetParentIdL( KContainerIdAny ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
368 |
tmpUpnpItem->SetRestricted( EFalse ); |
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 |
const CUpnpElement& resEl = UPnPItemUtility::FindElementByNameL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
371 |
*tmpUpnpItem, KElementRes ); |
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 |
const CUpnpAttribute* pInfo = UPnPItemUtility::FindAttributeByName( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
374 |
resEl, KAttributeProtocolInfo ); |
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 |
if( iDevice->DlnaCompatible() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
377 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
378 |
// Dlna device, additional checks required |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
379 |
__LOG( "StartUploadL - DLNA device" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
380 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
381 |
TPtrC8 objectClass = tmpUpnpItem->ObjectClass(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
382 |
if( objectClass.Find( KClassAudio ) != KErrNotFound && |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
383 |
iDevice->AudioUpload() ) |
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 |
// Trying to upload audio and it's supported |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
386 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
387 |
else if( objectClass.Find( KClassImage ) != KErrNotFound && |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
388 |
iDevice->ImageUpload() ) |
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 |
// Trying to upload images and it's supported |
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 |
else if( objectClass.Find( KClassVideo ) != KErrNotFound && |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
393 |
iDevice->VideoUpload() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
394 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
395 |
// Trying to upload video and it's supported |
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 |
else |
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 |
// Unknown media type, or copy not supported |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
400 |
__LOG( "StartUploadL - Unknown media type, or copy not \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
401 |
supported" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
402 |
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
|
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
405 |
if( iDevice->ValidateTransfer( pInfo->Value() ) ) |
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( "StartUploadL - Match by protocolInfo succeeded" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
408 |
// Continue with DLNA upload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
409 |
// ProtocolInfo is in DLNA format |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
410 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
411 |
else |
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 |
__LOG( "StartUploadL - Match by protocolInfo failed, upload \ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
414 |
as UPnP content" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
415 |
// Continue with UPnP upload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
416 |
// Check the protocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
417 |
ProtocolInfoToUPnPL( pInfo ); |
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 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
421 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
422 |
__LOG( "StartUploadL - UPnP Device -> UPnP upload" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
423 |
// Continue with UPnP upload |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
424 |
// Check the protocolInfo |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
425 |
ProtocolInfoToUPnPL( pInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
426 |
} |
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 |
iUploader->InsertFileIntoWaitQueueL( (TAny*)transferItem.iKey, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
429 |
tmpTransferItem->Path(), KNullDesC8 ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
430 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
431 |
SetHeadersL( pInfo->Value(), (TAny*)transferItem.iKey ); |
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 |
iTransferItems.Append( transferItem ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
434 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
435 |
CUPnPResourceHelper* helper = CUPnPResourceHelper::NewL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
436 |
CleanupStack::Pop( tmpUpnpItem ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
437 |
CleanupStack::PushL( helper ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
438 |
helper->SetItem( tmpUpnpItem ); // Transfer ownership |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
439 |
if( iResources.Append( helper )!= KErrNone ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
440 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
441 |
CleanupStack::PopAndDestroy( helper ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
442 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
443 |
CleanupStack::Pop( helper ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
444 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
445 |
iUploader->MoveToTransferQueueL( (TAny*)transferItem.iKey ); |
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 |
CleanupStack::PopAndDestroy( tmpTransferItem ); |
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 |
aMessage.Complete( KErrNone ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
450 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
451 |
__LOG( "CUPnPUploadSession::StartUploadL - end " ); |
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 |
// CUPnPUploadSession::CancelUploadL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
456 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
457 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
458 |
void CUPnPUploadSession::CancelUploadL( const RMessage2& aMessage ) |
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 |
__LOG( "CUPnPUploadSession::CancelUploadL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
461 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
462 |
__ASSERTD( iTransferItems.Count() == iResources.Count(), __FILE__, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
463 |
__LINE__ ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
464 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
465 |
TInt key = aMessage.Int1(); |
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 |
TInt index; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
468 |
if( CheckIfKeyExists( key, index ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
469 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
470 |
iUploader->CancelTransfer( (TAny*)key ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
471 |
aMessage.Complete( KErrNone ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
472 |
iTransferItems.Remove( index ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
473 |
if( iResources[ index ]->ItemId() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
474 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
475 |
// Send destroyobject |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
476 |
DestroyObjectL( *iResources[ index ]->ItemId() ); |
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 |
delete iResources[index ]; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
479 |
iResources.Remove( index ); |
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 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
482 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
483 |
aMessage.Complete( KErrNotFound ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
484 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
485 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
486 |
__LOG( "CUPnPUploadSession::CancelUploadL - end" ); |
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 |
|
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 |
// CUPnPUploadSession::CancelAllUploadsL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
491 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
492 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
493 |
void CUPnPUploadSession::CancelAllUploadsL( const RMessage2& aMessage ) |
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 |
__LOG( "CUPnPUploadSession::CancelAllUploadsL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
496 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
497 |
__ASSERTD( iTransferItems.Count() == iResources.Count(), __FILE__, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
498 |
__LINE__ ); |
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 |
TInt count = iTransferItems.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
501 |
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
|
502 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
503 |
iUploader->CancelTransfer( (TAny*)iTransferItems[i].iKey ); |
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 |
if( iResources[ i ]->ItemId() ) |
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 |
// Send destroyobject |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
508 |
__LOG( "CancelAllUploadsL - sending destroyobject" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
509 |
DestroyObjectL( *iResources[ i ]->ItemId() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
510 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
511 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
512 |
iResources.ResetAndDestroy(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
513 |
iTransferItems.Reset(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
514 |
iEventQueu.Reset(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
515 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
516 |
// Scheduler loop started, stop it and ignore createobject-resp |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
517 |
__LOG( "CancelAllUploadsL - Un register" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
518 |
iServer.Dispatcher().UnRegister( iIPSessionId ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
519 |
iIPSessionId = KErrNotFound; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
520 |
iAsyncError = KErrCancel; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
521 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
522 |
__LOG( "CancelAllUploadsL - Stop scheduler loop" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
523 |
StopWait(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
524 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
525 |
aMessage.Complete( KErrNone ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
526 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
527 |
__LOG( "CUPnPUploadSession::CancelAllUploadsL - end" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
528 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
529 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
530 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
531 |
// CUPnPUploadSession::StartTrackingUploadProgressL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
532 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::StartTrackingUploadProgressL( const RMessage2& |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
535 |
aMessage ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
536 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
537 |
__LOG( "CUPnPUploadSession::StartTrackingUploadProgressL" ); |
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 |
TInt key = aMessage.Int1(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
540 |
if( CheckIfKeyExists( key ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
541 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
542 |
iUploader->TrackProgress( (TAny*)key, ETrue ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
543 |
iProgressTrackingEnabled = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
544 |
aMessage.Complete( KErrNone ); |
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 |
else |
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 |
aMessage.Complete( KErrNotFound ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
549 |
} |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
552 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
553 |
// CUPnPUploadSession::StopTrackingUploadProgressL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
554 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
555 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
556 |
void CUPnPUploadSession::StopTrackingUploadProgressL( const RMessage2& |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
557 |
aMessage ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
558 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
559 |
__LOG( "CUPnPUploadSession::StopTrackingUploadProgressL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
560 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
561 |
TInt key = aMessage.Int1(); |
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( CheckIfKeyExists( key ) ) |
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 |
iUploader->TrackProgress( (TAny*)key, EFalse ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
565 |
iProgressTrackingEnabled = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
566 |
aMessage.Complete( KErrNone ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
567 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
568 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
569 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
570 |
aMessage.Complete( KErrNotFound ); |
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 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
575 |
// CUPnPUploadSession::GetUploadEventL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
576 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
577 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
578 |
void CUPnPUploadSession::GetUploadEventL( const RMessage2& aMessage ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
579 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
580 |
__LOG( "CUPnPUploadSession::GetUploadEventL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
581 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
582 |
if( iEventQueu.Count() ) |
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 |
// There are events in the queu, write the first queued event back |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
585 |
// to client |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
586 |
__LOG1( "GetUploadEventL - events in queu, count = %d", |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
587 |
iEventQueu.Count() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
588 |
TPckg<TUpnpFileTransferEvent> resp1( iEventQueu[0] ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
589 |
aMessage.Write( 1, resp1 ); // Write response using slot 1 |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
590 |
aMessage.Complete( KErrNone ); |
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 |
iEventQueu.Remove( 0 ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
593 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
594 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
595 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
596 |
__ASSERTD( !iEventMsg, __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
|
597 |
__LOG( "GetUploadEventL - Store msg" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
598 |
iEventMsg = new (ELeave) RMessage2( aMessage ); |
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 |
__LOG( "CUPnPUploadSession::GetUploadEventL - end" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
601 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
602 |
|
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 |
// CUPnPUploadSession::CancelGetUploadEventL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
605 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::CancelGetUploadEventL( const RMessage2& aMessage ) |
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 |
__LOG( "CUPnPUploadSession::CancelGetUploadEventL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
610 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
611 |
if( iEventMsg ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
612 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
613 |
iEventMsg->Complete( KErrCancel ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
614 |
delete iEventMsg; iEventMsg = NULL; |
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 |
aMessage.Complete( KErrNone ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
617 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
620 |
// CUPnPUploadSession::DeviceDisappearedL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
621 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::DeviceDisappearedL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
624 |
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
|
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 |
__LOG( "CUPnPUploadSession::DeviceDisappearedL" ); |
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 |
if( aDevice.Uuid().Compare( iDevice->Uuid() ) == 0 ) |
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 |
TUpnpFileTransferEvent event; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
631 |
event.iEvent = TUpnpFileTransferEvent::EDeviceDisconnected; |
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 |
Complete( event ); |
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 |
} |
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 |
// CUPnPUploadSession::SetHeadersL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
639 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
640 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
641 |
void CUPnPUploadSession::SetHeadersL( const TDesC8& aInfo, TAny* aKey ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
642 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
643 |
CUpnpDlnaProtocolInfo* 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
|
644 |
CleanupStack::PushL( tmpInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
645 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
646 |
// Set the content-type header |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
647 |
iUploader->SetHeaderL( aKey, KContentType, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
648 |
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
|
649 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
650 |
// Set the expect header |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
651 |
iUploader->SetHeaderL( aKey, KExpectHeader, K100Continue ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
652 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
653 |
CleanupStack::PopAndDestroy( tmpInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
654 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
657 |
// CUPnPUploadSession::ReadyForTransferL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
658 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
659 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
660 |
void CUPnPUploadSession::ReadyForTransferL( TUpnpFileTransferEvent& aEvent ) |
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 |
__LOG( "CUPnPUploadSession::ReadyForTransferL" ); |
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 |
if ( !iSchedulerStopped || iWait.IsStarted() ) |
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 |
__LOG1( "CUPnPUploadSession::ReadyForTransferL\ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
667 |
IsStarted = %d", (TInt)iWait.IsStarted() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
668 |
__LOG1( "CUPnPUploadSession::ReadyForTransferL\ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
669 |
iSchedulerStopped = %d", (TInt)iSchedulerStopped ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
670 |
User::Leave( KErrNotReady ); |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
673 |
__ASSERTD( iTransferItems.Count() == iResources.Count(), __FILE__, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
674 |
__LINE__ ); |
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 |
CUpnpItem* tmpUpnpItem = iResources[ iResourceIndex ]->Item(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
677 |
if( !tmpUpnpItem ) |
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 |
User::Leave( KErrCorrupt ); |
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 |
HBufC8* xmlDoc = CUPnPXMLParser::XmlForCreateObjectLC( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
683 |
*tmpUpnpItem ); |
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 |
iIPSessionId = CreateObjectL( KContainerIdAny, *xmlDoc ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
686 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
687 |
// Register |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
688 |
iServer.Dispatcher().RegisterL( iIPSessionId, *this ); |
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 |
CleanupStack::PopAndDestroy( xmlDoc ); |
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 |
iWait.Start(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
693 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
694 |
__LOG1( "CUPnPUploadSession::ReadyForTransferL\ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
695 |
iAsyncError = %d", iAsyncError ); |
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 |
User::LeaveIfError( iAsyncError ); |
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 |
const CUpnpElement& resEl = UPnPItemUtility::FindElementByNameL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
700 |
*iResources[ iResourceIndex ]->Item(), KElementRes ); |
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 |
const CUpnpAttribute* pInfo = UPnPItemUtility::FindAttributeByName( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
703 |
resEl, KAttributeProtocolInfo ); |
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 |
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
|
706 |
pInfo->Value() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
707 |
CleanupStack::PushL( tmpInfo ); |
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 |
// Set DLNA specific headers |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
710 |
if( tmpInfo->PnParameter().Length() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
711 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
712 |
// DLNA content, set the content-features header |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
713 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KContentFeatures, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
714 |
tmpInfo->FourthField() ); |
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 |
// Check if background mode is available and use it if it is |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
717 |
if( tmpInfo->DlnaFlag( UpnpDlnaProtocolInfo::TM_B_FLAG ) ) |
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 |
__LOG( "ReadyForTransferL - Use background mode" ); |
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 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KTransferMode, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
722 |
KBackgroundMode ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
723 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
724 |
else |
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 |
// Background is not available for some reason. |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
727 |
// Check if media specific transfer mode 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
|
728 |
if( UPnPCommonUtils::IsImageSupported( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
729 |
tmpInfo->ProtocolInfoL() ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
730 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
731 |
// Uploading image, alternative for background is interactive |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
732 |
if( tmpInfo->DlnaFlag( UpnpDlnaProtocolInfo::TM_I_FLAG ) ) |
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 |
__LOG( "ReadyForTransferL - Use interactive mode" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
735 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KTransferMode, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
736 |
KInteractiveMode ); |
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 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
739 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
740 |
// Target DMS does not support appropriate transfer mode |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
741 |
__LOG( "ReadyForTransferL - No appropriate mode" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
742 |
// Still, give a try and use background |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
743 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KTransferMode, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
744 |
KBackgroundMode ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
745 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
746 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
747 |
else if( UPnPCommonUtils::IsAudioSupported( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
748 |
tmpInfo->ProtocolInfoL() ) || |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
749 |
UPnPCommonUtils::IsVideoSupported( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
750 |
tmpInfo->ProtocolInfoL() ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
751 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
752 |
// Uploading A/V, alternative for background is streaming |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
753 |
if( tmpInfo->DlnaFlag( UpnpDlnaProtocolInfo::TM_S_FLAG ) ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
754 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
755 |
__LOG( "ReadyForTransferL - Use streaming mode" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
756 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KTransferMode, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
757 |
KStreamingMode ); |
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 |
else |
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 |
// Target DMS does not support appropriate transfer mode |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
762 |
__LOG( "ReadyForTransferL - No appropriate mode" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
763 |
// Still, give a try and use background |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
764 |
iUploader->SetHeaderL( (TAny*)aEvent.iKey, KTransferMode, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
765 |
KBackgroundMode ); |
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 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
769 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
770 |
__LOG( "ReadyForTransferL - Unknown media type" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
771 |
} |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
775 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
776 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
777 |
CleanupStack::PopAndDestroy( tmpInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
778 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
779 |
iUploader->SetPropertyL( (TAny*)aEvent.iKey, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
780 |
CHttpTransferBase::ETargetURI, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
781 |
*iResources[ iResourceIndex ]->Resource() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
782 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
783 |
iUploader->StartTransferL( (TAny*)aEvent.iKey ); |
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 |
__LOG( "CUPnPUploadSession::ReadyForTransferL - end" ); |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
788 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
789 |
// CUPnPUploadSession::ParseCreateObjectResponseL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
790 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::HandleObjectResponseL( const TDesC8& aObjectID, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
793 |
const TDesC8& aResult ) |
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 |
__LOG( "CUPnPUploadSession::HandleObjectResponseL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
796 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
797 |
HBufC8* importUri = ParseCreateObjectResponseL( aResult ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
798 |
CleanupStack::PushL( importUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
799 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
800 |
HBufC8* tmpUri = UpnpString::EncodeXmlStringL( importUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
801 |
CleanupStack::PopAndDestroy( importUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
802 |
CleanupStack::PushL( tmpUri ); |
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 |
HBufC* tmpUri16 = UpnpString::ToUnicodeL( *tmpUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
805 |
CleanupStack::PopAndDestroy( tmpUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
806 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
807 |
iResources[ iResourceIndex ]->SetResource( tmpUri16 ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
808 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
809 |
HBufC8* tmpID = aObjectID.AllocL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
810 |
iResources[ iResourceIndex ]->SetItemId( tmpID ); |
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 |
// CUPnPUploadSession::ParseCreateObjectResponseL |
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 upnpbrowsingsession.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 |
HBufC8* CUPnPUploadSession::ParseCreateObjectResponseL( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
818 |
const TDesC8& aResponse ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
819 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
820 |
__LOG( "CUPnPUploadSession::ParseCreateObjectResponseL" ); |
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 |
HBufC8* importURI = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
823 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
824 |
CUPnPXMLParser* parser = CUPnPXMLParser::NewL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
825 |
CleanupStack::PushL( parser ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
826 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
827 |
RPointerArray<CUpnpObject> array; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
828 |
CleanupResetAndDestroyPushL( array ); |
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 |
parser->ParseResultDataL( array, aResponse ); |
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 |
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
|
833 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
834 |
// Lets find the first item with an import URI and use that |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
835 |
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
|
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 |
importURI = ImportURIFromItemL( *array[ i ] ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
838 |
if( importURI ) |
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 |
// Transfer ownership, casting is safe |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
841 |
// (array[ 0 ]->ObjectType() == EUPnPItem) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
842 |
CUpnpItem* item = static_cast<CUpnpItem*>( array[ i ] ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
843 |
iResources[ iResourceIndex ]->SetItem( item ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
844 |
array.Remove( i ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
845 |
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
|
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 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
848 |
if( !importURI ) // no suitable items, leave |
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 |
User::Leave( KErrGeneral ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
851 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
852 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
853 |
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
|
854 |
CleanupStack::PopAndDestroy( parser ); |
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 |
if( !UpnpCdsResElementUtility::IsUriAbsolute( *importURI ) ) |
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 |
// Import uri is not absolute, upload not supported. leave. |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
859 |
delete importURI; importURI = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
860 |
User::Leave( KErrGeneral ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
861 |
} |
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 |
return importURI; |
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 |
|
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 |
// CUPnPUploadSession::ImportURIFromItemL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
868 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
869 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
870 |
HBufC8* CUPnPUploadSession::ImportURIFromItemL( const CUpnpObject& aObject ) |
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 |
HBufC8* importURI = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
873 |
if( aObject.ObjectType() == EUPnPItem ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
874 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
875 |
// Get the res-elements |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
876 |
RUPnPElementsArray elArray; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
877 |
CleanupClosePushL( elArray ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
878 |
UPnPItemUtility::GetResElements( aObject, elArray ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
879 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
880 |
// Find the import uri |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
881 |
TInt count = elArray.Count(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
882 |
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
|
883 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
884 |
const CUpnpAttribute* attribute = NULL; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
885 |
attribute = &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
|
886 |
*elArray[ i ], KImportUri ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
887 |
if( attribute ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
888 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
889 |
// import uri found |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
890 |
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
|
891 |
importURI = attribute->Value().AllocL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
892 |
} |
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 |
CleanupStack::PopAndDestroy( &elArray ); |
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 |
return importURI; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
897 |
} |
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 |
// -------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
900 |
// CUPnPUploadSession::ProtocolInfoToUPnPL |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
901 |
// See upnpbrowsingsession.h |
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 |
void CUPnPUploadSession::ProtocolInfoToUPnPL( const CUpnpAttribute* aInfo ) |
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 |
__LOG( "CUPnPUploadSession::ProtocolInfoToUPnPL" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
906 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
907 |
CUpnpDlnaProtocolInfo* destInfo = |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
908 |
CUpnpDlnaProtocolInfo::NewL( aInfo->Value() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
909 |
CleanupStack::PushL( destInfo ); |
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 |
if( destInfo->PnParameter().Length() ) |
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 |
__LOG( "ProtocolInfoToUPnPL - Convert to UPnP" ); |
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 |
CUpnpProtocolInfo* targetInfo = CUpnpProtocolInfo::NewL(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
916 |
CleanupStack::PushL( targetInfo ); |
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 |
targetInfo->SetFirstFieldL( destInfo->FirstField() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
919 |
targetInfo->SetSecondFieldL( KAsterisk ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
920 |
targetInfo->SetThirdFieldL( destInfo->ThirdField() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
921 |
targetInfo->SetFourthFieldL( KAsterisk ); |
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 |
// A bit dirty const cast.. but makes implementation much easier |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
924 |
CUpnpAttribute* bute = const_cast<CUpnpAttribute*>( aInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
925 |
bute->SetValueL( targetInfo->ProtocolInfoL() ); |
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 |
CleanupStack::PopAndDestroy( targetInfo ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
928 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
929 |
else |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
930 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
931 |
__LOG( "ProtocolInfoToUPnPL - UPnP content -> do nothing" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
932 |
// Not DLNA content, do nothing |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
935 |
CleanupStack::PopAndDestroy( destInfo ); |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
938 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
939 |
// CUPnPUploadSession::StopWait() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
940 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
941 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
942 |
// |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
943 |
void CUPnPUploadSession::StopWait() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
944 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
945 |
__LOG( "ProtocolInfoToUPnPL::StopWait" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
946 |
if ( iWait.IsStarted() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
947 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
948 |
if ( iWait.CanStopNow() ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
949 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
950 |
__LOG( "ProtocolInfoToUPnPL::StopWait - stop" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
951 |
iWait.AsyncStop(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
952 |
iSchedulerStopped = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
953 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
954 |
else |
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 |
__LOG( "CUPnPUploadSession::StopWait\ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
957 |
- not able to stop now, use callback" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
958 |
iSchedulerStopped = EFalse; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
959 |
iWait.AsyncStop( TCallBack( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
960 |
SchedulerStoppedCallBack, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
961 |
this ) ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
962 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
963 |
} |
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 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
966 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
967 |
// CUPnPUploadSession::SchedulerStoppedCallBack() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
968 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
969 |
//--------------------------------------------------------------------------- |
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 |
TInt CUPnPUploadSession::SchedulerStoppedCallBack( TAny* aPtr ) |
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 |
CUPnPUploadSession* self = |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
974 |
static_cast<CUPnPUploadSession*>( aPtr ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
975 |
self->DoSchedulerStoppedCallBack(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
976 |
return 0; |
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 |
|
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 |
// CUPnPUploadSession::DoSchedulerStoppedCallBack() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
981 |
// See upnpbrowsingsession.h |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
982 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
983 |
// |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
984 |
void CUPnPUploadSession::DoSchedulerStoppedCallBack() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
985 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
986 |
__LOG( "ProtocolInfoToUPnPL::DoSchedulerStoppedCallBack" ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
987 |
iSchedulerStopped = ETrue; |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
988 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
989 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
990 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
991 |
// CUPnPUploadSession::CreateObjectL() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
992 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
993 |
// |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
994 |
int CUPnPUploadSession::CreateObjectL( const TDesC8& aContainerId, |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
995 |
const TDesC8& aElements ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
996 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
997 |
CUpnpAction* action = iServer.ControlPoint().CreateActionLC( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
998 |
iCpDevice, KContentDirectory, KCreateObject ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
999 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1000 |
action->SetArgumentL( KContainerID, aContainerId ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1001 |
action->SetArgumentL( KElements, aElements ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1002 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1003 |
iServer.ControlPoint().SendL( action ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1004 |
CleanupStack::Pop( action ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1005 |
if (action->SessionId() < 0) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1006 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1007 |
User::Leave( action->SessionId() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1008 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1009 |
return action->SessionId(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1010 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1011 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1012 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1013 |
// CUPnPUploadSession::DestroyObjectL() |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1014 |
//--------------------------------------------------------------------------- |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1015 |
// |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1016 |
int CUPnPUploadSession::DestroyObjectL( const TDesC8& aObjectId ) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1017 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1018 |
CUpnpAction* action = iServer.ControlPoint().CreateActionLC( |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1019 |
iCpDevice, KContentDirectory, KDestroyObject ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1020 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1021 |
action->SetArgumentL( KObjectID, aObjectId ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1022 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1023 |
iServer.ControlPoint().SendL( action ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1024 |
CleanupStack::Pop( action ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1025 |
if (action->SessionId() < 0) |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1026 |
{ |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1027 |
User::Leave( action->SessionId() ); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1028 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1029 |
return action->SessionId(); |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1030 |
} |
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1031 |
|
5360b7ddc251
New development branch with e.g. rendering state machine and a simple Qt example application using it.
samhuttu
parents:
32
diff
changeset
|
1032 |
// End of file |