IDBAccessObject.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * This file contains database access object related constants.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @ingroup Database
  22. */
  23. /**
  24. * Interface for database access objects.
  25. *
  26. * Classes using this support a set of constants in a bitfield argument to their data loading
  27. * functions. In general, objects should assume READ_NORMAL if no flags are explicitly given,
  28. * though certain objects may assume READ_LATEST for common use case or legacy reasons.
  29. *
  30. * There are four types of reads:
  31. * - READ_NORMAL : Potentially cached read of data (e.g. from a replica DB or stale replica)
  32. * - READ_LATEST : Up-to-date read as of transaction start (e.g. from master or a quorum read)
  33. * - READ_LOCKING : Up-to-date read as of now, that locks (shared) the records
  34. * - READ_EXCLUSIVE : Up-to-date read as of now, that locks (exclusive) the records
  35. * All record locks persist for the duration of the transaction.
  36. *
  37. * A special constant READ_LATEST_IMMUTABLE can be used for fetching append-only data. Such
  38. * data is either (a) on a replica DB and up-to-date or (b) not yet there, but on the master/quorum.
  39. * Because the data is append-only, it can never be stale on a replica DB if present.
  40. *
  41. * Callers should use READ_NORMAL (or pass in no flags) unless the read determines a write.
  42. * In theory, such cases may require READ_LOCKING, though to avoid contention, READ_LATEST is
  43. * often good enough. If UPDATE race condition checks are required on a row and expensive code
  44. * must run after the row is fetched to determine the UPDATE, it may help to do something like:
  45. * - a) Start transaction
  46. * - b) Read the current row with READ_LATEST
  47. * - c) Determine the new row (expensive, so we don't want to hold locks now)
  48. * - d) Re-read the current row with READ_LOCKING; if it changed then bail out
  49. * - e) otherwise, do the updates
  50. * - f) Commit transaction
  51. *
  52. * @since 1.20
  53. */
  54. interface IDBAccessObject {
  55. /** Constants for object loading bitfield flags (higher => higher QoS) */
  56. /** @var int Read from a replica DB/non-quorum */
  57. const READ_NORMAL = 0;
  58. /** @var int Read from the master/quorum */
  59. const READ_LATEST = 1;
  60. /* @var int Read from the master/quorum and lock out other writers */
  61. const READ_LOCKING = self::READ_LATEST | 2; // READ_LATEST (1) and "LOCK IN SHARE MODE" (2)
  62. /** @var int Read from the master/quorum and lock out other writers and locking readers */
  63. const READ_EXCLUSIVE = self::READ_LOCKING | 4; // READ_LOCKING (3) and "FOR UPDATE" (4)
  64. /** @var int Read from a replica DB or without a quorum, using the master/quorum on miss */
  65. const READ_LATEST_IMMUTABLE = 8;
  66. // Convenience constant for tracking how data was loaded (higher => higher QoS)
  67. const READ_NONE = -1; // not loaded yet (or the object was cleared)
  68. }