tx.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. package bolt
  2. import (
  3. "fmt"
  4. "io"
  5. "os"
  6. "sort"
  7. "strings"
  8. "time"
  9. "unsafe"
  10. )
  11. // txid represents the internal transaction identifier.
  12. type txid uint64
  13. // Tx represents a read-only or read/write transaction on the database.
  14. // Read-only transactions can be used for retrieving values for keys and creating cursors.
  15. // Read/write transactions can create and remove buckets and create and remove keys.
  16. //
  17. // IMPORTANT: You must commit or rollback transactions when you are done with
  18. // them. Pages can not be reclaimed by the writer until no more transactions
  19. // are using them. A long running read transaction can cause the database to
  20. // quickly grow.
  21. type Tx struct {
  22. writable bool
  23. managed bool
  24. db *DB
  25. meta *meta
  26. root Bucket
  27. pages map[pgid]*page
  28. stats TxStats
  29. commitHandlers []func()
  30. // WriteFlag specifies the flag for write-related methods like WriteTo().
  31. // Tx opens the database file with the specified flag to copy the data.
  32. //
  33. // By default, the flag is unset, which works well for mostly in-memory
  34. // workloads. For databases that are much larger than available RAM,
  35. // set the flag to syscall.O_DIRECT to avoid trashing the page cache.
  36. WriteFlag int
  37. }
  38. // init initializes the transaction.
  39. func (tx *Tx) init(db *DB) {
  40. tx.db = db
  41. tx.pages = nil
  42. // Copy the meta page since it can be changed by the writer.
  43. tx.meta = &meta{}
  44. db.meta().copy(tx.meta)
  45. // Copy over the root bucket.
  46. tx.root = newBucket(tx)
  47. tx.root.bucket = &bucket{}
  48. *tx.root.bucket = tx.meta.root
  49. // Increment the transaction id and add a page cache for writable transactions.
  50. if tx.writable {
  51. tx.pages = make(map[pgid]*page)
  52. tx.meta.txid += txid(1)
  53. }
  54. }
  55. // ID returns the transaction id.
  56. func (tx *Tx) ID() int {
  57. return int(tx.meta.txid)
  58. }
  59. // DB returns a reference to the database that created the transaction.
  60. func (tx *Tx) DB() *DB {
  61. return tx.db
  62. }
  63. // Size returns current database size in bytes as seen by this transaction.
  64. func (tx *Tx) Size() int64 {
  65. return int64(tx.meta.pgid) * int64(tx.db.pageSize)
  66. }
  67. // Writable returns whether the transaction can perform write operations.
  68. func (tx *Tx) Writable() bool {
  69. return tx.writable
  70. }
  71. // Cursor creates a cursor associated with the root bucket.
  72. // All items in the cursor will return a nil value because all root bucket keys point to buckets.
  73. // The cursor is only valid as long as the transaction is open.
  74. // Do not use a cursor after the transaction is closed.
  75. func (tx *Tx) Cursor() *Cursor {
  76. return tx.root.Cursor()
  77. }
  78. // Stats retrieves a copy of the current transaction statistics.
  79. func (tx *Tx) Stats() TxStats {
  80. return tx.stats
  81. }
  82. // Bucket retrieves a bucket by name.
  83. // Returns nil if the bucket does not exist.
  84. // The bucket instance is only valid for the lifetime of the transaction.
  85. func (tx *Tx) Bucket(name []byte) *Bucket {
  86. return tx.root.Bucket(name)
  87. }
  88. // CreateBucket creates a new bucket.
  89. // Returns an error if the bucket already exists, if the bucket name is blank, or if the bucket name is too long.
  90. // The bucket instance is only valid for the lifetime of the transaction.
  91. func (tx *Tx) CreateBucket(name []byte) (*Bucket, error) {
  92. return tx.root.CreateBucket(name)
  93. }
  94. // CreateBucketIfNotExists creates a new bucket if it doesn't already exist.
  95. // Returns an error if the bucket name is blank, or if the bucket name is too long.
  96. // The bucket instance is only valid for the lifetime of the transaction.
  97. func (tx *Tx) CreateBucketIfNotExists(name []byte) (*Bucket, error) {
  98. return tx.root.CreateBucketIfNotExists(name)
  99. }
  100. // DeleteBucket deletes a bucket.
  101. // Returns an error if the bucket cannot be found or if the key represents a non-bucket value.
  102. func (tx *Tx) DeleteBucket(name []byte) error {
  103. return tx.root.DeleteBucket(name)
  104. }
  105. // ForEach executes a function for each bucket in the root.
  106. // If the provided function returns an error then the iteration is stopped and
  107. // the error is returned to the caller.
  108. func (tx *Tx) ForEach(fn func(name []byte, b *Bucket) error) error {
  109. return tx.root.ForEach(func(k, v []byte) error {
  110. if err := fn(k, tx.root.Bucket(k)); err != nil {
  111. return err
  112. }
  113. return nil
  114. })
  115. }
  116. // OnCommit adds a handler function to be executed after the transaction successfully commits.
  117. func (tx *Tx) OnCommit(fn func()) {
  118. tx.commitHandlers = append(tx.commitHandlers, fn)
  119. }
  120. // Commit writes all changes to disk and updates the meta page.
  121. // Returns an error if a disk write error occurs, or if Commit is
  122. // called on a read-only transaction.
  123. func (tx *Tx) Commit() error {
  124. _assert(!tx.managed, "managed tx commit not allowed")
  125. if tx.db == nil {
  126. return ErrTxClosed
  127. } else if !tx.writable {
  128. return ErrTxNotWritable
  129. }
  130. // TODO(benbjohnson): Use vectorized I/O to write out dirty pages.
  131. // Rebalance nodes which have had deletions.
  132. var startTime = time.Now()
  133. tx.root.rebalance()
  134. if tx.stats.Rebalance > 0 {
  135. tx.stats.RebalanceTime += time.Since(startTime)
  136. }
  137. // spill data onto dirty pages.
  138. startTime = time.Now()
  139. if err := tx.root.spill(); err != nil {
  140. tx.rollback()
  141. return err
  142. }
  143. tx.stats.SpillTime += time.Since(startTime)
  144. // Free the old root bucket.
  145. tx.meta.root.root = tx.root.root
  146. opgid := tx.meta.pgid
  147. // Free the freelist and allocate new pages for it. This will overestimate
  148. // the size of the freelist but not underestimate the size (which would be bad).
  149. tx.db.freelist.free(tx.meta.txid, tx.db.page(tx.meta.freelist))
  150. p, err := tx.allocate((tx.db.freelist.size() / tx.db.pageSize) + 1)
  151. if err != nil {
  152. tx.rollback()
  153. return err
  154. }
  155. if err := tx.db.freelist.write(p); err != nil {
  156. tx.rollback()
  157. return err
  158. }
  159. tx.meta.freelist = p.id
  160. // If the high water mark has moved up then attempt to grow the database.
  161. if tx.meta.pgid > opgid {
  162. if err := tx.db.grow(int(tx.meta.pgid+1) * tx.db.pageSize); err != nil {
  163. tx.rollback()
  164. return err
  165. }
  166. }
  167. // Write dirty pages to disk.
  168. startTime = time.Now()
  169. if err := tx.write(); err != nil {
  170. tx.rollback()
  171. return err
  172. }
  173. // If strict mode is enabled then perform a consistency check.
  174. // Only the first consistency error is reported in the panic.
  175. if tx.db.StrictMode {
  176. ch := tx.Check()
  177. var errs []string
  178. for {
  179. err, ok := <-ch
  180. if !ok {
  181. break
  182. }
  183. errs = append(errs, err.Error())
  184. }
  185. if len(errs) > 0 {
  186. panic("check fail: " + strings.Join(errs, "\n"))
  187. }
  188. }
  189. // Write meta to disk.
  190. if err := tx.writeMeta(); err != nil {
  191. tx.rollback()
  192. return err
  193. }
  194. tx.stats.WriteTime += time.Since(startTime)
  195. // Finalize the transaction.
  196. tx.close()
  197. // Execute commit handlers now that the locks have been removed.
  198. for _, fn := range tx.commitHandlers {
  199. fn()
  200. }
  201. return nil
  202. }
  203. // Rollback closes the transaction and ignores all previous updates. Read-only
  204. // transactions must be rolled back and not committed.
  205. func (tx *Tx) Rollback() error {
  206. _assert(!tx.managed, "managed tx rollback not allowed")
  207. if tx.db == nil {
  208. return ErrTxClosed
  209. }
  210. tx.rollback()
  211. return nil
  212. }
  213. func (tx *Tx) rollback() {
  214. if tx.db == nil {
  215. return
  216. }
  217. // [Psiphon]
  218. // https://github.com/etcd-io/bbolt/commit/b3e98dcb3752e0a8d5db6503b80fe19e462fdb73
  219. // If the transaction failed due to mmap, rollback is futile.
  220. if tx.db.mmapErr != nil {
  221. tx.close()
  222. return
  223. }
  224. if tx.writable {
  225. tx.db.freelist.rollback(tx.meta.txid)
  226. tx.db.freelist.reload(tx.db.page(tx.db.meta().freelist))
  227. }
  228. tx.close()
  229. }
  230. func (tx *Tx) close() {
  231. if tx.db == nil {
  232. return
  233. }
  234. if tx.writable {
  235. // Grab freelist stats.
  236. var freelistFreeN = tx.db.freelist.free_count()
  237. var freelistPendingN = tx.db.freelist.pending_count()
  238. var freelistAlloc = tx.db.freelist.size()
  239. // Remove transaction ref & writer lock.
  240. tx.db.rwtx = nil
  241. tx.db.rwlock.Unlock()
  242. // Merge statistics.
  243. tx.db.statlock.Lock()
  244. tx.db.stats.FreePageN = freelistFreeN
  245. tx.db.stats.PendingPageN = freelistPendingN
  246. tx.db.stats.FreeAlloc = (freelistFreeN + freelistPendingN) * tx.db.pageSize
  247. tx.db.stats.FreelistInuse = freelistAlloc
  248. tx.db.stats.TxStats.add(&tx.stats)
  249. tx.db.statlock.Unlock()
  250. } else {
  251. tx.db.removeTx(tx)
  252. }
  253. // Clear all references.
  254. tx.db = nil
  255. tx.meta = nil
  256. tx.root = Bucket{tx: tx}
  257. tx.pages = nil
  258. }
  259. // Copy writes the entire database to a writer.
  260. // This function exists for backwards compatibility. Use WriteTo() instead.
  261. func (tx *Tx) Copy(w io.Writer) error {
  262. _, err := tx.WriteTo(w)
  263. return err
  264. }
  265. // WriteTo writes the entire database to a writer.
  266. // If err == nil then exactly tx.Size() bytes will be written into the writer.
  267. func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) {
  268. // Attempt to open reader with WriteFlag
  269. f, err := os.OpenFile(tx.db.path, os.O_RDONLY|tx.WriteFlag, 0)
  270. if err != nil {
  271. return 0, err
  272. }
  273. defer func() { _ = f.Close() }()
  274. // Generate a meta page. We use the same page data for both meta pages.
  275. buf := make([]byte, tx.db.pageSize)
  276. page := (*page)(unsafe.Pointer(&buf[0]))
  277. page.flags = metaPageFlag
  278. *page.meta() = *tx.meta
  279. // Write meta 0.
  280. page.id = 0
  281. page.meta().checksum = page.meta().sum64()
  282. nn, err := w.Write(buf)
  283. n += int64(nn)
  284. if err != nil {
  285. return n, fmt.Errorf("meta 0 copy: %s", err)
  286. }
  287. // Write meta 1 with a lower transaction id.
  288. page.id = 1
  289. page.meta().txid -= 1
  290. page.meta().checksum = page.meta().sum64()
  291. nn, err = w.Write(buf)
  292. n += int64(nn)
  293. if err != nil {
  294. return n, fmt.Errorf("meta 1 copy: %s", err)
  295. }
  296. // Move past the meta pages in the file.
  297. if _, err := f.Seek(int64(tx.db.pageSize*2), os.SEEK_SET); err != nil {
  298. return n, fmt.Errorf("seek: %s", err)
  299. }
  300. // Copy data pages.
  301. wn, err := io.CopyN(w, f, tx.Size()-int64(tx.db.pageSize*2))
  302. n += wn
  303. if err != nil {
  304. return n, err
  305. }
  306. return n, f.Close()
  307. }
  308. // CopyFile copies the entire database to file at the given path.
  309. // A reader transaction is maintained during the copy so it is safe to continue
  310. // using the database while a copy is in progress.
  311. func (tx *Tx) CopyFile(path string, mode os.FileMode) error {
  312. f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_TRUNC, mode)
  313. if err != nil {
  314. return err
  315. }
  316. err = tx.Copy(f)
  317. if err != nil {
  318. _ = f.Close()
  319. return err
  320. }
  321. return f.Close()
  322. }
  323. // Check performs several consistency checks on the database for this transaction.
  324. // An error is returned if any inconsistency is found.
  325. //
  326. // It can be safely run concurrently on a writable transaction. However, this
  327. // incurs a high cost for large databases and databases with a lot of subbuckets
  328. // because of caching. This overhead can be removed if running on a read-only
  329. // transaction, however, it is not safe to execute other writer transactions at
  330. // the same time.
  331. func (tx *Tx) Check() <-chan error {
  332. ch := make(chan error)
  333. // [Psiphon]
  334. // This code is modified to use the single-error check function while
  335. // preserving the existing bolt Check API.
  336. go func() {
  337. err := tx.check()
  338. if err != nil {
  339. ch <- err
  340. }
  341. close(ch)
  342. }()
  343. return ch
  344. }
  345. // [Psiphon]
  346. // SynchronousCheck performs the Check function in the current goroutine,
  347. // allowing the caller to recover from any panics or faults.
  348. func (tx *Tx) SynchronousCheck() error {
  349. return tx.check()
  350. }
  351. // [Psiphon]
  352. // check is modified to stop and return on the first error. This prevents some
  353. // long running loops, perhaps due to looping based on corrupt data, that we
  354. // have observed when testing check against corrupted database files. Since
  355. // Psiphon will recover by resetting (deleting) the datastore on any error,
  356. // more than one error is not useful information in our case.
  357. func (tx *Tx) check() error {
  358. // Check if any pages are double freed.
  359. freed := make(map[pgid]bool)
  360. all := make([]pgid, tx.db.freelist.count())
  361. tx.db.freelist.copyall(all)
  362. for _, id := range all {
  363. if freed[id] {
  364. return fmt.Errorf("page %d: already freed", id)
  365. }
  366. freed[id] = true
  367. }
  368. // Track every reachable page.
  369. reachable := make(map[pgid]*page)
  370. reachable[0] = tx.page(0) // meta0
  371. reachable[1] = tx.page(1) // meta1
  372. for i := uint32(0); i <= tx.page(tx.meta.freelist).overflow; i++ {
  373. reachable[tx.meta.freelist+pgid(i)] = tx.page(tx.meta.freelist)
  374. }
  375. // Recursively check buckets.
  376. err := tx.checkBucket(&tx.root, reachable, freed)
  377. if err != nil {
  378. return err
  379. }
  380. // Ensure all pages below high water mark are either reachable or freed.
  381. for i := pgid(0); i < tx.meta.pgid; i++ {
  382. _, isReachable := reachable[i]
  383. if !isReachable && !freed[i] {
  384. return fmt.Errorf("page %d: unreachable unfreed", int(i))
  385. }
  386. }
  387. return nil
  388. }
  389. // [Psiphon]
  390. // checkBucket is modified to stop and return on the first error.
  391. func (tx *Tx) checkBucket(b *Bucket, reachable map[pgid]*page, freed map[pgid]bool) error {
  392. // Ignore inline buckets.
  393. if b.root == 0 {
  394. return nil
  395. }
  396. var err error
  397. // Check every page used by this bucket.
  398. b.tx.forEachPage(b.root, 0, func(p *page, _ int) {
  399. if p.id > tx.meta.pgid {
  400. err = fmt.Errorf("page %d: out of bounds: %d", int(p.id), int(b.tx.meta.pgid))
  401. return
  402. }
  403. // Ensure each page is only referenced once.
  404. for i := pgid(0); i <= pgid(p.overflow); i++ {
  405. var id = p.id + i
  406. if _, ok := reachable[id]; ok {
  407. err = fmt.Errorf("page %d: multiple references", int(id))
  408. return
  409. }
  410. reachable[id] = p
  411. }
  412. // We should only encounter un-freed leaf and branch pages.
  413. if freed[p.id] {
  414. err = fmt.Errorf("page %d: reachable freed", int(p.id))
  415. return
  416. } else if (p.flags&branchPageFlag) == 0 && (p.flags&leafPageFlag) == 0 {
  417. err = fmt.Errorf("page %d: invalid type: %s", int(p.id), p.typ())
  418. return
  419. }
  420. })
  421. if err != nil {
  422. return err
  423. }
  424. // Check each bucket within this bucket.
  425. return b.ForEach(func(k, v []byte) error {
  426. if child := b.Bucket(k); child != nil {
  427. err := tx.checkBucket(child, reachable, freed)
  428. if err != nil {
  429. return err
  430. }
  431. }
  432. return nil
  433. })
  434. }
  435. // allocate returns a contiguous block of memory starting at a given page.
  436. func (tx *Tx) allocate(count int) (*page, error) {
  437. p, err := tx.db.allocate(count)
  438. if err != nil {
  439. return nil, err
  440. }
  441. // Save to our page cache.
  442. tx.pages[p.id] = p
  443. // Update statistics.
  444. tx.stats.PageCount++
  445. tx.stats.PageAlloc += count * tx.db.pageSize
  446. return p, nil
  447. }
  448. // write writes any dirty pages to disk.
  449. func (tx *Tx) write() error {
  450. // Sort pages by id.
  451. pages := make(pages, 0, len(tx.pages))
  452. for _, p := range tx.pages {
  453. pages = append(pages, p)
  454. }
  455. // Clear out page cache early.
  456. tx.pages = make(map[pgid]*page)
  457. sort.Sort(pages)
  458. // Write pages to disk in order.
  459. for _, p := range pages {
  460. size := (int(p.overflow) + 1) * tx.db.pageSize
  461. offset := int64(p.id) * int64(tx.db.pageSize)
  462. // Write out page in "max allocation" sized chunks.
  463. ptr := (*[maxAllocSize]byte)(unsafe.Pointer(p))
  464. for {
  465. // Limit our write to our max allocation size.
  466. sz := size
  467. if sz > maxAllocSize-1 {
  468. sz = maxAllocSize - 1
  469. }
  470. // Write chunk to disk.
  471. buf := ptr[:sz]
  472. if _, err := tx.db.ops.writeAt(buf, offset); err != nil {
  473. return err
  474. }
  475. // Update statistics.
  476. tx.stats.Write++
  477. // Exit inner for loop if we've written all the chunks.
  478. size -= sz
  479. if size == 0 {
  480. break
  481. }
  482. // Otherwise move offset forward and move pointer to next chunk.
  483. offset += int64(sz)
  484. ptr = (*[maxAllocSize]byte)(unsafe.Pointer(&ptr[sz]))
  485. }
  486. }
  487. // Ignore file sync if flag is set on DB.
  488. if !tx.db.NoSync || IgnoreNoSync {
  489. if err := fdatasync(tx.db); err != nil {
  490. return err
  491. }
  492. }
  493. // Put small pages back to page pool.
  494. for _, p := range pages {
  495. // Ignore page sizes over 1 page.
  496. // These are allocated using make() instead of the page pool.
  497. if int(p.overflow) != 0 {
  498. continue
  499. }
  500. buf := (*[maxAllocSize]byte)(unsafe.Pointer(p))[:tx.db.pageSize]
  501. // See https://go.googlesource.com/go/+/f03c9202c43e0abb130669852082117ca50aa9b1
  502. for i := range buf {
  503. buf[i] = 0
  504. }
  505. tx.db.pagePool.Put(buf)
  506. }
  507. return nil
  508. }
  509. // writeMeta writes the meta to the disk.
  510. func (tx *Tx) writeMeta() error {
  511. // Create a temporary buffer for the meta page.
  512. buf := make([]byte, tx.db.pageSize)
  513. p := tx.db.pageInBuffer(buf, 0)
  514. tx.meta.write(p)
  515. // Write the meta page to file.
  516. if _, err := tx.db.ops.writeAt(buf, int64(p.id)*int64(tx.db.pageSize)); err != nil {
  517. return err
  518. }
  519. if !tx.db.NoSync || IgnoreNoSync {
  520. if err := fdatasync(tx.db); err != nil {
  521. return err
  522. }
  523. }
  524. // Update statistics.
  525. tx.stats.Write++
  526. return nil
  527. }
  528. // page returns a reference to the page with a given id.
  529. // If page has been written to then a temporary buffered page is returned.
  530. func (tx *Tx) page(id pgid) *page {
  531. // Check the dirty pages first.
  532. if tx.pages != nil {
  533. if p, ok := tx.pages[id]; ok {
  534. return p
  535. }
  536. }
  537. // Otherwise return directly from the mmap.
  538. return tx.db.page(id)
  539. }
  540. // forEachPage iterates over every page within a given page and executes a function.
  541. func (tx *Tx) forEachPage(pgid pgid, depth int, fn func(*page, int)) {
  542. p := tx.page(pgid)
  543. // Execute function.
  544. fn(p, depth)
  545. // Recursively loop over children.
  546. if (p.flags & branchPageFlag) != 0 {
  547. for i := 0; i < int(p.count); i++ {
  548. elem := p.branchPageElement(uint16(i))
  549. tx.forEachPage(elem.pgid, depth+1, fn)
  550. }
  551. }
  552. }
  553. // Page returns page information for a given page number.
  554. // This is only safe for concurrent use when used by a writable transaction.
  555. func (tx *Tx) Page(id int) (*PageInfo, error) {
  556. if tx.db == nil {
  557. return nil, ErrTxClosed
  558. } else if pgid(id) >= tx.meta.pgid {
  559. return nil, nil
  560. }
  561. // Build the page info.
  562. p := tx.db.page(pgid(id))
  563. info := &PageInfo{
  564. ID: id,
  565. Count: int(p.count),
  566. OverflowCount: int(p.overflow),
  567. }
  568. // Determine the type (or if it's free).
  569. if tx.db.freelist.freed(pgid(id)) {
  570. info.Type = "free"
  571. } else {
  572. info.Type = p.typ()
  573. }
  574. return info, nil
  575. }
  576. // TxStats represents statistics about the actions performed by the transaction.
  577. type TxStats struct {
  578. // Page statistics.
  579. PageCount int // number of page allocations
  580. PageAlloc int // total bytes allocated
  581. // Cursor statistics.
  582. CursorCount int // number of cursors created
  583. // Node statistics
  584. NodeCount int // number of node allocations
  585. NodeDeref int // number of node dereferences
  586. // Rebalance statistics.
  587. Rebalance int // number of node rebalances
  588. RebalanceTime time.Duration // total time spent rebalancing
  589. // Split/Spill statistics.
  590. Split int // number of nodes split
  591. Spill int // number of nodes spilled
  592. SpillTime time.Duration // total time spent spilling
  593. // Write statistics.
  594. Write int // number of writes performed
  595. WriteTime time.Duration // total time spent writing to disk
  596. }
  597. func (s *TxStats) add(other *TxStats) {
  598. s.PageCount += other.PageCount
  599. s.PageAlloc += other.PageAlloc
  600. s.CursorCount += other.CursorCount
  601. s.NodeCount += other.NodeCount
  602. s.NodeDeref += other.NodeDeref
  603. s.Rebalance += other.Rebalance
  604. s.RebalanceTime += other.RebalanceTime
  605. s.Split += other.Split
  606. s.Spill += other.Spill
  607. s.SpillTime += other.SpillTime
  608. s.Write += other.Write
  609. s.WriteTime += other.WriteTime
  610. }
  611. // Sub calculates and returns the difference between two sets of transaction stats.
  612. // This is useful when obtaining stats at two different points and time and
  613. // you need the performance counters that occurred within that time span.
  614. func (s *TxStats) Sub(other *TxStats) TxStats {
  615. var diff TxStats
  616. diff.PageCount = s.PageCount - other.PageCount
  617. diff.PageAlloc = s.PageAlloc - other.PageAlloc
  618. diff.CursorCount = s.CursorCount - other.CursorCount
  619. diff.NodeCount = s.NodeCount - other.NodeCount
  620. diff.NodeDeref = s.NodeDeref - other.NodeDeref
  621. diff.Rebalance = s.Rebalance - other.Rebalance
  622. diff.RebalanceTime = s.RebalanceTime - other.RebalanceTime
  623. diff.Split = s.Split - other.Split
  624. diff.Spill = s.Spill - other.Spill
  625. diff.SpillTime = s.SpillTime - other.SpillTime
  626. diff.Write = s.Write - other.Write
  627. diff.WriteTime = s.WriteTime - other.WriteTime
  628. return diff
  629. }