]> git.mxchange.org Git - core.git/blobdiff - contrib/chash/chash.php
Added counter for total restarts
[core.git] / contrib / chash / chash.php
index d6126e3920a8ce93bdc4495680fc8b9b8bd12f3e..acba7c98ea26b792523f46fe79546572708912c9 100644 (file)
@@ -1,16 +1,20 @@
 <?php
 error_reporting(E_ALL | E_STRICT);
 
-define('HASH_ALGO'             , MHASH_RIPEMD320);
-define('BLOCK_SIZE'            , 100);
-define('NONCE_INCREMENT'       , 0.0000000000000001);
 define('START_TIME'            , microtime(TRUE));
 define('CHECK_POINT'           , 'chash.pos');
-define('FLUSH_BLOCKS_FILE_TIME', 10);
-define('RESTART_SEARCH_TIME'   , 3600);
+
+$GLOBALS['block_size']          = 100;
+$GLOBALS['none_increment']      = (1 / pow(10, 20));
+$GLOBALS['hash_algo']           = MHASH_RIPEMD320;
+$GLOBALS['flush_file_time']     = 30;
+$GLOBALS['restart_search_time'] = 1800;
 
 // Hashes per call
-$GLOBALS['cycles'] = 3;
+$GLOBALS['hash_cycles'] = 3;
+
+// Total restarts
+$GLOBALS['total_restarts'] = 0;
 
 // Found hashes
 $GLOBALS['found_hashes'] = array(0 => array());
@@ -32,7 +36,7 @@ $GLOBALS['found_hashes'] = array(0 => array());
  */
 function hashString ($str) {
        // Calculate strong hash from given string
-       $hash = mhash(HASH_ALGO, $str);
+       $hash = mhash($GLOBALS['hash_algo'], $str);
 
        // Return it hexadecimal-encoded
        return bin2hex($hash);
@@ -46,14 +50,11 @@ function hashString ($str) {
  * @return     $hash   The generated hash
  */
 function multipleHashString ($str) {
-       // One less to go (see below)
-       $totalHashes = $GLOBALS['cycles'] - 1;
-
        // Generate hash from given hash
        $hash = hashString($str);
 
        // Now over-hash it
-       for ($idx = 0; $idx < $totalHashes; $idx++) {
+       for ($idx = 0; $idx < ($GLOBALS['hash_cycles'] - 1); $idx++) {
                // Over-hash the given hash
                $hash = hashString($hash);
        } // END - for
@@ -178,7 +179,7 @@ function calculateSumFromHash ($hash) {
        // Loop through hash
        for ($idx = 0; $idx < (strlen($hash) / 2); $idx++) {
                // And add it
-               $sum = $sum + (hexdec(substr($hash, $idx, 2)) * $idx & 256);
+               $sum = $sum + hexdec(substr($hash, $idx, 2));
        } // END - for
 
        // And return it
@@ -192,7 +193,7 @@ function calculateSumFromHash ($hash) {
  */
 function calculateNonce () {
        // Linear incrementation
-       $GLOBALS['nonce'] = $GLOBALS['nonce'] + NONCE_INCREMENT;
+       $GLOBALS['nonce'] += $GLOBALS['none_increment'];
 }
 
 /**
@@ -209,7 +210,19 @@ function flushCheckPointFile ($hash) {
        $timer = microtime(TRUE);
 
        // Flush data
-       file_put_contents(CHECK_POINT, $GLOBALS['total_blocks'] . ':' . $GLOBALS['total_reward'] . ':' . $GLOBALS['total_hashes'] . ':' . $GLOBALS['cycles'] . ':' . base64_encode($GLOBALS['nonce']) . ':' . $hash . ':' . $GLOBALS['root_hash'] . ':' . base64_encode(gzcompress(serialize($GLOBALS['found_hashes']))));
+       file_put_contents(
+               CHECK_POINT,
+               $GLOBALS['total_blocks'] . ':' .
+               $GLOBALS['total_reward'] . ':' .
+               $GLOBALS['total_hashes'] . ':' .
+               $GLOBALS['total_found'] . ':' .
+               $GLOBALS['total_restarts'] . ':' .
+               $GLOBALS['hash_cycles'] . ':' .
+               base64_encode($GLOBALS['nonce']) . ':' .
+               $hash . ':' .
+               $GLOBALS['root_hash'] . ':' .
+               base64_encode(gzcompress(serialize($GLOBALS['found_hashes'])))
+       );
 
        // Set time
        $GLOBALS['time_flush'] = microtime(TRUE);
@@ -222,6 +235,9 @@ function flushCheckPointFile ($hash) {
  * @param      $hash   Hash to save
  */
 function addFoundHash ($hash) {
+       // Increment counter
+       $GLOBALS['total_found']++;
+
        // Add hash to array
        array_push($GLOBALS['found_hashes'][$GLOBALS['total_blocks']], array(
                'modula_hash'  => $GLOBALS['modula_hash'],
@@ -230,11 +246,12 @@ function addFoundHash ($hash) {
                'nonce'        => $GLOBALS['nonce'],
                'iter'         => $GLOBALS['iteration'],
                'hashes_block' => $GLOBALS['hashes_block'],
+               'hash_cycles'  => $GLOBALS['hash_cycles'],
                'nonce_hash'   => $hash
        ));
 
        // Found hash:
-       print ('FOUND: hash=' . $hash . ',nonce=' . $GLOBALS['nonce'] . ',iteration=' . $GLOBALS['iteration'] . ',foundTime()=' . (microtime(TRUE) - $GLOBALS['found_time'] ) . PHP_EOL);
+       print ('FOUND: hash=' . $hash . ',nonce=' . $GLOBALS['nonce'] . ',total_found=' . $GLOBALS['total_found'] . PHP_EOL);
 
        // Set time as a new hash was found
        $GLOBALS['found_time'] = microtime(TRUE);
@@ -243,7 +260,7 @@ function addFoundHash ($hash) {
        flushCheckPointFile($hash);
 
        // Use nonceHash as next modula hash
-       $GLOBALS['modula_hash'] = $hash;
+       setModulaHash($hash);
 }
 
 /**
@@ -256,6 +273,17 @@ function initNonce () {
        print (__FUNCTION__ . ': nonce=' . $GLOBALS['nonce'] . PHP_EOL);
 }
 
+/**
+ * Sets modula hash and calculates sum of it
+ *
+ * @param      $hash   Hash to set as "modula hash"
+ * @return     void
+ */
+function setModulaHash ($hash) {
+       $GLOBALS['modula_hash'] = $hash;
+       $GLOBALS['sum_modula']  = calculateSumFromHash($GLOBALS['modula_hash']);
+}
+
 /*
  * Calculate "genesis" hashes, please note that these "genesis strings" are now
  * known to the public as you can read them here in source code and therefore I
@@ -278,7 +306,7 @@ $gensisHashes = array(
        // FlightGear - Fly free!
        multipleHashString('FlightGear - Fly free!'),
        // Quote from Linus Torwalds
-       multipleHashString('Your code is shit.. your argument is shit.'),
+       multipleHashString('Your code is shit. Your argument is shit.'),
 );
 
 // Calculate "modula hash" from 1st/4th and 2nd/3rd
@@ -299,7 +327,7 @@ $sqrtHashes = array(
 );
 
 // Calulcate modula hash
-$GLOBALS['modula_hash'] = multipleHashString(modulaHash($sqrtHashes[0], $sqrtHashes[1]));
+setModulaHash(multipleHashString(modulaHash($sqrtHashes[0], $sqrtHashes[1])));
 
 // This is also the "genesis" hash and first root hash
 $GLOBALS['genesis_hash'] = $GLOBALS['modula_hash'];
@@ -312,10 +340,11 @@ print ('sqrtHashes=' . print_r($sqrtHashes, TRUE));
 print ('modulaHash=' . $GLOBALS['modula_hash'] . PHP_EOL);
 
 // Total reward + hashes
-$GLOBALS['total_reward'] = 0;
-$GLOBALS['total_hashes'] = 0;
-$GLOBALS['total_blocks'] = 0;
-$GLOBALS['found_time']   = microtime(TRUE);
+$GLOBALS['total_reward']   = 0;
+$GLOBALS['total_hashes']   = 0;
+$GLOBALS['total_found']    = 0;
+$GLOBALS['total_blocks']   = 0;
+$GLOBALS['found_time']     = microtime(TRUE);
 
 // Is the check point there?
 if (is_readable(CHECK_POINT)) {
@@ -326,17 +355,21 @@ if (is_readable(CHECK_POINT)) {
        $data = explode(':', $checkPoint);
 
        // Assert on count
-       assert(count($data) == 8);
+       assert(count($data) == 10);
 
        // 1st element is nonce, 2nd hash, 3rd found hashes
-       $GLOBALS['total_blocks'] = $data[0];
-       $GLOBALS['total_reward'] = $data[1];
-       $GLOBALS['total_hashes'] = $data[2];
-       $GLOBALS['cycles']       = intval($data[3]);
-       $GLOBALS['nonce']        = base64_decode($data[4]);
-       $GLOBALS['modula_hash']  = $data[5];
-       $GLOBALS['root_hash']    = $data[6];
-       $GLOBALS['found_hashes'] = unserialize(gzuncompress(base64_decode($data[7])));
+       $GLOBALS['total_blocks']   = $data[0];
+       $GLOBALS['total_reward']   = $data[1];
+       $GLOBALS['total_hashes']   = $data[2];
+       $GLOBALS['total_found']    = $data[3];
+       $GLOBALS['total_restarts'] = $data[4];
+       $GLOBALS['hash_cycles']    = intval($data[5]);
+       $GLOBALS['nonce']          = base64_decode($data[7]);
+       $GLOBALS['root_hash']      = $data[8];
+       $GLOBALS['found_hashes']   = unserialize(gzuncompress(base64_decode($data[9])));
+
+       // Set modula hash
+       setModulaHash($data[6]);
 } else {
        // Create nonce (small)
        initNonce();
@@ -353,7 +386,7 @@ while (TRUE) {
        $GLOBALS['hashes_block'] = 0;
        $hashrate = 0;
 
-       // Wait for BLOCK_SIZE iterations (= found hashes). This is one block
+       // Wait for block_size iterations (= found hashes). This is one block
        $timeBlock   = microtime(TRUE);
        $timeDisplay = $timeBlock;
        $GLOBALS['time_flush'] = $timeBlock;
@@ -361,13 +394,12 @@ while (TRUE) {
        // Time waited for a good block again (no iteration)
        $timeBadHashes = 0;
 
-       while (count($GLOBALS['found_hashes'][$GLOBALS['total_blocks']]) <= BLOCK_SIZE) {
+       while (count($GLOBALS['found_hashes'][$GLOBALS['total_blocks']]) <= $GLOBALS['block_size']) {
                // Create hash from modulaHash ("genesis hash") and nonce
-               $nonceHash = multipleHashString($GLOBALS['modula_hash'] . $GLOBALS['nonce']);
+               $nonceHash = multipleHashString($GLOBALS['nonce'] . $GLOBALS['modula_hash']);
 
                // Calculate sums
                $sumNonce  = calculateSumFromHash($nonceHash);
-               $sumModula = calculateSumFromHash($GLOBALS['modula_hash']);
 
                // Init counter
                $GLOBALS['iteration'] = 0;
@@ -375,12 +407,12 @@ while (TRUE) {
 
                // Now start the "mining" ...
                $timeHash = microtime(TRUE);
-               while ($sumNonce >= $sumModula) {
+               while ($sumNonce < $GLOBALS['sum_modula']) {
                        // Calculate new nonce
                        calculateNonce();
 
                        // And hash again
-                       $nonceHash = multipleHashString($GLOBALS['modula_hash'] . $GLOBALS['nonce']);
+                       $nonceHash = multipleHashString($GLOBALS['nonce'] . $GLOBALS['modula_hash']);
 
                        // Calculate sums
                        $sumNonce  = calculateSumFromHash($nonceHash);
@@ -389,7 +421,7 @@ while (TRUE) {
                        $testTime = abs(microtime(TRUE) - $timeDisplay);
 
                        // Calculate hashrate/sec
-                       $hashrate = 1 / $testTime * $GLOBALS['iteration_second'] * $GLOBALS['cycles'];
+                       $hashrate = 1 / $testTime * $GLOBALS['iteration_second'] * $GLOBALS['hash_cycles'];
 
                        // Only every second
                        if ($testTime >= 1) {
@@ -405,7 +437,7 @@ while (TRUE) {
                        $testTime = abs(microtime(TRUE) - $GLOBALS['time_flush']);
 
                        // Only once per 10 seconds
-                       if ($testTime >= FLUSH_BLOCKS_FILE_TIME) {
+                       if ($testTime >= $GLOBALS['flush_file_time']) {
                                // Flush check-point file
                                flushCheckPointFile($GLOBALS['modula_hash']);
                        } // END - if
@@ -414,7 +446,13 @@ while (TRUE) {
                        $testTime = abs(microtime(TRUE) - $GLOBALS['found_time']);
 
                        // Is the last found time to far away?
-                       if ($testTime >= RESTART_SEARCH_TIME) {
+                       if ($testTime >= $GLOBALS['restart_search_time']) {
+                               // Count up restart
+                               $GLOBALS['total_restarts']++;
+
+                               // Output message
+                               print('total_restarts=' . $GLOBALS['total_restarts'] . ' - Restarting ...');
+
                                // Count all root (genesis) hashes
                                $rootHashes = array();
                                foreach ($GLOBALS['found_hashes'] as $block) {
@@ -455,13 +493,13 @@ while (TRUE) {
 
                                // Search for latest best root hash
                                foreach ($GLOBALS['found_hashes'] as $block) {
-                                       // "Walk" through whole block counter-wise
-                                       for ($idx = (count($block) - 1); $idx > 0; $idx--) {
+                                       // "Walk" through whole block and search for first appearance of best root hash
+                                       foreach ($block as $idx => $hash) {
                                                // Is the root hash there?
-                                               if ($block[$idx]['root_hash'] == $bestRootHash) {
+                                               if ($hash['root_hash'] == $bestRootHash) {
                                                        // Set found modula hash as new root and current modula hash
-                                                       $GLOBALS['root_hash']   = $block[$idx]['modula_hash'];
-                                                       $GLOBALS['modula_hash'] = $block[$idx]['modula_hash'];
+                                                       $GLOBALS['root_hash']   = $hash['nonce_hash'];
+                                                       setModulaHash($hash['nonce_hash']);
                                                        print ('idx=' . $idx . ',modulaHash=' . $GLOBALS['root_hash'] . ' - Is now new root hash!' . PHP_EOL);
 
                                                        // Reset "found time" (when a hash was found)
@@ -483,7 +521,7 @@ while (TRUE) {
                        //print ('nonce=' . $GLOBALS['nonce'] . ',iteration=' . $GLOBALS['iteration'] . PHP_EOL);
                        //print ('nonceHash=' . $nonceHash . PHP_EOL);
                        //print ('sumNonce=' . $sumNonce . PHP_EOL);
-                       //print ('sumModula=' . $sumModula . PHP_EOL);
+                       //print ('sumModula=' . $GLOBALS['sum_modula'] . PHP_EOL);
                } // END - while
 
                // If the iteration is zero, then no hash is found
@@ -500,7 +538,7 @@ while (TRUE) {
                } // END - if
 
                // Add amount of hashes per block (multiple-hash)
-               $GLOBALS['hashes_block'] += $GLOBALS['iteration'] * $GLOBALS['cycles'] + $GLOBALS['cycles'];
+               $GLOBALS['hashes_block'] += $GLOBALS['iteration'] * $GLOBALS['hash_cycles'] + $GLOBALS['hash_cycles'];
 
                // Push found hash
                addFoundHash($nonceHash);
@@ -510,7 +548,7 @@ while (TRUE) {
        $timeBlock = abs(microtime(TRUE) - $timeBlock);
 
        // Calculate reward
-       $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $GLOBALS['hashes_block'] / BLOCK_SIZE * 1000;
+       $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $GLOBALS['hashes_block'] / $GLOBALS['block_size'] * 1000;
        print ('timeBlock=' . $timeBlock . ',timeBadHashes=' . $timeBadHashes . ',hashesPerBlock=' . $GLOBALS['hashes_block'] .',reward=' . $reward . PHP_EOL);
 
        // Block completed
@@ -528,7 +566,7 @@ while (TRUE) {
        $GLOBALS['total_reward'] += $reward;
 
        // Calculate average block value
-       $blockValue = $GLOBALS['total_reward'] / $GLOBALS['total_blocks'] * $GLOBALS['total_hashes'] / (BLOCK_SIZE * $GLOBALS['total_blocks']);
+       $blockValue = $GLOBALS['total_reward'] / $GLOBALS['total_blocks'] * $GLOBALS['total_hashes'] / ($GLOBALS['block_size'] * $GLOBALS['total_blocks']);
 
        // Calculate reward per hour (= 3600 seconds)
        $rewardPerHour = $GLOBALS['total_reward'] / abs(microtime(TRUE) - START_TIME) * 3600;