Added comments and a few other small things

This commit is contained in:
Griff Green 2017-09-29 12:11:13 +02:00 committed by GitHub
parent 5ccf92d502
commit 885678c078
1 changed files with 44 additions and 34 deletions

View File

@ -2,43 +2,46 @@ pragma solidity ^0.4.11;
import "./ILiquidPledgingPlugin.sol"; import "./ILiquidPledgingPlugin.sol";
/// @dev This is declares a few functions from `Vault` so that the
/// `LiquidPledgingBase` contract can interface with the `Vault` contract
contract Vault { contract Vault {
function authorizePayment(bytes32 _ref, address _dest, uint _amount); function authorizePayment(bytes32 _ref, address _dest, uint _amount);
function () payable; function () payable;
} }
contract LiquidPledgingBase { contract LiquidPledgingBase {
// Limits inserted to prevent large loops that could prevent canceling
uint constant MAX_DELEGATES = 20; uint constant MAX_DELEGATES = 20;
uint constant MAX_SUBPROJECT_LEVEL = 20; uint constant MAX_SUBPROJECT_LEVEL = 20;
uint constant MAX_INTERPROJECT_LEVEL = 20; uint constant MAX_INTERPROJECT_LEVEL = 20;
enum NoteManagerType { Donor, Delegate, Project }// todo change name enum NoteManagerType { Donor, Delegate, Project } // todo change name Donor Project
enum PaymentState { NotPaid, Paying, Paid } enum PaymentState { NotPaid, Paying, Paid } // TODO name change NotPaid
// This struct defines the details of each the NoteManager, these NoteManagers can create /// @dev This struct defines the details of each the NoteManager, these
struct NoteManager {// change manager /// NoteManagers can own notes and act as delegates
NoteManagerType managerType; struct NoteManager { // TODO name change NoteManager
address addr; NoteManagerType managerType; // Giver, Delegate or Campaign
string name; address addr; // account or contract address for admin
uint64 commitTime; // Only used in donors and projects, its the precommitment time string name;
uint64 parentProject; // Only for projects uint64 commitTime; // In seconds, used for Givers' & Delegates' vetos
bool canceled; // Only for project uint64 parentProject; // Only for campaigns
ILiquidPledgingPlugin plugin; // Handler that is called when one call is affected. bool canceled; //Always false except for canceled campaigns
ILiquidPledgingPlugin plugin; // if the plugin is 0x0 then nothing happens if its a contract address than that smart contract is called via the milestone contract
} }
struct Note { struct Note {
uint amount; uint amount;
uint64 owner; uint64 owner; //NoteManager
uint64[] delegationChain; //index numbers!!!!! uint64[] delegationChain; // list of index numbers
uint64 proposedProject; // TODO change the name only used for when delegates are precommiting to a project uint64 proposedProject; // TODO change the name only used for when delegates are precommiting to a project
uint64 commitTime; // At what time the upcoming time will become an owner. uint64 commitTime; // When the proposedProject will become the owner
uint64 oldNote; // this points to the Note[] index that the Note was derived from uint64 oldNote; // this points to the Note[] index that the Note was derived from
PaymentState paymentState; PaymentState paymentState;
} }
Note[] notes; Note[] notes;
NoteManager[] managers; // the list of all the note managers 0 is reserved for no manager NoteManager[] managers; //The list of noteManagers 0 means there is no manager
Vault public vault; Vault public vault;
// this mapping allows you to search for a specific note's index number by the hash of that note // this mapping allows you to search for a specific note's index number by the hash of that note
@ -59,6 +62,8 @@ contract LiquidPledgingBase {
// Constructor // Constructor
////// //////
/// @notice The Constructor creates the `LiquidPledgingBase` on the blockchain
/// @param _vault Where the ETH is stored that the pledges represent
function LiquidPledgingBase(address _vault) { function LiquidPledgingBase(address _vault) {
managers.length = 1; // we reserve the 0 manager managers.length = 1; // we reserve the 0 manager
notes.length = 1; // we reserve the 0 note notes.length = 1; // we reserve the 0 note
@ -70,7 +75,9 @@ contract LiquidPledgingBase {
// Managers functions // Managers functions
////// //////
function addDonor(string name, uint64 commitTime, ILiquidPledgingPlugin plugin) returns (uint64 idDonor) {//Todo return idManager /// @notice Creates a donor.
function addDonor(string name, uint64 commitTime, ILiquidPledgingPlugin plugin
) returns (uint64 idDonor) {//Todo return idManager
idDonor = uint64(managers.length); idDonor = uint64(managers.length);
@ -88,6 +95,7 @@ contract LiquidPledgingBase {
event DonorAdded(uint64 indexed idDonor); event DonorAdded(uint64 indexed idDonor);
///@notice Changes the address, name or commitTime associated with a specific donor
function updateDonor( function updateDonor(
uint64 idDonor, uint64 idDonor,
address newAddr, address newAddr,
@ -95,8 +103,8 @@ contract LiquidPledgingBase {
uint64 newCommitTime) uint64 newCommitTime)
{ {
NoteManager storage donor = findManager(idDonor); NoteManager storage donor = findManager(idDonor);
require(donor.managerType == NoteManagerType.Donor); require(donor.managerType == NoteManagerType.Donor);//Must be a Giver
require(donor.addr == msg.sender); require(donor.addr == msg.sender);//current addr had to originate this tx
donor.addr = newAddr; donor.addr = newAddr;
donor.name = newName; donor.name = newName;
donor.commitTime = newCommitTime; donor.commitTime = newCommitTime;
@ -105,6 +113,7 @@ contract LiquidPledgingBase {
event DonorUpdated(uint64 indexed idDonor); event DonorUpdated(uint64 indexed idDonor);
/// @notice Creates a new Delegate
function addDelegate(string name, uint64 commitTime, ILiquidPledgingPlugin plugin) returns (uint64 idDelegate) { //TODO return index number function addDelegate(string name, uint64 commitTime, ILiquidPledgingPlugin plugin) returns (uint64 idDelegate) { //TODO return index number
idDelegate = uint64(managers.length); idDelegate = uint64(managers.length);
@ -123,6 +132,7 @@ contract LiquidPledgingBase {
event DeegateAdded(uint64 indexed idDelegate); event DeegateAdded(uint64 indexed idDelegate);
///@notice Changes the address, name or commitTime associated with a specific delegate
function updateDelegate( function updateDelegate(
uint64 idDelegate, uint64 idDelegate,
address newAddr, address newAddr,
@ -139,6 +149,7 @@ contract LiquidPledgingBase {
event DelegateUpdated(uint64 indexed idDelegate); event DelegateUpdated(uint64 indexed idDelegate);
/// @notice Creates a new Campaign
function addProject(string name, address projectManager, uint64 parentProject, uint64 commitTime, ILiquidPledgingPlugin plugin) returns (uint64 idProject) { function addProject(string name, address projectManager, uint64 parentProject, uint64 commitTime, ILiquidPledgingPlugin plugin) returns (uint64 idProject) {
if (parentProject != 0) { if (parentProject != 0) {
NoteManager storage pm = findManager(parentProject); NoteManager storage pm = findManager(parentProject);
@ -164,6 +175,7 @@ contract LiquidPledgingBase {
event ProjectAdded(uint64 indexed idProject); event ProjectAdded(uint64 indexed idProject);
///@notice Changes the address, name or commitTime associated with a specific Campaign
function updateProject( function updateProject(
uint64 idProject, uint64 idProject,
address newAddr, address newAddr,
@ -186,11 +198,11 @@ contract LiquidPledgingBase {
// Public constant functions // Public constant functions
////////// //////////
/// @notice Public constant that states how many notes are in the system
function numberOfNotes() constant returns (uint) { function numberOfNotes() constant returns (uint) {
return notes.length - 1; return notes.length - 1;
} }
/// @notice Public constant that states the details of the specified Note
function getNote(uint64 idNote) constant returns( function getNote(uint64 idNote) constant returns(
uint amount, uint amount,
uint64 owner, uint64 owner,
@ -209,7 +221,8 @@ contract LiquidPledgingBase {
oldNote = n.oldNote; oldNote = n.oldNote;
paymentState = n.paymentState; paymentState = n.paymentState;
} }
// This is to return the delegates one by one, because you can not return an array /// @notice Public constant that states the delegates one by one, because
/// an array cannot be returned
function getNoteDelegate(uint64 idNote, uint idxDelegate) constant returns( function getNoteDelegate(uint64 idNote, uint idxDelegate) constant returns(
uint64 idDelegate, uint64 idDelegate,
address addr, address addr,
@ -221,11 +234,11 @@ contract LiquidPledgingBase {
addr = delegate.addr; addr = delegate.addr;
name = delegate.name; name = delegate.name;
} }
/// @notice Public constant that states the number of admins in the system
function numberOfNoteManagers() constant returns(uint) { function numberOfNoteManagers() constant returns(uint) {
return managers.length - 1; return managers.length - 1;
} }
/// @notice Public constant that states the details of the specified admin
function getNoteManager(uint64 idManager) constant returns ( function getNoteManager(uint64 idManager) constant returns (
NoteManagerType managerType, NoteManagerType managerType,
address addr, address addr,
@ -247,9 +260,10 @@ contract LiquidPledgingBase {
// Private methods // Private methods
/////// ///////
// All notes exist... but if the note hasn't been created in this system yet then it wouldn't /// @notice All notes technically exist... but if the note hasn't been
// be in the hash array hNoteddx[] /// created in this system yet then it wouldn't be in the hash array
// this function creates a balloon if one is not created already... this ballon has 0 for the amount /// hNoteddx[]; this creates a Pledge with and amount of 0 if one is not
/// created already...
function findNote( function findNote(
uint64 owner, uint64 owner,
uint64[] delegationChain, uint64[] delegationChain,
@ -282,7 +296,7 @@ contract LiquidPledgingBase {
uint64 constant NOTFOUND = 0xFFFFFFFFFFFFFFFF; uint64 constant NOTFOUND = 0xFFFFFFFFFFFFFFFF;
// helper function that searches the delegationChain fro a specific delegate and // helper function that searches the delegationChain fro a specific delegate and
// level of delegation returns their idx in the delegation cahin which reflect their level of authority // level of delegation returns their idx in the delegation chain which reflect their level of authority
function getDelegateIdx(Note n, uint64 idDelegate) internal returns(uint64) { function getDelegateIdx(Note n, uint64 idDelegate) internal returns(uint64) {
for (uint i=0; i<n.delegationChain.length; i++) { for (uint i=0; i<n.delegationChain.length; i++) {
if (n.delegationChain[i] == idDelegate) return uint64(i); if (n.delegationChain[i] == idDelegate) return uint64(i);
@ -338,8 +352,8 @@ contract LiquidPledgingBase {
return isProjectCanceled2(m.parentProject); return isProjectCanceled2(m.parentProject);
} }
// this makes it easy to cancel projects // @notice A helper function for canceling projects
// @param idNote the note that may or may not be cancelled // @param idNote the note that may or may not be canceled
function getOldestNoteNotCanceled(uint64 idNote) internal constant returns(uint64) { //todo rename function getOldestNoteNotCanceled(uint64 idNote) internal constant returns(uint64) { //todo rename
if (idNote == 0) return 0; if (idNote == 0) return 0;
Note storage n = findNote(idNote); Note storage n = findNote(idNote);
@ -356,8 +370,4 @@ contract LiquidPledgingBase {
function checkManagerOwner(NoteManager m) internal constant { function checkManagerOwner(NoteManager m) internal constant {
require((msg.sender == m.addr) || (msg.sender == address(m.plugin))); require((msg.sender == m.addr) || (msg.sender == address(m.plugin)));
} }
} }