Line data Source code
1 : /*
2 : importresult.cpp - wraps a gpgme import result
3 : Copyright (C) 2004 Klarälvdalens Datakonsult AB
4 :
5 : This file is part of GPGME++.
6 :
7 : GPGME++ is free software; you can redistribute it and/or
8 : modify it under the terms of the GNU Library General Public
9 : License as published by the Free Software Foundation; either
10 : version 2 of the License, or (at your option) any later version.
11 :
12 : GPGME++ is distributed in the hope that it will be useful,
13 : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : GNU Library General Public License for more details.
16 :
17 : You should have received a copy of the GNU Library General Public License
18 : along with GPGME++; see the file COPYING.LIB. If not, write to the
19 : Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 : Boston, MA 02110-1301, USA.
21 : */
22 :
23 :
24 : #include <importresult.h>
25 : #include "result_p.h"
26 :
27 : #include <gpgme.h>
28 : #include <cstdlib>
29 : #include <cstring>
30 :
31 : #include <string.h>
32 :
33 : class GpgME::ImportResult::Private
34 : {
35 : public:
36 0 : Private(const _gpgme_op_import_result &r) : res(r)
37 : {
38 : // copy recursively, using compiler-generated copy ctor.
39 : // We just need to handle the pointers in the structs:
40 0 : for (gpgme_import_status_t is = r.imports ; is ; is = is->next) {
41 0 : gpgme_import_status_t copy = new _gpgme_import_status(*is);
42 0 : copy->fpr = strdup(is->fpr);
43 0 : copy->next = 0;
44 0 : imports.push_back(copy);
45 : }
46 0 : res.imports = 0;
47 0 : }
48 0 : ~Private()
49 0 : {
50 0 : for (std::vector<gpgme_import_status_t>::iterator it = imports.begin() ; it != imports.end() ; ++it) {
51 0 : std::free((*it)->fpr);
52 0 : delete *it; *it = 0;
53 : }
54 0 : }
55 :
56 : _gpgme_op_import_result res;
57 : std::vector<gpgme_import_status_t> imports;
58 : };
59 :
60 0 : GpgME::ImportResult::ImportResult(gpgme_ctx_t ctx, int error)
61 0 : : GpgME::Result(error), d()
62 : {
63 0 : init(ctx);
64 0 : }
65 :
66 0 : GpgME::ImportResult::ImportResult(gpgme_ctx_t ctx, const Error &error)
67 0 : : GpgME::Result(error), d()
68 : {
69 0 : init(ctx);
70 0 : }
71 :
72 0 : void GpgME::ImportResult::init(gpgme_ctx_t ctx)
73 : {
74 0 : if (!ctx) {
75 0 : return;
76 : }
77 0 : gpgme_import_result_t res = gpgme_op_import_result(ctx);
78 0 : if (!res) {
79 0 : return;
80 : }
81 0 : d.reset(new Private(*res));
82 : }
83 :
84 0 : make_standard_stuff(ImportResult)
85 :
86 0 : int GpgME::ImportResult::numConsidered() const
87 : {
88 0 : return d ? d->res.considered : 0 ;
89 : }
90 :
91 0 : int GpgME::ImportResult::numKeysWithoutUserID() const
92 : {
93 0 : return d ? d->res.no_user_id : 0 ;
94 : }
95 :
96 0 : int GpgME::ImportResult::numImported() const
97 : {
98 0 : return d ? d->res.imported : 0 ;
99 : }
100 :
101 0 : int GpgME::ImportResult::numRSAImported() const
102 : {
103 0 : return d ? d->res.imported_rsa : 0 ;
104 : }
105 :
106 0 : int GpgME::ImportResult::numUnchanged() const
107 : {
108 0 : return d ? d->res.unchanged : 0 ;
109 : }
110 :
111 0 : int GpgME::ImportResult::newUserIDs() const
112 : {
113 0 : return d ? d->res.new_user_ids : 0 ;
114 : }
115 :
116 0 : int GpgME::ImportResult::newSubkeys() const
117 : {
118 0 : return d ? d->res.new_sub_keys : 0 ;
119 : }
120 :
121 0 : int GpgME::ImportResult::newSignatures() const
122 : {
123 0 : return d ? d->res.new_signatures : 0 ;
124 : }
125 :
126 0 : int GpgME::ImportResult::newRevocations() const
127 : {
128 0 : return d ? d->res.new_revocations : 0 ;
129 : }
130 :
131 0 : int GpgME::ImportResult::numSecretKeysConsidered() const
132 : {
133 0 : return d ? d->res.secret_read : 0 ;
134 : }
135 :
136 0 : int GpgME::ImportResult::numSecretKeysImported() const
137 : {
138 0 : return d ? d->res.secret_imported : 0 ;
139 : }
140 :
141 0 : int GpgME::ImportResult::numSecretKeysUnchanged() const
142 : {
143 0 : return d ? d->res.secret_unchanged : 0 ;
144 : }
145 :
146 0 : int GpgME::ImportResult::notImported() const
147 : {
148 0 : return d ? d->res.not_imported : 0 ;
149 : }
150 :
151 0 : GpgME::Import GpgME::ImportResult::import(unsigned int idx) const
152 : {
153 0 : return Import(d, idx);
154 : }
155 :
156 0 : std::vector<GpgME::Import> GpgME::ImportResult::imports() const
157 : {
158 0 : if (!d) {
159 0 : return std::vector<Import>();
160 : }
161 0 : std::vector<Import> result;
162 0 : result.reserve(d->imports.size());
163 0 : for (unsigned int i = 0 ; i < d->imports.size() ; ++i) {
164 0 : result.push_back(Import(d, i));
165 : }
166 0 : return result;
167 : }
168 :
169 0 : GpgME::Import::Import(const std::shared_ptr<ImportResult::Private> &parent, unsigned int i)
170 0 : : d(parent), idx(i)
171 : {
172 :
173 0 : }
174 :
175 0 : GpgME::Import::Import() : d(), idx(0) {}
176 :
177 0 : bool GpgME::Import::isNull() const
178 : {
179 0 : return !d || idx >= d->imports.size() ;
180 : }
181 :
182 0 : const char *GpgME::Import::fingerprint() const
183 : {
184 0 : return isNull() ? 0 : d->imports[idx]->fpr ;
185 : }
186 :
187 0 : GpgME::Error GpgME::Import::error() const
188 : {
189 0 : return Error(isNull() ? 0 : d->imports[idx]->result);
190 : }
191 :
192 0 : GpgME::Import::Status GpgME::Import::status() const
193 : {
194 0 : if (isNull()) {
195 0 : return Unknown;
196 : }
197 0 : const unsigned int s = d->imports[idx]->status;
198 0 : unsigned int result = Unknown;
199 0 : if (s & GPGME_IMPORT_NEW) {
200 0 : result |= NewKey;
201 : }
202 0 : if (s & GPGME_IMPORT_UID) {
203 0 : result |= NewUserIDs;
204 : }
205 0 : if (s & GPGME_IMPORT_SIG) {
206 0 : result |= NewSignatures;
207 : }
208 0 : if (s & GPGME_IMPORT_SUBKEY) {
209 0 : result |= NewSubkeys;
210 : }
211 0 : if (s & GPGME_IMPORT_SECRET) {
212 0 : result |= ContainedSecretKey;
213 : }
214 0 : return static_cast<Status>(result);
215 : }
|