- 浏览: 761198 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (1045)
- 数据结构 (36)
- UML与设计模式 (42)
- c++ (87)
- rust (36)
- Qt (41)
- boost模板元编程 (43)
- Linux (77)
- 汇编 (4)
- 其它 (2)
- 烹饪 (3)
- unix c / socket (73)
- 软件工程 (4)
- shell (53)
- Python (37)
- c++ primer 5th(c++11) (22)
- 数据库/MySQL (27)
- 数据存储 (4)
- lisp (7)
- git (4)
- Utility (3)
- CDN与DNS (54)
- Http (53)
- php (7)
- nginx/lua/openresty (41)
- redis (11)
- TCP/IP (16)
- 互联网 (6)
- kernel (2)
- go (34)
- 区块链 (43)
- 比特股 (13)
- 以太坊 (23)
- 比特币 (23)
- 密码学 (10)
- EOS (53)
- DAG (1)
- docker (1)
- filecoin (7)
- solidity (65)
- ipfs (8)
- 零知识证明 (1)
- openzeppelin (3)
- java (1)
- defi (7)
- Ton (0)
最新评论
template<uint8_t SpaceID, uint8_t TypeID, typename T = object> struct object_id { typedef T type; static const uint8_t space_id = SpaceID; static const uint8_t type_id = TypeID; object_id(){} object_id( unsigned_int i ):instance(i){} explicit object_id( uint64_t i ):instance(i) { FC_ASSERT( (i >> 48) == 0 ); } object_id( object_id_type id ):instance(id.instance()) { } friend object_id operator+(const object_id a, int64_t delta ) { return object_id( uint64_t(a.instance.value+delta) ); } friend object_id operator+(const object_id a, int delta ) { return object_id( uint64_t(a.instance.value+delta) ); } operator object_id_type()const { return object_id_type( SpaceID, TypeID, instance.value ); } explicit operator uint64_t()const { return object_id_type( *this ).number; } template<typename DB> const T& operator()(const DB& db)const { return db.get(*this); } friend bool operator == ( const object_id& a, const object_id& b ) { return a.instance == b.instance; } friend bool operator != ( const object_id& a, const object_id& b ) { return a.instance != b.instance; } friend bool operator == ( const object_id_type& a, const object_id& b ) { return a == object_id_type(b); } friend bool operator != ( const object_id_type& a, const object_id& b ) { return a != object_id_type(b); } friend bool operator == ( const object_id& b, const object_id_type& a ) { return a == object_id_type(b); } friend bool operator != ( const object_id& b, const object_id_type& a ) { return a != object_id_type(b); } friend bool operator < ( const object_id& a, const object_id& b ) { return a.instance.value < b.instance.value; } friend bool operator > ( const object_id& a, const object_id& b ) { return a.instance.value > b.instance.value; } friend size_t hash_value( object_id v ) { return std::hash<uint64_t>()(v.instance.value); } unsigned_int instance; };
object_id由space_id,type_id及unsigned_int组成,则这个unsigned_int实际上是一个结构体,它用于存储T
struct unsigned_int { unsigned_int( uint32_t v = 0 ):value(v){} template<typename T> unsigned_int( T v ):value(v){} //operator uint32_t()const { return value; } //operator uint64_t()const { return value; } template<typename T> operator T()const { return static_cast<T>(value); } unsigned_int& operator=( int32_t v ) { value = v; return *this; } uint32_t value; friend bool operator==( const unsigned_int& i, const uint32_t& v ) { return i.value == v; } friend bool operator==( const uint32_t& i, const unsigned_int& v ) { return i == v.value; } friend bool operator==( const unsigned_int& i, const unsigned_int& v ) { return i.value == v.value; } friend bool operator!=( const unsigned_int& i, const uint32_t& v ) { return i.value != v; } friend bool operator!=( const uint32_t& i, const unsigned_int& v ) { return i != v.value; } friend bool operator!=( const unsigned_int& i, const unsigned_int& v ) { return i.value != v.value; } friend bool operator<( const unsigned_int& i, const uint32_t& v ) { return i.value < v; } friend bool operator<( const uint32_t& i, const unsigned_int& v ) { return i < v.value; } friend bool operator<( const unsigned_int& i, const unsigned_int& v ) { return i.value < v.value; } friend bool operator>=( const unsigned_int& i, const uint32_t& v ) { return i.value >= v; } friend bool operator>=( const uint32_t& i, const unsigned_int& v ) { return i >= v.value; } friend bool operator>=( const unsigned_int& i, const unsigned_int& v ) { return i.value >= v.value; } };
object_id_type中的num由space_id(char),type_id(char),space_type(6bit)组成
space id:
relative_protocol_ids = 0,
protocol_ids = 1,
implementation_ids = 2
type id:
1.正常情况下的type id
enum object_type
{
null_object_type, 0
base_object_type,1
account_object_type,2
asset_object_type,3
force_settlement_object_type,4
committee_member_object_type,5
witness_object_type,6
limit_order_object_type,7
call_order_object_type,8
custom_object_type,9
proposal_object_type,10
operation_history_object_type,11
withdraw_permission_object_type,12
vesting_balance_object_type,13
worker_object_type,14
balance_object_type,15
OBJECT_TYPE_COUNT ///< Sentry value which contains the number of different object types
};
2.如果space_id为2(implementation_ids),则type_id
enum impl_object_type
{
impl_global_property_object_type, 0
impl_dynamic_global_property_object_type, 1
impl_reserved0_object_type, 2 // formerly index_meta_object_type, TODO: delete me
impl_asset_dynamic_data_type, 3
impl_asset_bitasset_data_type, 4
impl_account_balance_object_type, 5
impl_account_statistics_object_type, 6
impl_transaction_object_type, 7
impl_block_summary_object_type, 8
impl_account_transaction_history_object_type, 9
impl_blinded_balance_object_type, 10
impl_chain_property_object_type, 11
impl_witness_schedule_object_type, 12
impl_budget_record_object_type, 13
impl_special_authority_object_type, 14
impl_buyback_object_type, 15
impl_fba_accumulator_object_type, 16
impl_collateral_bid_object_type 17
};
3.数据对象基本都是由space_id,type_id来构建索引
发表评论
-
爆仓单的正确吃法
2018-10-24 09:00 438论吃爆仓单的正确姿势: 平仓卖单出现条件:喂价<强平触 ... -
常用术语
2018-10-24 08:59 350call limit:强平触发价 settlement pri ... -
RPC
2018-09-27 07:37 394curl --data '{"jsonrpc&quo ... -
BTS金融
2018-09-02 10:05 5831.所有发行人需要做的是发布资产的有效global_settl ... -
资产创建费用
2018-09-02 09:43 422The asset creation fee depends ... -
手动创建交易
2018-08-25 12:00 4431.2.17是nathan,1.2.21是一个新帐户 1.创 ... -
blind-account
2018-08-25 08:11 3561.创建 unlocked >>> crea ... -
multi_index_container
2018-08-11 13:04 455根据不同的类中不同的字段排序 #include < ... -
比特股调试信息颜色
2018-08-10 07:26 456控制台输出: 绿色 - 调试 白色 - 信息/默认 黄色/棕色 ... -
资产费用
2018-08-09 23:02 40350%的资产创建费用用于资产的资金池,剩下50%的20%用于网 ... -
BTS私链搭建
2018-07-25 10:16 925https://blog.csdn.net/ggq89/art ... -
BTS基础
2018-07-24 07:37 413https://bitsharestalk.org/index ...
相关推荐
比特精灵 种子子下载
该资料详细介绍了山东比特多媒体魔笛风原理
比特金白皮书 阐述了比特金诞生的初衷
比特教务管理系统V2.3是现代教务管理不可缺少的得力工具,实用、方便。
曼码的特点在于每个比特时间间隔内都有一个跳变:对于逻辑“0”,跳变发生在比特周期的开始;对于逻辑“1”,跳变则位于比特周期的中间。这种方式提高了信号的抗干扰能力,并且使得接收端能够进行自同步。 #### 1.2...
在探讨多比特树(Trie)的详细内容之前,我们需要明确几个基本概念。首先,Trie,又称前缀树,是一种用于存储字符串的数据结构,尤其适用于实现字符串集合的快速检索。在了解Trie的基础上,我们可以进一步探索多比特...
比特彗星下载器,BT下载器,可以下载种子文件。
比特无限源码。开源源码,欢迎下载。
【标题】:“若比特Robotell开源资料”是一个与嵌入式系统开发相关的资源包,主要聚焦于Robotell公司的USB2CAN设备。这个开源项目提供了驱动程序、调试工具以及相关的源代码和原理图,旨在帮助开发者理解和使用USB2...
比特杀毒软件破解注册机-比特杀毒软件破解注册机-
在MATLAB环境中进行数字通信系统的设计与仿真时,比特误差率(Bit Error Rate,简称BER)是一个关键的性能指标。本教程将详细讲解如何利用MATLAB进行BPSK(Binary Phase Shift Keying,二进制相移键控)调制的误码率...
使用时浏览器点击下载的文件右边三个点,复制链接,这时,比特彗星会自动弹出选项框,选择下载地址,点击确定;如果没有弹出,就到比特彗星里,点击左上角html的图标,再粘贴网址,选择下载地址,点击确定。
比特精灵(bitspirit)是一款界面美观,使用简单,功能强大的BT客户端。 C++全新内核,它不仅提供BitTorrent协议的完全实现,而且提供强大的个性化功能
比特彗星是一个用C++语言为Microsoft Windows平台编写的BitTorrent客户端软件,也可用于HTTP/FTP下载,并可选装“eMule插件”通过电驴网络进行BitTorrent/电驴同时下载。
零比特插入,在遇到和帧定界符一样的比特组合时所采取的有效方法
比特流操作的相关函数,包括从源地址复制n个比特数据到目的地址函数,取数据中某起始位置n个比特模板函数等等。
零比特插入算法是一种在数据编码过程中用于实现不同字符集间转换的技术,常见于通信和数据传输领域。在中文环境中,这种算法常用于将非ASCII字符(如汉字)转换为ASCII兼容的格式,以便在网络上传输或者存储。在这个...
比特流