Use prettier caching feature
[benchmarks-js.git] / busy-wait.js
index ed06c52a682ab408449f273e1fe03333917ac0bc..9d0d31b4d6ee0285a9fe7fcd19a54e96e17de913 100644 (file)
@@ -1,48 +1,76 @@
-const Benchmark = require('benchmark')
-const { LIST_FORMATTER } = require('./benchmark-utils')
-
-const suite = new Benchmark.Suite()
+const Benchmark = require('benny')
+const { sleep } = require('./benchmark-utils')
 
 const timeout = 2000
+const interval = 1000
 
 /**
  * @param timeoutMs
  */
 function dummyTimeoutBusyWait (timeoutMs) {
-  const timeoutDateMs = Date.now() + timeoutMs
-  do {} while (Date.now() < timeoutDateMs)
+  const timeoutTimestampMs = Date.now() + timeoutMs
+  // eslint-disable-next-line no-empty
+  do {} while (Date.now() < timeoutTimestampMs)
+}
+
+/**
+ * @param timeoutMs
+ */
+async function sleepTimeoutBusyWait (timeoutMs) {
+  const timeoutTimestampMs = Date.now() + timeoutMs
+  do {
+    await sleep(interval)
+  } while (Date.now() < timeoutTimestampMs)
+}
+
+/**
+ * @param timeoutMs
+ * @param intervalMs
+ */
+async function divideAndConquerTimeoutBusyWait (
+  timeoutMs,
+  intervalMs = interval
+) {
+  const tries = Math.round(timeoutMs / intervalMs)
+  let count = 0
+  do {
+    count++
+    await sleep(intervalMs)
+  } while (count <= tries)
 }
 
 /**
  * @param timeoutMs
- * @param delayMs
+ * @param intervalMs
  */
-function setIntervalTimeoutBusyWait (timeoutMs, delayMs = 200) {
-  const tries = Math.round(timeoutMs / delayMs)
+function setIntervalTimeoutBusyWait (timeoutMs, intervalMs = interval) {
+  const tries = Math.round(timeoutMs / intervalMs)
   let count = 0
   const triesSetInterval = setInterval(() => {
     count++
     if (count === tries) {
       clearInterval(triesSetInterval)
     }
-  }, delayMs)
+  }, intervalMs)
 }
 
-suite
-  .add('dummyTimeoutBusyWait', function () {
+Benchmark.suite(
+  'Busy wait',
+  Benchmark.add('dummyTimeoutBusyWait', () => {
     dummyTimeoutBusyWait(timeout)
-  })
-  .add('setIntervalTimeoutBusyWait', function () {
+  }),
+  Benchmark.add('sleepTimeoutBusyWait', async () => {
+    await sleepTimeoutBusyWait(timeout)
+  }),
+  Benchmark.add('divideAndConquerTimeoutBusyWait', async () => {
+    await divideAndConquerTimeoutBusyWait(timeout)
+  }),
+  Benchmark.add('setIntervalTimeoutBusyWait', () => {
     setIntervalTimeoutBusyWait(timeout)
-  })
-  .on('cycle', function (event) {
-    console.log(event.target.toString())
-  })
-  .on('complete', function () {
-    console.log(
-      'Fastest is ' + LIST_FORMATTER.format(this.filter('fastest').map('name'))
-    )
-    // eslint-disable-next-line no-process-exit
-    process.exit()
-  })
-  .run()
+  }),
+  Benchmark.cycle(),
+  Benchmark.complete(),
+  Benchmark.save({ file: 'busy-wait', format: 'json', details: true }),
+  Benchmark.save({ file: 'busy-wait', format: 'chart.html', details: true }),
+  Benchmark.save({ file: 'busy-wait', format: 'table.html', details: true })
+)