forked from bcosorg/bcos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileInfoManagerContract.cpp
132 lines (94 loc) · 2.37 KB
/
FileInfoManagerContract.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include "FileInfoManagerContract.h"
using namespace dev;
using namespace contract;
const static std::string sc_FileInfoManagerAddr = "0x1000000000000000000000000000000000000018";
FileInfoManagerContract::FileInfoManagerContract(dev::eth::Client * client, const dev::Address& contractAddr) : BaseContract(client, dev::Address(contractAddr))
{
}
FileInfoManagerContract::~FileInfoManagerContract()
{
}
/**
*@desc 分页查询组文件信息
*/
int FileInfoManagerContract::pageByGroup(std::string _group, int _pageNo, std::string& result)
{
reset();
this->setFunction("pageByGroup(string,uint256)");
this->addParam(_group);
this->addParam(_pageNo);
const bytes& response = this->call();
result = eth::abiOut<std::string>(response);
if (result.empty())
{
return -1;
}
return 0;
}
int FileInfoManagerContract::listFileinfoByGroup(const std::string& groupName, std::string& ret)
{
reset();
this->setFunction("listByGroup(string)");
this->addParam(groupName);
const bytes& response = this->call();
ret = eth::abiOut<std::string>(response);
if (ret.empty())
{
return -1;
}
return 0;
}
//从FileInfoManager合约获取所有文件信息json结果
int FileInfoManagerContract::listFileinfo(std::string& ret)
{
reset();
this->setFunction("listAll()");
const bytes& response = this->call();
ret = eth::abiOut<std::string>(response);
if (ret.empty())
{
return -1;
}
return 0;
}
//从FileInfoManager合约获取指定文件信息json结果
int FileInfoManagerContract::findFileInfo(const std::string& _id, std::string& ret)
{
reset();
this->setFunction("findFileInfo(string)");
this->addParam(_id);
const bytes& response = this->call();
ret = eth::abiOut<std::string>(response);
if (ret.empty())
{
return -1;
}
return 0;
}
/**
*@desc 获取组pageSize
*/
int FileInfoManagerContract::getGroupPageCount(const std::string& group, int& result)
{
reset();
this->setFunction("getGroupPageCount(string)");
this->addParam(group);
if (0 != this->call(result))
{
return -1;
}
return 0;
}
/**
*@desc 获取pageSize
*/
int FileInfoManagerContract::getPageCount(int& result)
{
reset();
this->setFunction("getPageCount()");
if (0 != this->call(result))
{
return -1;
}
return 0;
}