aboutsummaryrefslogtreecommitdiff
path: root/include/CommandFailedException.h
blob: 417e850325e16f504363b86db705d51d28122e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// Created by sz on 23.07.16.
//

#ifndef LIBNITROKEY_COMMANDFAILEDEXCEPTION_H
#define LIBNITROKEY_COMMANDFAILEDEXCEPTION_H

#include <exception>
#include <cstdint>
#include "log.h"
#include "command_id.h"

using cs = nitrokey::proto::stick10::command_status;

class CommandFailedException : public std::exception {
public:
    const uint8_t last_command_id;
    const uint8_t last_command_status;

    CommandFailedException(uint8_t last_command_id, uint8_t last_command_status) :
        last_command_id(last_command_id),
            last_command_status(last_command_status){
      LOG(std::string("CommandFailedException, status: ")+ std::to_string(last_command_status), nitrokey::log::Loglevel::DEBUG);
    }

    virtual const char *what() const throw() {
        return "Command execution has failed on device";
    }


    bool reason_timestamp_warning() const throw(){
      return last_command_status == static_cast<uint8_t>(cs::timestamp_warning);
    }

    bool reason_AES_not_initialized() const throw(){
      return last_command_status == static_cast<uint8_t>(cs::AES_dec_failed);
    }

    bool reason_not_authorized() const throw(){
      return last_command_status == static_cast<uint8_t>(cs::not_authorized);
    }

    bool reason_slot_not_programmed() const throw(){
      return last_command_status == static_cast<uint8_t>(cs::slot_not_programmed);
    }

    bool reason_wrong_password() const throw(){
      return last_command_status == static_cast<uint8_t>(cs::wrong_password);
    }

};


#endif //LIBNITROKEY_COMMANDFAILEDEXCEPTION_H