Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35336714
signemailcontroller.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
10 KB
Subscribers
None
signemailcontroller.cpp
View Options
/* -*- mode: c++; c-basic-offset:4 -*-
crypto/signemailcontroller.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2007 Klarälvdalens Datakonsult AB
Kleopatra is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Kleopatra is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include
<config-kleopatra.h>
#include
"signemailcontroller.h"
#include
"signemailtask.h"
#include
"certificateresolver.h"
#include
"taskcollection.h"
#include
<crypto/gui/signemailwizard.h>
#include
<utils/input.h>
#include
<utils/output.h>
#include
<utils/stl_util.h>
#include
<utils/kleo_assert.h>
#include
"kleopatraprefs.h"
#include
<kmime/kmime_header_parsing.h>
#include
<KLocale>
#include
<QPointer>
#include
<QTimer>
#include
<boost/bind.hpp>
#include
<boost/shared_ptr.hpp>
using
namespace
Kleo
;
using
namespace
Kleo
::
Crypto
;
using
namespace
Kleo
::
Crypto
::
Gui
;
using
namespace
boost
;
using
namespace
GpgME
;
using
namespace
KMime
::
Types
;
class
SignEMailController
::
Private
{
friend
class
::
Kleo
::
Crypto
::
SignEMailController
;
SignEMailController
*
const
q
;
public
:
explicit
Private
(
Mode
m
,
SignEMailController
*
qq
);
~
Private
();
private
:
void
slotWizardSignersResolved
();
void
slotWizardCanceled
();
// ### extract to base
void
slotTaskDone
();
// ### extract to base
private
:
void
ensureWizardCreated
();
// ### extract to base
void
ensureWizardVisible
();
// ### extract to base
void
cancelAllJobs
();
// ### extract to base
void
schedule
();
// ### extract to base
shared_ptr
<
SignEMailTask
>
takeRunnable
(
GpgME
::
Protocol
proto
);
// ### extract to base
private
:
const
Mode
mode
;
std
::
vector
<
shared_ptr
<
SignEMailTask
>
>
runnable
,
completed
;
// ### extract to base
shared_ptr
<
SignEMailTask
>
cms
,
openpgp
;
// ### extract to base
QPointer
<
SignEMailWizard
>
wizard
;
// ### extract to base
Protocol
protocol
;
// ### extract to base
bool
detached
:
1
;
};
SignEMailController
::
Private
::
Private
(
Mode
m
,
SignEMailController
*
qq
)
:
q
(
qq
),
mode
(
m
),
runnable
(),
cms
(),
openpgp
(),
wizard
(),
protocol
(
UnknownProtocol
),
detached
(
false
)
{
}
SignEMailController
::
Private
::~
Private
()
{}
SignEMailController
::
SignEMailController
(
Mode
mode
,
QObject
*
p
)
:
Controller
(
p
),
d
(
new
Private
(
mode
,
this
)
)
{
}
SignEMailController
::
SignEMailController
(
const
boost
::
shared_ptr
<
ExecutionContext
>
&
xc
,
Mode
mode
,
QObject
*
p
)
:
Controller
(
xc
,
p
),
d
(
new
Private
(
mode
,
this
)
)
{
}
SignEMailController
::~
SignEMailController
()
{
/// ### extract to base
if
(
d
->
wizard
&&
!
d
->
wizard
->
isVisible
()
)
delete
d
->
wizard
;
//d->wizard->close(); ### ?
}
SignEMailController
::
Mode
SignEMailController
::
mode
()
const
{
return
d
->
mode
;
}
// ### extract to base
void
SignEMailController
::
setProtocol
(
Protocol
proto
)
{
kleo_assert
(
d
->
protocol
==
UnknownProtocol
||
d
->
protocol
==
proto
);
d
->
protocol
=
proto
;
d
->
ensureWizardCreated
();
d
->
wizard
->
setPresetProtocol
(
proto
);
}
Protocol
SignEMailController
::
protocol
()
const
{
return
d
->
protocol
;
}
void
SignEMailController
::
startResolveSigners
()
{
startResolveSigners
(
std
::
vector
<
Mailbox
>
()
);
}
void
SignEMailController
::
startResolveSigners
(
const
std
::
vector
<
Mailbox
>
&
signers
)
{
const
std
::
vector
<
std
::
vector
<
Key
>
>
keys
=
CertificateResolver
::
resolveSigners
(
signers
,
d
->
protocol
);
if
(
!
signers
.
empty
()
)
kleo_assert
(
keys
.
size
()
==
static_cast
<
size_t
>
(
signers
.
size
()
)
);
d
->
ensureWizardCreated
();
d
->
wizard
->
setSignersAndCandidates
(
signers
,
keys
);
d
->
ensureWizardVisible
();
}
void
SignEMailController
::
setDetachedSignature
(
bool
detached
)
{
kleo_assert
(
!
d
->
openpgp
);
kleo_assert
(
!
d
->
cms
);
kleo_assert
(
d
->
completed
.
empty
()
);
kleo_assert
(
d
->
runnable
.
empty
()
);
d
->
detached
=
detached
;
}
void
SignEMailController
::
Private
::
slotWizardSignersResolved
()
{
emit
q
->
signersResolved
();
}
// ### extract to base
void
SignEMailController
::
Private
::
slotWizardCanceled
()
{
emit
q
->
error
(
gpg_error
(
GPG_ERR_CANCELED
),
i18n
(
"User cancel"
)
);
}
void
SignEMailController
::
setInputAndOutput
(
const
shared_ptr
<
Input
>
&
input
,
const
shared_ptr
<
Output
>
&
output
)
{
setInputsAndOutputs
(
std
::
vector
<
shared_ptr
<
Input
>
>
(
1
,
input
),
std
::
vector
<
shared_ptr
<
Output
>
>
(
1
,
output
)
);
}
// ### extract to base
void
SignEMailController
::
setInputsAndOutputs
(
const
std
::
vector
<
shared_ptr
<
Input
>
>
&
inputs
,
const
std
::
vector
<
shared_ptr
<
Output
>
>
&
outputs
)
{
kleo_assert
(
!
inputs
.
empty
()
);
kleo_assert
(
!
outputs
.
empty
()
);
std
::
vector
<
shared_ptr
<
SignEMailTask
>
>
tasks
;
tasks
.
reserve
(
inputs
.
size
()
);
d
->
ensureWizardCreated
();
const
std
::
vector
<
Key
>
keys
=
d
->
wizard
->
resolvedSigners
();
kleo_assert
(
!
keys
.
empty
()
);
for
(
unsigned
int
i
=
0
,
end
=
inputs
.
size
()
;
i
<
end
;
++
i
)
{
const
shared_ptr
<
SignEMailTask
>
task
(
new
SignEMailTask
);
task
->
setInput
(
inputs
[
i
]
);
task
->
setOutput
(
outputs
[
i
]
);
task
->
setSigners
(
keys
);
task
->
setDetachedSignature
(
d
->
detached
);
if
(
d
->
mode
==
ClipboardMode
)
if
(
d
->
protocol
==
OpenPGP
)
task
->
setClearsign
(
true
);
else
task
->
setAsciiArmor
(
true
);
tasks
.
push_back
(
task
);
}
d
->
runnable
.
swap
(
tasks
);
}
// ### extract to base
void
SignEMailController
::
start
()
{
shared_ptr
<
TaskCollection
>
coll
(
new
TaskCollection
);
std
::
vector
<
shared_ptr
<
Task
>
>
tmp
;
std
::
copy
(
d
->
runnable
.
begin
(),
d
->
runnable
.
end
(),
std
::
back_inserter
(
tmp
)
);
coll
->
setTasks
(
tmp
);
d
->
ensureWizardCreated
();
d
->
wizard
->
setTaskCollection
(
coll
);
Q_FOREACH
(
const
shared_ptr
<
Task
>
&
t
,
tmp
)
connect
(
t
.
get
(),
SIGNAL
(
result
(
boost
::
shared_ptr
<
const
Kleo
::
Crypto
::
Task
::
Result
>
)),
this
,
SLOT
(
slotTaskDone
())
);
d
->
schedule
();
}
// ### extract to base
void
SignEMailController
::
Private
::
schedule
()
{
if
(
!
cms
)
if
(
const
shared_ptr
<
SignEMailTask
>
t
=
takeRunnable
(
CMS
)
)
{
t
->
start
();
cms
=
t
;
}
if
(
!
openpgp
)
if
(
const
shared_ptr
<
SignEMailTask
>
t
=
takeRunnable
(
OpenPGP
)
)
{
t
->
start
();
openpgp
=
t
;
}
if
(
!
cms
&&
!
openpgp
)
{
kleo_assert
(
runnable
.
empty
()
);
QPointer
<
QObject
>
Q
=
q
;
Q_FOREACH
(
const
shared_ptr
<
SignEMailTask
>
t
,
completed
)
{
emit
q
->
reportMicAlg
(
t
->
micAlg
()
);
if
(
!
Q
)
return
;
}
emit
q
->
done
();
}
}
// ### extract to base
shared_ptr
<
SignEMailTask
>
SignEMailController
::
Private
::
takeRunnable
(
GpgME
::
Protocol
proto
)
{
const
std
::
vector
<
shared_ptr
<
SignEMailTask
>
>::
iterator
it
=
std
::
find_if
(
runnable
.
begin
(),
runnable
.
end
(),
bind
(
&
Task
::
protocol
,
_1
)
==
proto
);
if
(
it
==
runnable
.
end
()
)
return
shared_ptr
<
SignEMailTask
>
();
const
shared_ptr
<
SignEMailTask
>
result
=
*
it
;
runnable
.
erase
(
it
);
return
result
;
}
// ### extract to base
void
SignEMailController
::
Private
::
slotTaskDone
()
{
assert
(
q
->
sender
()
);
// We could just delete the tasks here, but we can't use
// Qt::QueuedConnection here (we need sender()) and other slots
// might not yet have executed. Therefore, we push completed tasks
// into a burial container
if
(
q
->
sender
()
==
cms
.
get
()
)
{
completed
.
push_back
(
cms
);
cms
.
reset
();
}
else
if
(
q
->
sender
()
==
openpgp
.
get
()
)
{
completed
.
push_back
(
openpgp
);
openpgp
.
reset
();
}
QTimer
::
singleShot
(
0
,
q
,
SLOT
(
schedule
())
);
}
// ### extract to base
void
SignEMailController
::
cancel
()
{
try
{
if
(
d
->
wizard
)
d
->
wizard
->
close
();
d
->
cancelAllJobs
();
}
catch
(
const
std
::
exception
&
e
)
{
qDebug
(
"Caught exception: %s"
,
e
.
what
()
);
}
}
// ### extract to base
void
SignEMailController
::
Private
::
cancelAllJobs
()
{
// we just kill all runnable tasks - this will not result in
// signal emissions.
runnable
.
clear
();
// a cancel() will result in a call to
if
(
cms
)
cms
->
cancel
();
if
(
openpgp
)
openpgp
->
cancel
();
}
// ### extract to base
void
SignEMailController
::
Private
::
ensureWizardCreated
()
{
if
(
wizard
)
return
;
std
::
auto_ptr
<
SignEMailWizard
>
w
(
new
SignEMailWizard
);
w
->
setAttribute
(
Qt
::
WA_DeleteOnClose
);
connect
(
w
.
get
(),
SIGNAL
(
signersResolved
()),
q
,
SLOT
(
slotWizardSignersResolved
()),
Qt
::
QueuedConnection
);
connect
(
w
.
get
(),
SIGNAL
(
canceled
()),
q
,
SLOT
(
slotWizardCanceled
()),
Qt
::
QueuedConnection
);
w
->
setPresetProtocol
(
protocol
);
Kleo
::
Preferences
prefs
;
w
->
setQuickMode
(
prefs
.
quickSignEMail
()
);
wizard
=
w
.
release
();
}
// ### extract to base
void
SignEMailController
::
Private
::
ensureWizardVisible
()
{
ensureWizardCreated
();
q
->
bringToForeground
(
wizard
);
}
#include
"moc_signemailcontroller.cpp"
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Fri, Feb 6, 8:07 AM (1 h, 13 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b6/e0/36a64ed340ea83542e96e6b58b26
Attached To
rKLEOPATRA Kleopatra
Event Timeline
Log In to Comment