blob: eac49dd1da40813a50f493eb67048a97f80bd785 [file] [log] [blame]
Zhiyi Zhang91c846b2017-04-12 14:16:31 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventob48bbda2020-07-27 19:41:37 -04002/*
3 * Copyright (c) 2017-2020, Regents of the University of California.
Zhiyi Zhang91c846b2017-04-12 14:16:31 -07004 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
21#ifndef NDNCERT_CA_DETAIL_CA_SQLITE_HPP
22#define NDNCERT_CA_DETAIL_CA_SQLITE_HPP
23
24#include "../ca-module.hpp"
tylerliu8704d032020-06-23 10:18:15 -070025#include "../ca-state.hpp"
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070026
27struct sqlite3;
28
29namespace ndn {
30namespace ndncert {
31
32class CaSqlite : public CaStorage
33{
34public:
35 const static std::string STORAGE_TYPE;
36
37 explicit
38 CaSqlite(const std::string& location = "");
39
40 ~CaSqlite();
41
42public:
43 // certificate request related
tylerliu8704d032020-06-23 10:18:15 -070044 CaState
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070045 getRequest(const std::string& requestId) override;
46
47 void
tylerliu8704d032020-06-23 10:18:15 -070048 addRequest(const CaState& request) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070049
50 void
tylerliu8704d032020-06-23 10:18:15 -070051 updateRequest(const CaState& request) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070052
53 void
54 deleteRequest(const std::string& requestId) override;
55
tylerliu8704d032020-06-23 10:18:15 -070056 std::list<CaState>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070057 listAllRequests() override;
58
tylerliu8704d032020-06-23 10:18:15 -070059 std::list<CaState>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070060 listAllRequests(const Name& caName) override;
61
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070062 // certificate related
Zhiyi Zhangef6b36a2020-09-22 21:20:59 -070063 security::v2::Certificate
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070064 getCertificate(const std::string& certId) override;
65
66 void
Zhiyi Zhangef6b36a2020-09-22 21:20:59 -070067 addCertificate(const std::string& certId, const security::v2::Certificate& cert) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070068
69 void
Zhiyi Zhangef6b36a2020-09-22 21:20:59 -070070 updateCertificate(const std::string& certId, const security::v2::Certificate& cert) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070071
72 void
73 deleteCertificate(const std::string& certId) override;
74
Zhiyi Zhangef6b36a2020-09-22 21:20:59 -070075 std::list<security::v2::Certificate>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070076 listAllIssuedCertificates() override;
77
Zhiyi Zhangef6b36a2020-09-22 21:20:59 -070078 std::list<security::v2::Certificate>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070079 listAllIssuedCertificates(const Name& caName) override;
80
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070081private:
82 sqlite3* m_database;
83};
84
85} // namespace ndncert
86} // namespace ndn
87
88#endif // NDNCERT_CA_DETAIL_CA_SQLITE_HPP