All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.takamaka.code.dao.SharedEntityWithCappedShares Maven / Gradle / Ivy

The newest version!
/*
Copyright 2021 Fausto Spoto

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package io.takamaka.code.dao;

import static io.takamaka.code.lang.Takamaka.require;
import static java.math.BigInteger.ZERO;

import java.math.BigInteger;
import java.util.stream.Stream;

import io.takamaka.code.dao.SharedEntity.Offer;
import io.takamaka.code.lang.FromContract;
import io.takamaka.code.lang.Payable;
import io.takamaka.code.lang.PayableContract;

/**
 * A shared entity where each shareholder cannot own more than a given percent of all shares.
 *
 * @param  the type of the shareholders
 * @param  the type of the offers of sale of shares for this entity
 */
public class SharedEntityWithCappedShares> extends SimpleSharedEntity {

	/**
     * The maximal percent of shares that a single shareholder can own.
     */
    private final int percentLimit;

    /**
     * The maximal number of shares that a single shareholder can own.
     */
    private final BigInteger limit;

    /**
	 * Creates a shared entity with the given set of shareholders and respective shares.
	 *
	 * @param shareholders the initial shareholders; if there are repetitions, their shares are merged
	 * @param shares the initial shares of each initial shareholder. This must be as many as {@code shareholders}
	 * @param percentLimit the maximal percent of shares that a single shareholder can own
	 */
	public SharedEntityWithCappedShares(Stream shareholders, Stream shares, int percentLimit) {
		super(shareholders, shares);

		this.percentLimit = percentLimit;
		require(percentLimit <= 100 && percentLimit > 0, "invalid share limit: it must be between 1 and 100 inclusive");
        BigInteger totalShares = getShares().values().reduce(ZERO, BigInteger::add);
        this.limit = totalShares.multiply(BigInteger.valueOf(percentLimit)).divide(BigInteger.valueOf(100));
        boolean sharesAreNotOverLimit = getShares().values().allMatch(_shares -> _shares.compareTo(limit) <= 0);
		require(sharesAreNotOverLimit, () -> "a shareholder cannot hold more than " + percentLimit + "% of shares");
	}

	/**
     * Creates a shared entity with the given set of shareholders and shares.
     *
     * @param shareholders the initial shareholders; if there are repetitions, their shares are merged
     * @param shares       the initial shares of each initial shareholder. This must have the same length as {@code shareholders}
     * @param percentLimit the maximal percent of shares that a single shareholder can own
     */
    public SharedEntityWithCappedShares(S[] shareholders, BigInteger[] shares, int percentLimit) {
    	this(Stream.of(shareholders), Stream.of(shares), percentLimit);
    }

    /**
     * Creates a shared entity with one shareholder.
     *
     * @param shareholder  the initial shareholder
     * @param share        the initial share of the initial shareholder
     * @param percentLimit the maximal percent of shares that a single shareholder can own
     */
    public SharedEntityWithCappedShares(S shareholder, BigInteger share, int percentLimit) {
    	this(Stream.of(shareholder), Stream.of(share), percentLimit);
    }

    /**
     * Creates a shared entity with two shareholders.
     *
     * @param shareholder1 the first initial shareholder
     * @param shareholder2 the second initial shareholder
     * @param share1       the initial share of the first shareholder
     * @param share2       the initial share of the second shareholder
     * @param percentLimit the maximal percent of shares that a single shareholder can own
     */
    public SharedEntityWithCappedShares(S shareholder1, S shareholder2, BigInteger share1, BigInteger share2, int percentLimit) {
    	this(Stream.of(shareholder1, shareholder2), Stream.of(share1, share2), percentLimit);
    }

    /**
     * Creates a shared entity with three shareholders.
     *
     * @param shareholder1 the first initial shareholder
     * @param shareholder2 the second initial shareholder
     * @param shareholder3 the third initial shareholder
     * @param share1       the initial share of the first shareholder
     * @param share2       the initial share of the second shareholder
     * @param share3       the initial share of the third shareholder
     * @param percentLimit the maximal percent of shares that a single shareholder can own
     */
    public SharedEntityWithCappedShares(S shareholder1, S shareholder2, S shareholder3, BigInteger share1, BigInteger share2, BigInteger share3, int percentLimit) {
    	this(Stream.of(shareholder1, shareholder2, shareholder3), Stream.of(share1, share2, share3), percentLimit);
    }

    /**
     * Creates a shared entity with four shareholders.
     *
     * @param shareholder1 the first initial shareholder
     * @param shareholder2 the second initial shareholder
     * @param shareholder3 the third initial shareholder
     * @param shareholder4 the fourth initial shareholder
     * @param share1       the initial share of the first shareholder
     * @param share2       the initial share of the second shareholder
     * @param share3       the initial share of the third shareholder
     * @param share4       the initial share of the fourth shareholder
     * @param percentLimit the maximal percent of shares that a single shareholder can own
     */
    public SharedEntityWithCappedShares(S shareholder1, S shareholder2, S shareholder3, S shareholder4, BigInteger share1, BigInteger share2, BigInteger share3, BigInteger share4, int percentLimit) {
    	this(Stream.of(shareholder1, shareholder2, shareholder3, shareholder4), Stream.of(share1, share2, share3, share4), percentLimit);
    }

    @Override
    public @FromContract(PayableContract.class) @Payable void accept(BigInteger amount, S buyer, O offer) {
        super.accept(amount, buyer, offer);
        require(sharesOf(buyer).compareTo(limit) <= 0, () -> "a shareholder cannot hold more than " + percentLimit + "% of shares");
    }
}