hwelltech block chain cpp sdk

Dependencies:   EthernetInterface SDFileSystem mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Webb Xu

bcsdk 是 block chain sdk 的简写。它是由江苏恒为信息科技有限公司开发的 BlockChain 的 基于 mbed os 的 C++ 版本SDK,它能帮助开发者快速的在支持 mbed os 的芯片上开发 BlockChain 的应用。 bcsdk 的demo文件中包含了BlockChain中的 Key、Account、Asset、Transaction等方面的示例。其中: (1) Key 加密私钥是区块链上的主要授权机制。他们控制资产单位的发行和转让。 资产或帐户将定义发行或转移所需的单个密钥。 在 Key_test.cpp 中,我们实现了: 创建HSM密钥 键入密钥别名的名称(例如'gold','silver','bronze'),密钥别名是用于区分密钥的标签。

(2) Asset 资产是一种可以在区块链上发布的值类型。资产的所有单位均可互换,可以在各方之间直接交易,无需发行人参与。 在 Asset_test.cpp 中,我们实现了: 创建资产 键入资产别名的名称(例如'gold','silver','bronze'),资产别名是用于区分资产的标签。 选择“Key”键以使用现有的HSM密键,此密钥将用于此帐户中资产单位的发放和转移。

(3) Account 加帐户是恒为区块链核心平台中的一个对象,通过创建和跟踪控制程序来跟踪区块链上的资产的所有权。创建帐户时,您提供一个或多个“root”密钥和仲裁。 在 Account_test.cpp 中,我们实现了: 创建帐户 1 输入帐户别名的名称(例如'alice','bob'),帐户别名是用于区分帐户的标签。 2 键入名称以生成新的HSM密钥(例如'alice key','bob key'),此密钥将用于此帐户中资产单位的发放和转移。

(4) Transaction 交易包含一个或多个输入,以及一个或多个输出。恒为区块链核心平台的API允许您使用操作(包括发出,支出和返还)构建交易。 在 Transaction_test.cpp 中,我们实现了: 资产的交易 1 添加“账户支出”操作 2 为资产别名选择“Asset” 3 输入“100”作为金额 4 添加“使用帐户控制”操作 5 为帐户别名选择“Account” 6 为资产别名选择“Asset” 7 输入“100”作为金额 8 “提交”

Committer:
webmaster
Date:
Fri Nov 03 01:07:32 2017 +0000
Revision:
10:aabd720e632c
publish v0.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
webmaster 10:aabd720e632c 1 #include "Asset.h"
webmaster 10:aabd720e632c 2 #include "Uuid.h"
webmaster 10:aabd720e632c 3
webmaster 10:aabd720e632c 4 Asset::Asset()
webmaster 10:aabd720e632c 5 {
webmaster 10:aabd720e632c 6 this->id = "";
webmaster 10:aabd720e632c 7 this->alias = "";
webmaster 10:aabd720e632c 8 this->tags = "{}";
webmaster 10:aabd720e632c 9 this->quorum = 1;
webmaster 10:aabd720e632c 10 Object obj;
webmaster 10:aabd720e632c 11 this->definition["{}"] = obj;
webmaster 10:aabd720e632c 12 }
webmaster 10:aabd720e632c 13
webmaster 10:aabd720e632c 14 Asset::~Asset()
webmaster 10:aabd720e632c 15 {
webmaster 10:aabd720e632c 16
webmaster 10:aabd720e632c 17 }
webmaster 10:aabd720e632c 18
webmaster 10:aabd720e632c 19 // �����ʲ�
webmaster 10:aabd720e632c 20 // ע���ʲ�json�Ǹ�����[]
webmaster 10:aabd720e632c 21 string Asset::createAsset()
webmaster 10:aabd720e632c 22 {
webmaster 10:aabd720e632c 23 string strJson = "";
webmaster 10:aabd720e632c 24
webmaster 10:aabd720e632c 25 MbedJSONValue val;
webmaster 10:aabd720e632c 26 MbedJSONValue valNull;
webmaster 10:aabd720e632c 27 MbedJSONValue vals;
webmaster 10:aabd720e632c 28
webmaster 10:aabd720e632c 29 //fill the object
webmaster 10:aabd720e632c 30 val["alias"] = this->alias;
webmaster 10:aabd720e632c 31 val["tags"] = valNull;
webmaster 10:aabd720e632c 32 val["definition"] = valNull;
webmaster 10:aabd720e632c 33 val["quorum"] = this->getQuorum();
webmaster 10:aabd720e632c 34 for (int i=0; i<getQuorum(); i++)
webmaster 10:aabd720e632c 35 {
webmaster 10:aabd720e632c 36 // should be Key Get root_xpubs vector keys[i]
webmaster 10:aabd720e632c 37 val["root_xpubs"][i] = "62b33131fff6493ce37cf86396984902932baaf08eb5260cc17a4138f0403e4f261a0569c75aeddfd8f09548b891b360a8e72a514c082826920d3f87e325ea9b";
webmaster 10:aabd720e632c 38 //val["root_xpubs"][i] = m_Keys.getRootXpub();
webmaster 10:aabd720e632c 39 }
webmaster 10:aabd720e632c 40
webmaster 10:aabd720e632c 41 Uuid u;
webmaster 10:aabd720e632c 42 //GUID guid = u.CreateGuid();
webmaster 10:aabd720e632c 43 //string strUuid = u.GuidToString(guid);
webmaster 10:aabd720e632c 44 string strUuid = u.getUuid();
webmaster 10:aabd720e632c 45
webmaster 10:aabd720e632c 46 val["client_token"] = strUuid;//"17e48179-3500-48db-9335-b69d9af1111f";
webmaster 10:aabd720e632c 47
webmaster 10:aabd720e632c 48 //serialize it into a JSON string
webmaster 10:aabd720e632c 49 vals[0] = val;
webmaster 10:aabd720e632c 50 strJson = vals.serialize();
webmaster 10:aabd720e632c 51 if ("null" == strJson)
webmaster 10:aabd720e632c 52 {
webmaster 10:aabd720e632c 53 strJson = "{}";
webmaster 10:aabd720e632c 54 }
webmaster 10:aabd720e632c 55 //printf("json: %s\r\n", strJson.c_str());
webmaster 10:aabd720e632c 56
webmaster 10:aabd720e632c 57 string strRep = "";
webmaster 10:aabd720e632c 58 string strUrl = "/create-asset";
webmaster 10:aabd720e632c 59 client.http_post(strUrl,strJson,strRep);
webmaster 10:aabd720e632c 60
webmaster 10:aabd720e632c 61 // get http response content
webmaster 10:aabd720e632c 62 string content = client.get_content(strRep);
webmaster 10:aabd720e632c 63
webmaster 10:aabd720e632c 64 // decode content json
webmaster 10:aabd720e632c 65 MbedJSONValue valRep;
webmaster 10:aabd720e632c 66 string err = parse(valRep,content.c_str());
webmaster 10:aabd720e632c 67
webmaster 10:aabd720e632c 68 int ret = 0;
webmaster 10:aabd720e632c 69 ret = err.find("error");
webmaster 10:aabd720e632c 70 if ( ret > 1)
webmaster 10:aabd720e632c 71 {
webmaster 10:aabd720e632c 72 return err;
webmaster 10:aabd720e632c 73 }
webmaster 10:aabd720e632c 74
webmaster 10:aabd720e632c 75 id = valRep[0]["id"].get<std::string>();
webmaster 10:aabd720e632c 76
webmaster 10:aabd720e632c 77 return id;
webmaster 10:aabd720e632c 78 }
webmaster 10:aabd720e632c 79
webmaster 10:aabd720e632c 80 string Asset::listAssets()
webmaster 10:aabd720e632c 81 {
webmaster 10:aabd720e632c 82 string strJson = "";
webmaster 10:aabd720e632c 83
webmaster 10:aabd720e632c 84 MbedJSONValue val;
webmaster 10:aabd720e632c 85
webmaster 10:aabd720e632c 86 //fill the object
webmaster 10:aabd720e632c 87 if (!this->id.empty())
webmaster 10:aabd720e632c 88 {
webmaster 10:aabd720e632c 89 string filter = "id='" + this->id +"'";
webmaster 10:aabd720e632c 90 val["filter"] = filter;
webmaster 10:aabd720e632c 91 }
webmaster 10:aabd720e632c 92
webmaster 10:aabd720e632c 93 //serialize it into a JSON string
webmaster 10:aabd720e632c 94 strJson = val.serialize();
webmaster 10:aabd720e632c 95 if ("null" == strJson)
webmaster 10:aabd720e632c 96 {
webmaster 10:aabd720e632c 97 strJson = "{}";
webmaster 10:aabd720e632c 98 }
webmaster 10:aabd720e632c 99 //printf("json: %s\r\n", strJson.c_str());
webmaster 10:aabd720e632c 100
webmaster 10:aabd720e632c 101 string strRep = "";
webmaster 10:aabd720e632c 102 string strUrl = "/list-assets";
webmaster 10:aabd720e632c 103 client.http_post(strUrl,strJson,strRep);
webmaster 10:aabd720e632c 104
webmaster 10:aabd720e632c 105 return strJson;
webmaster 10:aabd720e632c 106 }