Blame lang/cpp/src/encryptionresult.h

Packit d7e8d0
/*
Packit d7e8d0
  encryptionresult.h - wraps a gpgme sign result
Packit d7e8d0
  Copyright (C) 2004 Klarälvdalens Datakonsult AB
Packit d7e8d0
  2016 Bundesamt für Sicherheit in der Informationstechnik
Packit d7e8d0
  Software engineering by Intevation GmbH
Packit d7e8d0
Packit d7e8d0
  This file is part of GPGME++.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is free software; you can redistribute it and/or
Packit d7e8d0
  modify it under the terms of the GNU Library General Public
Packit d7e8d0
  License as published by the Free Software Foundation; either
Packit d7e8d0
  version 2 of the License, or (at your option) any later version.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is distributed in the hope that it will be useful,
Packit d7e8d0
  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d7e8d0
  GNU Library General Public License for more details.
Packit d7e8d0
Packit d7e8d0
  You should have received a copy of the GNU Library General Public License
Packit d7e8d0
  along with GPGME++; see the file COPYING.LIB.  If not, write to the
Packit d7e8d0
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit d7e8d0
  Boston, MA 02110-1301, USA.
Packit d7e8d0
*/
Packit d7e8d0
Packit d7e8d0
#ifndef __GPGMEPP_ENCRYPTIONRESULT_H__
Packit d7e8d0
#define __GPGMEPP_ENCRYPTIONRESULT_H__
Packit d7e8d0
Packit d7e8d0
#include "gpgmefw.h"
Packit d7e8d0
#include "result.h"
Packit d7e8d0
#include "gpgmepp_export.h"
Packit d7e8d0
Packit d7e8d0
#include <memory>
Packit d7e8d0
Packit d7e8d0
#include <vector>
Packit d7e8d0
#include <iosfwd>
Packit d7e8d0
Packit d7e8d0
namespace GpgME
Packit d7e8d0
{
Packit d7e8d0
Packit d7e8d0
class Error;
Packit d7e8d0
class InvalidRecipient;
Packit d7e8d0
Packit d7e8d0
class GPGMEPP_EXPORT EncryptionResult : public Result
Packit d7e8d0
{
Packit d7e8d0
public:
Packit d7e8d0
    EncryptionResult();
Packit d7e8d0
    EncryptionResult(gpgme_ctx_t ctx, int error);
Packit d7e8d0
    EncryptionResult(gpgme_ctx_t ctx, const Error &error);
Packit d7e8d0
    EncryptionResult(const Error &err;;
Packit d7e8d0
Packit d7e8d0
    const EncryptionResult &operator=(EncryptionResult other)
Packit d7e8d0
    {
Packit d7e8d0
        swap(other);
Packit d7e8d0
        return *this;
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    void swap(EncryptionResult &other)
Packit d7e8d0
    {
Packit d7e8d0
        Result::swap(other);
Packit d7e8d0
        using std::swap;
Packit d7e8d0
        swap(this->d, other.d);
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    bool isNull() const;
Packit d7e8d0
Packit d7e8d0
    unsigned int numInvalidRecipients() const;
Packit d7e8d0
Packit d7e8d0
    InvalidRecipient invalidEncryptionKey(unsigned int index) const;
Packit d7e8d0
    std::vector<InvalidRecipient> invalidEncryptionKeys() const;
Packit d7e8d0
Packit d7e8d0
    class Private;
Packit d7e8d0
private:
Packit d7e8d0
    void init(gpgme_ctx_t ctx);
Packit d7e8d0
    std::shared_ptr<Private> d;
Packit d7e8d0
};
Packit d7e8d0
Packit d7e8d0
GPGMEPP_EXPORT std::ostream &operator<<(std::ostream &os, const EncryptionResult &result);
Packit d7e8d0
Packit d7e8d0
class GPGMEPP_EXPORT InvalidRecipient
Packit d7e8d0
{
Packit d7e8d0
    friend class ::GpgME::EncryptionResult;
Packit d7e8d0
    InvalidRecipient(const std::shared_ptr<EncryptionResult::Private> &parent, unsigned int index);
Packit d7e8d0
public:
Packit d7e8d0
    InvalidRecipient();
Packit d7e8d0
Packit d7e8d0
    const InvalidRecipient &operator=(InvalidRecipient other)
Packit d7e8d0
    {
Packit d7e8d0
        swap(other);
Packit d7e8d0
        return *this;
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    void swap(InvalidRecipient &other)
Packit d7e8d0
    {
Packit d7e8d0
        using std::swap;
Packit d7e8d0
        swap(this->d, other.d);
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    bool isNull() const;
Packit d7e8d0
Packit d7e8d0
    const char *fingerprint() const;
Packit d7e8d0
    Error reason() const;
Packit d7e8d0
Packit d7e8d0
private:
Packit d7e8d0
    std::shared_ptr<EncryptionResult::Private> d;
Packit d7e8d0
    unsigned int idx;
Packit d7e8d0
};
Packit d7e8d0
Packit d7e8d0
GPGMEPP_EXPORT std::ostream &operator<<(std::ostream &os, const InvalidRecipient &recipient);
Packit d7e8d0
Packit d7e8d0
}
Packit d7e8d0
Packit d7e8d0
GPGMEPP_MAKE_STD_SWAP_SPECIALIZATION(EncryptionResult)
Packit d7e8d0
GPGMEPP_MAKE_STD_SWAP_SPECIALIZATION(InvalidRecipient)
Packit d7e8d0
Packit d7e8d0
#endif // __GPGMEPP_ENCRYPTIONRESULT_H__