EOS智能合约中数据库的使用与常见问题

  阅读本文前,您需要熟悉eos节点的操作流程,熟悉cleos客户端基础指令,并且对自定义合约的开发有着一定的了解。
  操作系统:MAC OS 10.13.x,EOSIO版本号:1.1.3

背景

  在EOS自定义合约开发过程中有持久化存储的需求,则需要创建一个用作持久化存储的数据库。EOS中的数据库是通过multi_index来完成交互与访问。

  下面通过我们先创建数据表,并进行数据表进行增删改查。


1 创建数据表

  • 创建智能合约

  在创建数据表前,我们首先需要创建智能合约,关于智能合约的创建,网上有很多这样的教程,文本不再赘述。
  可以参考EOSIO3.0 hello world 从 0 到 1

  • 创建数据表结构
    //@abi table cactus.db i64
    struct cts_db {
        uint64_t id;
        string store_content;
        uint64_t primary_key() const { return id; }
        EOSLIB_SERIALIZE(cts_db, (id)(store_content))
    };

    typedef multi_index<N(cactus), cts_db> cactus_db_index;

  //@abi table cactus.db i64 表示生成abi的时候生成name为cactus.db index_type为i64 的表。下面是生成的abi中的表结构。

"tables": [{
      "name": "cactus",
      "index_type": "i64",
      "key_names": [
        "id"
      ],
      "key_types": [
        "uint64"
      ],
      "type": "cts_db"
    }
  ]

其中有几点注意事项以及可能会由此导致的问题:

  1. //@abi table 生成abi的时候会生成该新的数据表,不加则生成的abi中table无内容,进行查表操作的时候显示如下。

Table cactus.db is not specified in the ABI

  1. 在对表名进行命名是要注意,表名长度需要小于13(不包括13)个字符,且只能包含.12345abcdefghijklmnopqrstuvwxyz这些字符,否则查找的时候会提示错误。
  1. 一定需要有primary_key()方法。
  1. 当//@abi table中声明的表名包括'.'时,生成abi文件时会将'.'后面的内容忽略,可以观察上方生成的abi文件中"name"为"cactus"而不是在代码中所声明的"cactus.db"。

  2. 若//@abi table后不写声明表名,生成abi时表名会取结构体的名字。

  3. 生成multi_index对象时,multi_index<table_name, record>时,table_name需要与上面所声明的table_name一致,否则会造成查表的时候内容为空的情况。

cactus-MacBook-Pro:cactus_db huid$ cleos get table cactus huid cactus
{
"rows": [],
"more": false
}


2 操作简单数据表

  • 获取数据表信息

cleos get table code scope table_name

  这里的code与scope与创建实例对象时multi_index(code, scope)的参数相对应,否则获取的时候虽然不会报错,但是没有内容。

  • 数据表插入方法使用
    ///@abi action
    void ctsstore(account_name user){
        cactus_db_index ctsdb( _self, user );
        ctsdb.emplace( user, [&]( auto& a) {
            a.id            = ctsdb.available_primary_key();
            a.store_content = store_content; 
        });
    }

  其中available_primary_key()是一个实用的方法,可以提供主键自增长功能。

  执行并获取表信息。

cleos push action cactus ctsstore '{"user":"huid", "store_content":"cactus"}' -p huid@active
cleos push action cactus ctsstore '{"user":"huid", "store_content":"cactus"}' -p huid@active
cleos get table cactus huid cactus
{
 "rows": [{
   "id": 0,
   "user_name": "cactus"
  },{
   "id": 1,
   "user_name": "cactus"
  }
  ],
 "more": false
}

  • 数据表查找方法使用
        cactus_db_index ctsdb( _self, user );
        auto& itr = ctsdb.get( id , "data not found" );
  • 数据表修改方法使用
    ///@abi action
    void ctsmodify( uint64_t id, account_name user, string store_content ){
        cactus_db_index ctsdb( _self, user );
        auto& itr = ctsdb.get( id , "data not found" );
        ctsdb.modify( itr, user, [&]( auto& a ) {
            a.store_content = store_content;
        });
    }

  执行并获取表信息。

cleos push action cactus ctsmodify '{"id":1, "user":"huid", "store_content":"db"}' -p huid@active
cleos get table cactus huid cactus
{
 "rows": [{
   "id": 0,
   "user_name": "cactus"
  },{
   "id": 1,
   "user_name": "db"
  }
  ],
 "more": false
}

  • 数据表删除方法使用
    ///@abi action
    void ctserase( uint64_t id, account_name user ){
        cactus_db_index ctsdb( _self, user );
        auto &itr = ctsdb.get( id , "data not found" );
        ctsdb.erase( itr );
    }

  执行并获取表信息。

cleos push action cactus ctserase '{"id":1, "user":"huid"}' -p huid@active
cleos get table cactus huid cactus
{
 "rows": [{
   "id": 0,
   "user_name": "cactus"
  }
  ],
 "more": false
}

  • 源代码
#include <eosiolib/eosio.hpp>

using namespace eosio;
using namespace std;

class cactus_db : public contract {
public:

    using contract::contract;

    ///@abi action
    void ctsstore( account_name user, string store_content ){
        cactus_db_index ctsdb( _self, user );
        ctsdb.emplace( user, [&]( auto& a ) {
            a.id            = ctsdb.available_primary_key();
            a.store_content = store_content; 
        });
    }

    ///@abi action
    void ctsmodify( uint64_t id, account_name user, string store_content ){
        cactus_db_index ctsdb( _self, user );
        auto& itr = ctsdb.get( id , "data not found" );
        ctsdb.modify( itr, user, [&]( auto& a ) {
            a.store_content = store_content;
        });
    }

    ///@abi action
    void ctserase( uint64_t id, account_name user){
        cactus_db_index ctsdb( _self, user );
        auto &itr = ctsdb.get( id , "data not found" );
        ctsdb.erase( itr );
    }

private:

    //@abi table cactus.db i64
    struct cts_db {
        uint64_t id;
        string store_content;
        uint64_t primary_key() const { return id; }
        EOSLIB_SERIALIZE(cts_db, (id)(store_content))
    };

    typedef multi_index<N(cactus), cts_db> cactus_db_index;

};

EOSIO_ABI(cactus_db, (ctsstore)(ctsmodify)(ctserase))


3 多索引数据表

  多索引表数据表和简单数据表在定义的时候不同。

简单数据表: multi_index <N(table_name), record>
多索引数据表: multi_index <N(table_name), record,
             indexed_by<index_name, index_func>,
             indexed_by<index_name_1, index_func_1>,
            ….>>

  多索引数据表较简单数据表多了一个indexed_by,<索引名, 索引键值函数>, 以下具体说明。

  • 创建多索引数据表
private:

    //@abi table cactus.db i64
    struct cts_db {
        uint64_t id;
        uint64_t index_id;
        string store_content;
        uint64_t primary_key() const { return id; }
        uint64_t get_index_id() const { return index_id; }
        EOSLIB_SERIALIZE(cts_db, (id)(index_id)(store_content))
    };
 
    typedef multi_index< N(cactus), cts_db, indexed_by< N(index_id), 
    const_mem_fun< cts_db, uint64_t, &cts_db::get_index_id > > > cactus_db_index;

};

注意点:

  1. 除了主键函数外还需要写一个索引键值函数,如get_index_id()
  2. 结构中的<>注意成对。
  • 多索引数据表查找并修改
    cactus_db_index ctsdb( _self, user );
    auto idx = ctsdb.template get_index<N(index_id)>();
    auto itr = idx.find(mtrans::get_index_id(index_id));
    if ( itr == ctsdb.end() ) { print("don't find"); }
    else{
      ctsdb.modify( itr, user, [&](auto &a ){
         a.store_content = store_content;
      });
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容