blob: 9b09e1aeed6e7900cc797be4a743bad304c34682 [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"
25#include "../certificate-request.hpp"
26
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
44 CertificateRequest
45 getRequest(const std::string& requestId) override;
46
47 void
48 addRequest(const CertificateRequest& request) override;
49
50 void
51 updateRequest(const CertificateRequest& request) override;
52
53 void
54 deleteRequest(const std::string& requestId) override;
55
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070056 std::list<CertificateRequest>
57 listAllRequests() override;
58
59 std::list<CertificateRequest>
60 listAllRequests(const Name& caName) override;
61
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070062 // certificate related
Davide Pesaventob48bbda2020-07-27 19:41:37 -040063 security::Certificate
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070064 getCertificate(const std::string& certId) override;
65
66 void
Davide Pesaventob48bbda2020-07-27 19:41:37 -040067 addCertificate(const std::string& certId, const security::Certificate& cert) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070068
69 void
Davide Pesaventob48bbda2020-07-27 19:41:37 -040070 updateCertificate(const std::string& certId, const security::Certificate& cert) override;
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070071
72 void
73 deleteCertificate(const std::string& certId) override;
74
Davide Pesaventob48bbda2020-07-27 19:41:37 -040075 std::list<security::Certificate>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070076 listAllIssuedCertificates() override;
77
Davide Pesaventob48bbda2020-07-27 19:41:37 -040078 std::list<security::Certificate>
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070079 listAllIssuedCertificates(const Name& caName) override;
80
81PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Zhiyi Zhang91c846b2017-04-12 14:16:31 -070082 static std::string
83 convertJson2String(const JsonSection& json);
84
85 static JsonSection
86 convertString2Json(const std::string& jsonContent);
87
88private:
89 sqlite3* m_database;
90};
91
92} // namespace ndncert
93} // namespace ndn
94
95#endif // NDNCERT_CA_DETAIL_CA_SQLITE_HPP