blob: 3275c4052bb5ff586f6a7af04f3fe58161528773 [file] [log] [blame]
Yingdi Yuede8eaf2013-10-14 14:07:03 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
11#ifndef LINKNDN_CONTACT_STORAGE_H
12#define LINKNDN_CONTACT_STORAGE_H
13
14#include <sqlite3.h>
15#include "trusted-contact.h"
16#include "contact-item.h"
Yingdi Yu68aced92013-10-17 21:13:03 -070017#include "endorse-certificate.h"
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070018#include <ndn.cxx/security/identity/identity-manager.h>
19#include <ndn.cxx/fields/signature-sha256-with-rsa.h>
Yingdi Yuede8eaf2013-10-14 14:07:03 -070020
Yingdi Yuaa8d7692013-10-18 17:05:02 -070021
Yingdi Yuede8eaf2013-10-14 14:07:03 -070022class ContactStorage
23{
Yingdi Yuaa8d7692013-10-18 17:05:02 -070024
Yingdi Yuede8eaf2013-10-14 14:07:03 -070025public:
Yingdi Yuaa8d7692013-10-18 17:05:02 -070026 ContactStorage();
Yingdi Yuede8eaf2013-10-14 14:07:03 -070027
Yingdi Yuaa8d7692013-10-18 17:05:02 -070028 ~ContactStorage()
29 {sqlite3_close(m_db);}
Yingdi Yuede8eaf2013-10-14 14:07:03 -070030
31 void
Yingdi Yu49eea9f2013-10-17 15:07:17 -070032 setSelfProfileEntry(const ndn::Name& identity, const std::string& profileType, const ndn::Blob& profileValue);
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070033
34 ndn::Ptr<Profile>
Yingdi Yu49eea9f2013-10-17 15:07:17 -070035 getSelfProfile(const ndn::Name& identity);
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070036
37 void
Yingdi Yuede8eaf2013-10-14 14:07:03 -070038 addTrustedContact(const TrustedContact& trustedContact);
39
40 void
41 addNormalContact(const ContactItem& contactItem);
42
43 std::vector<ndn::Ptr<TrustedContact> >
44 getAllTrustedContacts() const;
45
46 std::vector<ndn::Ptr<ContactItem> >
47 getAllNormalContacts() const;
Yingdi Yuaa8d7692013-10-18 17:05:02 -070048
49 ndn::Ptr<Profile>
50 getSelfProfile(const ndn::Name& identity) const;
51
52 ndn::Ptr<ndn::Blob>
53 getSelfEndorseCertificate(const ndn::Name& identity);
Yingdi Yuede8eaf2013-10-14 14:07:03 -070054
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070055 void
Yingdi Yuaa8d7692013-10-18 17:05:02 -070056 updateSelfEndorseCertificate(ndn::Ptr<EndorseCertificate> endorseCertificate, const ndn::Name& identity);
57
58 void
59 addSelfEndorseCertificate(ndn::Ptr<EndorseCertificate> endorseCertificate, const ndn::Name& identity);
Yingdi Yuc26af3c2013-10-17 17:03:46 -070060
Yingdi Yuede8eaf2013-10-14 14:07:03 -070061private:
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070062 bool
Yingdi Yu49eea9f2013-10-17 15:07:17 -070063 doesSelfEntryExist(const ndn::Name& identity, const std::string& profileType);
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070064
Yingdi Yuede8eaf2013-10-14 14:07:03 -070065 inline bool
66 doesTrustedContactExist(const ndn::Name& name)
67 { return doesContactExist(name, false); }
68
69 inline bool
70 doesNormalContactExist(const ndn::Name& name)
71 { return doesContactExist(name, true); }
72
73 bool
74 doesContactExist(const ndn::Name& name, bool normal);
Yingdi Yu0a6b6c52013-10-15 17:54:00 -070075
Yingdi Yuede8eaf2013-10-14 14:07:03 -070076private:
Yingdi Yuede8eaf2013-10-14 14:07:03 -070077 sqlite3 *m_db;
78};
79
80#endif