2014-11-17 14:46:46 +00:00
|
|
|
/*
|
|
|
|
This file is part of ethereum.js.
|
|
|
|
|
|
|
|
ethereum.js is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ethereum.js is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/** @file contract.js
|
|
|
|
* @authors:
|
|
|
|
* Marek Kotewicz <marek@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
*/
|
|
|
|
|
2015-01-29 11:35:21 +00:00
|
|
|
var web3 = require('./web3');
|
2014-11-17 14:46:46 +00:00
|
|
|
var abi = require('./abi');
|
2015-01-31 14:22:05 +00:00
|
|
|
var utils = require('./utils');
|
2015-01-29 14:05:43 +00:00
|
|
|
var eventImpl = require('./event');
|
2015-03-03 17:34:06 +00:00
|
|
|
var signature = require('./signature');
|
2014-11-17 14:46:46 +00:00
|
|
|
|
2015-01-31 14:22:05 +00:00
|
|
|
var exportNatspecGlobals = function (vars) {
|
|
|
|
// it's used byt natspec.js
|
|
|
|
// TODO: figure out better way to solve this
|
|
|
|
web3._currentContractAbi = vars.abi;
|
|
|
|
web3._currentContractAddress = vars.address;
|
|
|
|
web3._currentContractMethodName = vars.method;
|
|
|
|
web3._currentContractMethodParams = vars.params;
|
|
|
|
};
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var addFunctionRelatedPropertiesToContract = function (contract) {
|
|
|
|
|
|
|
|
contract.call = function (options) {
|
2015-02-24 12:00:24 +00:00
|
|
|
contract._isTransaction = false;
|
2015-01-29 12:32:32 +00:00
|
|
|
contract._options = options;
|
|
|
|
return contract;
|
2015-01-22 14:18:21 +00:00
|
|
|
};
|
|
|
|
|
2015-02-25 13:32:57 +00:00
|
|
|
|
2015-02-24 12:00:24 +00:00
|
|
|
contract.sendTransaction = function (options) {
|
|
|
|
contract._isTransaction = true;
|
2015-01-29 12:32:32 +00:00
|
|
|
contract._options = options;
|
|
|
|
return contract;
|
2015-01-22 14:18:21 +00:00
|
|
|
};
|
2015-02-25 13:32:57 +00:00
|
|
|
// DEPRECATED
|
|
|
|
contract.transact = function (options) {
|
|
|
|
|
|
|
|
console.warn('myContract.transact() is deprecated please use myContract.sendTransaction() instead.');
|
|
|
|
|
|
|
|
return contract.sendTransaction(options);
|
|
|
|
};
|
2015-01-22 14:18:21 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
contract._options = {};
|
2015-01-25 21:43:36 +00:00
|
|
|
['gas', 'gasPrice', 'value', 'from'].forEach(function(p) {
|
2015-01-29 12:32:32 +00:00
|
|
|
contract[p] = function (v) {
|
|
|
|
contract._options[p] = v;
|
|
|
|
return contract;
|
2015-01-25 21:43:36 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var addFunctionsToContract = function (contract, desc, address) {
|
|
|
|
var inputParser = abi.inputParser(desc);
|
|
|
|
var outputParser = abi.outputParser(desc);
|
2015-01-25 21:43:36 +00:00
|
|
|
|
2015-01-28 13:55:39 +00:00
|
|
|
// create contract functions
|
2015-01-31 14:22:05 +00:00
|
|
|
utils.filterFunctions(desc).forEach(function (method) {
|
2015-01-20 14:06:05 +00:00
|
|
|
|
2015-01-31 14:22:05 +00:00
|
|
|
var displayName = utils.extractDisplayName(method.name);
|
|
|
|
var typeName = utils.extractTypeName(method.name);
|
2015-01-20 14:06:05 +00:00
|
|
|
|
|
|
|
var impl = function () {
|
2015-02-25 14:53:28 +00:00
|
|
|
/*jshint maxcomplexity:7 */
|
2014-11-17 14:46:46 +00:00
|
|
|
var params = Array.prototype.slice.call(arguments);
|
2015-03-03 17:34:06 +00:00
|
|
|
var sign = signature.functionSignatureFromAscii(method.name);
|
2015-01-22 13:37:34 +00:00
|
|
|
var parsed = inputParser[displayName][typeName].apply(null, params);
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var options = contract._options || {};
|
2015-01-22 13:37:34 +00:00
|
|
|
options.to = address;
|
2015-03-03 17:34:06 +00:00
|
|
|
options.data = sign + parsed;
|
2015-01-22 14:32:52 +00:00
|
|
|
|
2015-02-24 12:00:24 +00:00
|
|
|
var isTransaction = contract._isTransaction === true || (contract._isTransaction !== false && !method.constant);
|
2015-01-25 02:23:39 +00:00
|
|
|
var collapse = options.collapse !== false;
|
2015-01-22 14:32:52 +00:00
|
|
|
|
|
|
|
// reset
|
2015-01-29 12:32:32 +00:00
|
|
|
contract._options = {};
|
2015-02-24 12:00:24 +00:00
|
|
|
contract._isTransaction = null;
|
2015-01-22 13:37:34 +00:00
|
|
|
|
2015-02-24 12:00:24 +00:00
|
|
|
if (isTransaction) {
|
2015-01-31 14:22:05 +00:00
|
|
|
|
|
|
|
exportNatspecGlobals({
|
|
|
|
abi: desc,
|
|
|
|
address: address,
|
|
|
|
method: method.name,
|
|
|
|
params: params
|
|
|
|
});
|
2015-01-22 13:37:34 +00:00
|
|
|
|
2015-01-22 14:32:52 +00:00
|
|
|
// transactions do not have any output, cause we do not know, when they will be processed
|
2015-02-19 17:37:09 +00:00
|
|
|
web3.eth.sendTransaction(options);
|
2015-01-22 14:32:52 +00:00
|
|
|
return;
|
2015-01-22 13:37:34 +00:00
|
|
|
}
|
2015-01-22 14:32:52 +00:00
|
|
|
|
|
|
|
var output = web3.eth.call(options);
|
2015-01-25 02:23:39 +00:00
|
|
|
var ret = outputParser[displayName][typeName](output);
|
|
|
|
if (collapse)
|
|
|
|
{
|
2015-01-27 08:36:39 +00:00
|
|
|
if (ret.length === 1)
|
2015-01-25 02:23:39 +00:00
|
|
|
ret = ret[0];
|
2015-01-27 08:36:39 +00:00
|
|
|
else if (ret.length === 0)
|
2015-01-25 02:23:39 +00:00
|
|
|
ret = null;
|
|
|
|
}
|
|
|
|
return ret;
|
2014-11-17 14:46:46 +00:00
|
|
|
};
|
2015-01-20 14:06:05 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
if (contract[displayName] === undefined) {
|
|
|
|
contract[displayName] = impl;
|
2015-01-20 14:06:05 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
contract[displayName][typeName] = impl;
|
2014-11-17 14:46:46 +00:00
|
|
|
});
|
2015-01-29 12:32:32 +00:00
|
|
|
};
|
2015-01-22 13:37:34 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var addEventRelatedPropertiesToContract = function (contract, desc, address) {
|
|
|
|
contract.address = address;
|
2015-02-03 15:16:38 +00:00
|
|
|
contract._onWatchEventResult = function (data) {
|
|
|
|
var matchingEvent = event.getMatchingEvent(utils.filterEvents(desc));
|
|
|
|
var parser = eventImpl.outputParser(matchingEvent);
|
|
|
|
return parser(data);
|
|
|
|
};
|
2015-01-28 13:55:39 +00:00
|
|
|
|
2015-01-29 14:45:04 +00:00
|
|
|
Object.defineProperty(contract, 'topic', {
|
2015-01-29 12:32:32 +00:00
|
|
|
get: function() {
|
2015-01-31 14:22:05 +00:00
|
|
|
return utils.filterEvents(desc).map(function (e) {
|
2015-03-03 17:34:06 +00:00
|
|
|
return signature.eventSignatureFromAscii(e.name);
|
2015-01-29 12:32:32 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-01-28 13:55:39 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
};
|
2015-01-29 11:35:21 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var addEventsToContract = function (contract, desc, address) {
|
|
|
|
// create contract events
|
2015-01-31 14:22:05 +00:00
|
|
|
utils.filterEvents(desc).forEach(function (e) {
|
2015-01-28 13:55:39 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var impl = function () {
|
|
|
|
var params = Array.prototype.slice.call(arguments);
|
2015-03-03 17:34:06 +00:00
|
|
|
var sign = signature.eventSignatureFromAscii(e.name);
|
|
|
|
var event = eventImpl.inputParser(address, sign, e);
|
2015-01-29 14:05:43 +00:00
|
|
|
var o = event.apply(null, params);
|
2015-02-05 22:11:16 +00:00
|
|
|
var outputFormatter = function (data) {
|
2015-02-03 15:16:38 +00:00
|
|
|
var parser = eventImpl.outputParser(e);
|
|
|
|
return parser(data);
|
|
|
|
};
|
2015-02-23 17:30:37 +00:00
|
|
|
return web3.eth.filter(o, undefined, undefined, outputFormatter);
|
2015-01-28 13:55:39 +00:00
|
|
|
};
|
2015-01-31 00:30:19 +00:00
|
|
|
|
|
|
|
// this property should be used by eth.filter to check if object is an event
|
|
|
|
impl._isEvent = true;
|
2015-01-29 14:05:43 +00:00
|
|
|
|
2015-01-31 14:22:05 +00:00
|
|
|
var displayName = utils.extractDisplayName(e.name);
|
|
|
|
var typeName = utils.extractTypeName(e.name);
|
2015-01-28 13:55:39 +00:00
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
if (contract[displayName] === undefined) {
|
|
|
|
contract[displayName] = impl;
|
2015-01-28 13:55:39 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
contract[displayName][typeName] = impl;
|
2015-01-28 13:55:39 +00:00
|
|
|
|
|
|
|
});
|
2015-01-29 12:32:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method should be called when we want to call / transact some solidity method from javascript
|
|
|
|
* it returns an object which has same methods available as solidity contract description
|
|
|
|
* usage example:
|
|
|
|
*
|
|
|
|
* var abi = [{
|
|
|
|
* name: 'myMethod',
|
|
|
|
* inputs: [{ name: 'a', type: 'string' }],
|
|
|
|
* outputs: [{name: 'd', type: 'string' }]
|
|
|
|
* }]; // contract abi
|
|
|
|
*
|
2015-02-24 09:36:54 +00:00
|
|
|
* var MyContract = web3.eth.contract(abi); // creation of contract prototype
|
2015-01-29 12:32:32 +00:00
|
|
|
*
|
2015-02-24 09:36:54 +00:00
|
|
|
* var contractInstance = new MyContract('0x0123123121');
|
2015-01-29 12:32:32 +00:00
|
|
|
*
|
2015-02-24 09:36:54 +00:00
|
|
|
* contractInstance.myMethod('this is test string param for call'); // myMethod call (implicit, default)
|
|
|
|
* contractInstance.call().myMethod('this is test string param for call'); // myMethod call (explicit)
|
2015-02-24 12:00:24 +00:00
|
|
|
* contractInstance.sendTransaction().myMethod('this is test string param for transact'); // myMethod sendTransaction
|
2015-02-24 09:36:54 +00:00
|
|
|
*
|
|
|
|
* @param abi - abi json description of the contract, which is being created
|
2015-01-29 12:32:32 +00:00
|
|
|
* @returns contract object
|
|
|
|
*/
|
2015-02-24 09:36:54 +00:00
|
|
|
var contract = function (abi) {
|
|
|
|
|
|
|
|
// return prototype
|
2015-02-25 15:30:23 +00:00
|
|
|
if(abi instanceof Array && arguments.length === 1) {
|
|
|
|
return Contract.bind(null, abi);
|
2015-02-24 09:36:54 +00:00
|
|
|
|
2015-02-25 13:32:57 +00:00
|
|
|
// deprecated: auto initiate contract
|
2015-02-24 09:36:54 +00:00
|
|
|
} else {
|
|
|
|
|
2015-02-24 09:45:03 +00:00
|
|
|
console.warn('Initiating a contract like this is deprecated please use var MyContract = eth.contract(abi); new MyContract(address); instead.');
|
2015-01-29 12:32:32 +00:00
|
|
|
|
2015-02-24 09:36:54 +00:00
|
|
|
return new Contract(arguments[1], arguments[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
function Contract(abi, address) {
|
2015-01-29 12:32:32 +00:00
|
|
|
|
2015-01-29 14:17:32 +00:00
|
|
|
// workaround for invalid assumption that method.name is the full anonymous prototype of the method.
|
|
|
|
// it's not. it's just the name. the rest of the code assumes it's actually the anonymous
|
|
|
|
// prototype, so we make it so as a workaround.
|
|
|
|
// TODO: we may not want to modify input params, maybe use copy instead?
|
2015-02-24 09:36:54 +00:00
|
|
|
abi.forEach(function (method) {
|
2015-01-29 12:32:32 +00:00
|
|
|
if (method.name.indexOf('(') === -1) {
|
|
|
|
var displayName = method.name;
|
|
|
|
var typeName = method.inputs.map(function(i){return i.type; }).join();
|
|
|
|
method.name = displayName + '(' + typeName + ')';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var result = {};
|
|
|
|
addFunctionRelatedPropertiesToContract(result);
|
2015-02-24 09:36:54 +00:00
|
|
|
addFunctionsToContract(result, abi, address);
|
|
|
|
addEventRelatedPropertiesToContract(result, abi, address);
|
|
|
|
addEventsToContract(result, abi, address);
|
2015-01-28 13:55:39 +00:00
|
|
|
|
2015-01-22 14:18:21 +00:00
|
|
|
return result;
|
2015-02-24 09:36:54 +00:00
|
|
|
}
|
2014-11-17 14:46:46 +00:00
|
|
|
|
|
|
|
module.exports = contract;
|
2015-01-14 11:01:11 +00:00
|
|
|
|