Automattic /
jetpack
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * The class that describes the Queue for the sync package. |
||
| 4 | * |
||
| 5 | * @package automattic/jetpack-sync |
||
| 6 | */ |
||
| 7 | |||
| 8 | namespace Automattic\Jetpack\Sync; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * A persistent queue that can be flushed in increments of N items, |
||
| 12 | * and which blocks reads until checked-out buffers are checked in or |
||
| 13 | * closed. This uses raw SQL for two reasons: speed, and not triggering |
||
| 14 | * tons of added_option callbacks. |
||
| 15 | */ |
||
| 16 | class Queue { |
||
| 17 | /** |
||
| 18 | * The queue id. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $id; |
||
| 23 | /** |
||
| 24 | * Keeps track of the rows. |
||
| 25 | * |
||
| 26 | * @var int |
||
| 27 | */ |
||
| 28 | private $row_iterator; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Queue constructor. |
||
| 32 | * |
||
| 33 | * @param string $id Name of the queue. |
||
| 34 | */ |
||
| 35 | public function __construct( $id ) { |
||
| 36 | $this->id = str_replace( '-', '_', $id ); // Necessary to ensure we don't have ID collisions in the SQL. |
||
| 37 | $this->row_iterator = 0; |
||
| 38 | $this->random_int = wp_rand( 1, 1000000 ); |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Add a single item to the queue. |
||
| 43 | * |
||
| 44 | * @param object $item Event object to add to queue. |
||
| 45 | */ |
||
| 46 | public function add( $item ) { |
||
| 47 | global $wpdb; |
||
| 48 | $added = false; |
||
| 49 | // This basically tries to add the option until enough time has elapsed that |
||
| 50 | // it has a unique (microtime-based) option key. |
||
| 51 | while ( ! $added ) { |
||
| 52 | $rows_added = $wpdb->query( |
||
| 53 | $wpdb->prepare( |
||
| 54 | "INSERT INTO $wpdb->options (option_name, option_value, autoload) VALUES (%s, %s,%s)", |
||
| 55 | $this->get_next_data_row_option_name(), |
||
| 56 | serialize( $item ), // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize |
||
| 57 | 'no' |
||
| 58 | ) |
||
| 59 | ); |
||
| 60 | $added = ( 0 !== $rows_added ); |
||
| 61 | } |
||
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Insert all the items in a single SQL query. May be subject to query size limits! |
||
| 66 | * |
||
| 67 | * @param array $items Array of events to add to the queue. |
||
| 68 | * |
||
| 69 | * @return bool|\WP_Error |
||
| 70 | */ |
||
| 71 | public function add_all( $items ) { |
||
| 72 | global $wpdb; |
||
| 73 | $base_option_name = $this->get_next_data_row_option_name(); |
||
| 74 | |||
| 75 | $query = "INSERT INTO $wpdb->options (option_name, option_value, autoload) VALUES "; |
||
| 76 | |||
| 77 | $rows = array(); |
||
| 78 | $count_items = count( $items ); |
||
| 79 | for ( $i = 0; $i < $count_items; ++$i ) { |
||
| 80 | $option_name = esc_sql( $base_option_name . '-' . $i ); |
||
| 81 | $option_value = esc_sql( serialize( $items[ $i ] ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize |
||
| 82 | $rows[] = "('$option_name', '$option_value', 'no')"; |
||
| 83 | } |
||
| 84 | |||
| 85 | $rows_added = $wpdb->query( $query . join( ',', $rows ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared |
||
| 86 | |||
| 87 | if ( count( $items ) === $rows_added ) { |
||
| 88 | return new \WP_Error( 'row_count_mismatch', "The number of rows inserted didn't match the size of the input array" ); |
||
| 89 | } |
||
| 90 | return true; |
||
| 91 | } |
||
| 92 | |||
| 93 | /** |
||
| 94 | * Get the front-most item on the queue without checking it out. |
||
| 95 | * |
||
| 96 | * @param int $count Number of items to return when looking at the items. |
||
| 97 | * |
||
| 98 | * @return array |
||
| 99 | */ |
||
| 100 | public function peek( $count = 1 ) { |
||
| 101 | $items = $this->fetch_items( $count ); |
||
| 102 | if ( $items ) { |
||
| 103 | return Utils::get_item_values( $items ); |
||
| 104 | } |
||
| 105 | |||
| 106 | return array(); |
||
| 107 | } |
||
| 108 | |||
| 109 | /** |
||
| 110 | * Gets items with particular IDs. |
||
| 111 | * |
||
| 112 | * @param array $item_ids Array of item IDs to retrieve. |
||
| 113 | * |
||
| 114 | * @return array |
||
| 115 | */ |
||
| 116 | public function peek_by_id( $item_ids ) { |
||
| 117 | $items = $this->fetch_items_by_id( $item_ids ); |
||
| 118 | if ( $items ) { |
||
| 119 | return Utils::get_item_values( $items ); |
||
| 120 | } |
||
| 121 | |||
| 122 | return array(); |
||
| 123 | } |
||
| 124 | |||
| 125 | /** |
||
| 126 | * Gets the queue lag. |
||
| 127 | * Lag is the difference in time between the age of the oldest item |
||
| 128 | * (aka first or frontmost item) and the current time. |
||
| 129 | * |
||
| 130 | * @param microtime $now The current time in microtime. |
||
| 131 | * |
||
| 132 | * @return float|int|mixed|null |
||
| 133 | */ |
||
| 134 | public function lag( $now = null ) { |
||
| 135 | global $wpdb; |
||
| 136 | |||
| 137 | $first_item_name = $wpdb->get_var( |
||
| 138 | $wpdb->prepare( |
||
| 139 | "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s ORDER BY option_name ASC LIMIT 1", |
||
| 140 | "jpsq_{$this->id}-%" |
||
| 141 | ) |
||
| 142 | ); |
||
| 143 | |||
| 144 | if ( ! $first_item_name ) { |
||
| 145 | return 0; |
||
| 146 | } |
||
| 147 | |||
| 148 | if ( null === $now ) { |
||
| 149 | $now = microtime( true ); |
||
| 150 | } |
||
| 151 | |||
| 152 | // Break apart the item name to get the timestamp. |
||
| 153 | $matches = null; |
||
| 154 | if ( preg_match( '/^jpsq_' . $this->id . '-(\d+\.\d+)-/', $first_item_name, $matches ) ) { |
||
| 155 | return $now - floatval( $matches[1] ); |
||
| 156 | } else { |
||
| 157 | return 0; |
||
| 158 | } |
||
| 159 | } |
||
| 160 | |||
| 161 | /** |
||
| 162 | * Resets the queue. |
||
| 163 | */ |
||
| 164 | public function reset() { |
||
| 165 | global $wpdb; |
||
| 166 | $this->delete_checkout_id(); |
||
| 167 | $wpdb->query( |
||
| 168 | $wpdb->prepare( |
||
| 169 | "DELETE FROM $wpdb->options WHERE option_name LIKE %s", |
||
| 170 | "jpsq_{$this->id}-%" |
||
| 171 | ) |
||
| 172 | ); |
||
| 173 | } |
||
| 174 | |||
| 175 | /** |
||
| 176 | * Return the size of the queue. |
||
| 177 | * |
||
| 178 | * @return int |
||
| 179 | */ |
||
| 180 | public function size() { |
||
| 181 | global $wpdb; |
||
| 182 | |||
| 183 | return (int) $wpdb->get_var( |
||
| 184 | $wpdb->prepare( |
||
| 185 | "SELECT count(*) FROM $wpdb->options WHERE option_name LIKE %s", |
||
| 186 | "jpsq_{$this->id}-%" |
||
| 187 | ) |
||
| 188 | ); |
||
| 189 | } |
||
| 190 | |||
| 191 | /** |
||
| 192 | * Lets you know if there is any items in the queue. |
||
| 193 | * |
||
| 194 | * We use this peculiar implementation because it's much faster than count(*). |
||
| 195 | * |
||
| 196 | * @return bool |
||
| 197 | */ |
||
| 198 | public function has_any_items() { |
||
| 199 | global $wpdb; |
||
| 200 | $value = $wpdb->get_var( |
||
| 201 | $wpdb->prepare( |
||
| 202 | "SELECT exists( SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s )", |
||
| 203 | "jpsq_{$this->id}-%" |
||
| 204 | ) |
||
| 205 | ); |
||
| 206 | |||
| 207 | return ( '1' === $value ); |
||
| 208 | } |
||
| 209 | |||
| 210 | /** |
||
| 211 | * Used to checkout the queue. |
||
| 212 | * |
||
| 213 | * @param int $buffer_size Size of the buffer to checkout. |
||
| 214 | * |
||
| 215 | * @return Automattic\Jetpack\Sync\Queue_Buffer|bool|int|\WP_Error |
||
| 216 | */ |
||
| 217 | public function checkout( $buffer_size ) { |
||
| 218 | if ( $this->get_checkout_id() ) { |
||
| 219 | return new \WP_Error( 'unclosed_buffer', 'There is an unclosed buffer' ); |
||
| 220 | } |
||
| 221 | |||
| 222 | $buffer_id = uniqid(); |
||
| 223 | |||
| 224 | $result = $this->set_checkout_id( $buffer_id ); |
||
| 225 | |||
| 226 | if ( ! $result || is_wp_error( $result ) ) { |
||
| 227 | return $result; |
||
| 228 | } |
||
| 229 | |||
| 230 | $items = $this->fetch_items( $buffer_size ); |
||
| 231 | |||
| 232 | if ( count( $items ) === 0 ) { |
||
| 233 | return false; |
||
| 234 | } |
||
| 235 | |||
| 236 | $buffer = new Queue_Buffer( $buffer_id, array_slice( $items, 0, $buffer_size ) ); |
||
| 237 | |||
| 238 | return $buffer; |
||
| 239 | } |
||
| 240 | |||
| 241 | /** |
||
| 242 | * Given a list of items return the items ids. |
||
| 243 | * |
||
| 244 | * @param array $items List of item objects. |
||
| 245 | * |
||
| 246 | * @return array Ids of the items. |
||
| 247 | */ |
||
| 248 | public function get_ids( $items ) { |
||
| 249 | return array_map( |
||
| 250 | function( $item ) { |
||
| 251 | return $item->id; |
||
| 252 | }, |
||
| 253 | $items |
||
| 254 | ); |
||
| 255 | } |
||
| 256 | |||
| 257 | /** |
||
| 258 | * Pop elements from the queue. |
||
| 259 | * |
||
| 260 | * @param int $limit Number of items to pop from the queue. |
||
| 261 | * |
||
| 262 | * @return array|object|null |
||
| 263 | */ |
||
| 264 | public function pop( $limit ) { |
||
| 265 | $items = $this->fetch_items( $limit ); |
||
| 266 | |||
| 267 | $ids = $this->get_ids( $items ); |
||
| 268 | |||
| 269 | $this->delete( $ids ); |
||
| 270 | |||
| 271 | return $items; |
||
| 272 | } |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Get the items from the queue with a memory limit. |
||
| 276 | * |
||
| 277 | * This checks out rows until it either empties the queue or hits a certain memory limit |
||
| 278 | * it loads the sizes from the DB first so that it doesn't accidentally |
||
| 279 | * load more data into memory than it needs to. |
||
| 280 | * The only way it will load more items than $max_size is if a single queue item |
||
| 281 | * exceeds the memory limit, but in that case it will send that item by itself. |
||
| 282 | * |
||
| 283 | * @param int $max_memory (bytes) Maximum memory threshold. |
||
| 284 | * @param int $max_buffer_size Maximum buffer size (number of items). |
||
| 285 | * |
||
| 286 | * @return Automattic\Jetpack\Sync\Queue_Buffer|bool|int|\WP_Error |
||
| 287 | */ |
||
| 288 | public function checkout_with_memory_limit( $max_memory, $max_buffer_size = 500 ) { |
||
| 289 | if ( $this->get_checkout_id() ) { |
||
| 290 | return new \WP_Error( 'unclosed_buffer', 'There is an unclosed buffer' ); |
||
| 291 | } |
||
| 292 | |||
| 293 | $buffer_id = uniqid(); |
||
| 294 | |||
| 295 | $result = $this->set_checkout_id( $buffer_id ); |
||
| 296 | |||
| 297 | if ( ! $result || is_wp_error( $result ) ) { |
||
| 298 | return $result; |
||
| 299 | } |
||
| 300 | |||
| 301 | // Get the map of buffer_id -> memory_size. |
||
| 302 | global $wpdb; |
||
| 303 | |||
| 304 | $items_with_size = $wpdb->get_results( |
||
| 305 | $wpdb->prepare( |
||
| 306 | "SELECT option_name AS id, LENGTH(option_value) AS value_size FROM $wpdb->options WHERE option_name LIKE %s ORDER BY option_name ASC LIMIT %d", |
||
| 307 | "jpsq_{$this->id}-%", |
||
| 308 | $max_buffer_size |
||
| 309 | ), |
||
| 310 | OBJECT |
||
| 311 | ); |
||
| 312 | |||
| 313 | if ( count( $items_with_size ) === 0 ) { |
||
| 314 | return false; |
||
| 315 | } |
||
| 316 | |||
| 317 | $total_memory = 0; |
||
| 318 | $max_item_id = $items_with_size[0]->id; |
||
| 319 | $min_item_id = $max_item_id; |
||
| 320 | |||
| 321 | foreach ( $items_with_size as $id => $item_with_size ) { |
||
| 322 | $total_memory += $item_with_size->value_size; |
||
| 323 | |||
| 324 | // If this is the first item and it exceeds memory, allow loop to continue |
||
| 325 | // we will exit on the next iteration instead. |
||
| 326 | if ( $total_memory > $max_memory && $id > 0 ) { |
||
| 327 | break; |
||
| 328 | } |
||
| 329 | |||
| 330 | $max_item_id = $item_with_size->id; |
||
| 331 | } |
||
| 332 | |||
| 333 | $query = $wpdb->prepare( |
||
| 334 | "SELECT option_name AS id, option_value AS value FROM $wpdb->options WHERE option_name >= %s and option_name <= %s ORDER BY option_name ASC", |
||
| 335 | $min_item_id, |
||
| 336 | $max_item_id |
||
| 337 | ); |
||
| 338 | |||
| 339 | $items = $wpdb->get_results( $query, OBJECT ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared |
||
| 340 | foreach ( $items as $item ) { |
||
| 341 | $item->value = maybe_unserialize( $item->value ); |
||
| 342 | } |
||
| 343 | |||
| 344 | if ( count( $items ) === 0 ) { |
||
| 345 | $this->delete_checkout_id(); |
||
| 346 | |||
| 347 | return false; |
||
| 348 | } |
||
| 349 | |||
| 350 | $buffer = new Queue_Buffer( $buffer_id, $items ); |
||
| 351 | |||
| 352 | return $buffer; |
||
| 353 | } |
||
| 354 | |||
| 355 | /** |
||
| 356 | * Check in the queue. |
||
| 357 | * |
||
| 358 | * @param Automattic\Jetpack\Sync\Queue_Buffer $buffer Queue_Buffer object. |
||
| 359 | * |
||
| 360 | * @return bool|\WP_Error |
||
| 361 | */ |
||
| 362 | public function checkin( $buffer ) { |
||
| 363 | $is_valid = $this->validate_checkout( $buffer ); |
||
| 364 | |||
| 365 | if ( is_wp_error( $is_valid ) ) { |
||
| 366 | return $is_valid; |
||
| 367 | } |
||
| 368 | |||
| 369 | $this->delete_checkout_id(); |
||
| 370 | |||
| 371 | return true; |
||
| 372 | } |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Close the buffer. |
||
| 376 | * |
||
| 377 | * @param Automattic\Jetpack\Sync\Queue_Buffer $buffer Queue_Buffer object. |
||
| 378 | * @param null|array $ids_to_remove Ids to remove from the queue. |
||
| 379 | * |
||
| 380 | * @return bool|\WP_Error |
||
| 381 | */ |
||
| 382 | public function close( $buffer, $ids_to_remove = null ) { |
||
| 383 | $is_valid = $this->validate_checkout( $buffer ); |
||
| 384 | |||
| 385 | if ( is_wp_error( $is_valid ) ) { |
||
| 386 | // Always delete ids_to_remove even when buffer is no longer checked-out. |
||
| 387 | // They were processed by WP.com so safe to remove from queue. |
||
| 388 | if ( ! is_null( $ids_to_remove ) ) { |
||
| 389 | $this->delete( $ids_to_remove ); |
||
| 390 | } |
||
| 391 | return $is_valid; |
||
| 392 | } |
||
| 393 | |||
| 394 | $this->delete_checkout_id(); |
||
| 395 | |||
| 396 | // By default clear all items in the buffer. |
||
| 397 | if ( is_null( $ids_to_remove ) ) { |
||
| 398 | $ids_to_remove = $buffer->get_item_ids(); |
||
| 399 | } |
||
| 400 | |||
| 401 | $this->delete( $ids_to_remove ); |
||
| 402 | |||
| 403 | return true; |
||
| 404 | } |
||
| 405 | |||
| 406 | /** |
||
| 407 | * Delete elements from the queue. |
||
| 408 | * |
||
| 409 | * @param array $ids Ids to delete. |
||
| 410 | * |
||
| 411 | * @return bool|int |
||
| 412 | */ |
||
| 413 | private function delete( $ids ) { |
||
| 414 | if ( 0 === count( $ids ) ) { |
||
| 415 | return 0; |
||
| 416 | } |
||
| 417 | global $wpdb; |
||
| 418 | $sql = "DELETE FROM $wpdb->options WHERE option_name IN (" . implode( ', ', array_fill( 0, count( $ids ), '%s' ) ) . ')'; |
||
| 419 | $query = call_user_func_array( array( $wpdb, 'prepare' ), array_merge( array( $sql ), $ids ) ); |
||
| 420 | |||
| 421 | return $wpdb->query( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared |
||
| 422 | } |
||
| 423 | |||
| 424 | /** |
||
| 425 | * Flushes all items from the queue. |
||
| 426 | * |
||
| 427 | * @return array |
||
| 428 | */ |
||
| 429 | public function flush_all() { |
||
| 430 | $items = Utils::get_item_values( $this->fetch_items() ); |
||
| 431 | $this->reset(); |
||
| 432 | |||
| 433 | return $items; |
||
| 434 | } |
||
| 435 | |||
| 436 | /** |
||
| 437 | * Get all the items from the queue. |
||
| 438 | * |
||
| 439 | * @return array|object|null |
||
| 440 | */ |
||
| 441 | public function get_all() { |
||
| 442 | return $this->fetch_items(); |
||
| 443 | } |
||
| 444 | |||
| 445 | /** |
||
| 446 | * Forces Checkin of the queue. |
||
| 447 | * Use with caution, this could allow multiple processes to delete |
||
| 448 | * and send from the queue at the same time |
||
| 449 | */ |
||
| 450 | public function force_checkin() { |
||
| 451 | $this->delete_checkout_id(); |
||
| 452 | } |
||
| 453 | |||
| 454 | /** |
||
| 455 | * Locks checkouts from the queue |
||
| 456 | * tries to wait up to $timeout seconds for the queue to be empty. |
||
| 457 | * |
||
| 458 | * @param int $timeout The wait time in seconds for the queue to be empty. |
||
| 459 | * |
||
| 460 | * @return bool|int|\WP_Error |
||
| 461 | */ |
||
| 462 | public function lock( $timeout = 30 ) { |
||
| 463 | $tries = 0; |
||
| 464 | |||
| 465 | while ( $this->has_any_items() && $tries < $timeout ) { |
||
| 466 | sleep( 1 ); |
||
| 467 | ++$tries; |
||
| 468 | } |
||
| 469 | |||
| 470 | if ( 30 === $tries ) { |
||
| 471 | return new \WP_Error( 'lock_timeout', 'Timeout waiting for sync queue to empty' ); |
||
| 472 | } |
||
| 473 | |||
| 474 | if ( $this->get_checkout_id() ) { |
||
| 475 | return new \WP_Error( 'unclosed_buffer', 'There is an unclosed buffer' ); |
||
| 476 | } |
||
| 477 | |||
| 478 | // Hopefully this means we can acquire a checkout? |
||
| 479 | $result = $this->set_checkout_id( 'lock' ); |
||
| 480 | |||
| 481 | if ( ! $result || is_wp_error( $result ) ) { |
||
| 482 | return $result; |
||
| 483 | } |
||
| 484 | |||
| 485 | return true; |
||
| 486 | } |
||
| 487 | |||
| 488 | /** |
||
| 489 | * Unlocks the queue. |
||
| 490 | * |
||
| 491 | * @return bool|int |
||
| 492 | */ |
||
| 493 | public function unlock() { |
||
| 494 | return $this->delete_checkout_id(); |
||
| 495 | } |
||
| 496 | |||
| 497 | /** |
||
| 498 | * This option is specifically chosen to, as much as possible, preserve time order |
||
| 499 | * and minimise the possibility of collisions between multiple processes working |
||
| 500 | * at the same time. |
||
| 501 | * |
||
| 502 | * @return string |
||
| 503 | */ |
||
| 504 | protected function generate_option_name_timestamp() { |
||
| 505 | return sprintf( '%.6f', microtime( true ) ); |
||
| 506 | } |
||
| 507 | |||
| 508 | /** |
||
| 509 | * Gets the checkout ID. |
||
| 510 | * |
||
| 511 | * @return bool|string |
||
| 512 | */ |
||
| 513 | private function get_checkout_id() { |
||
| 514 | global $wpdb; |
||
| 515 | $checkout_value = $wpdb->get_var( |
||
| 516 | $wpdb->prepare( |
||
| 517 | "SELECT option_value FROM $wpdb->options WHERE option_name = %s", |
||
| 518 | $this->get_lock_option_name() |
||
| 519 | ) |
||
| 520 | ); |
||
| 521 | |||
| 522 | if ( $checkout_value ) { |
||
| 523 | list( $checkout_id, $timestamp ) = explode( ':', $checkout_value ); |
||
| 524 | if ( intval( $timestamp ) > time() ) { |
||
| 525 | return $checkout_id; |
||
| 526 | } |
||
| 527 | } |
||
| 528 | |||
| 529 | return false; |
||
| 530 | } |
||
| 531 | |||
| 532 | /** |
||
| 533 | * Sets the checkout id. |
||
| 534 | * |
||
| 535 | * @param string $checkout_id The ID of the checkout. |
||
| 536 | * |
||
| 537 | * @return bool|int |
||
| 538 | */ |
||
| 539 | private function set_checkout_id( $checkout_id ) { |
||
| 540 | global $wpdb; |
||
| 541 | |||
| 542 | $expires = time() + Defaults::$default_sync_queue_lock_timeout; |
||
| 543 | $updated_num = $wpdb->query( |
||
| 544 | $wpdb->prepare( |
||
| 545 | "UPDATE $wpdb->options SET option_value = %s WHERE option_name = %s", |
||
| 546 | "$checkout_id:$expires", |
||
| 547 | $this->get_lock_option_name() |
||
| 548 | ) |
||
| 549 | ); |
||
| 550 | |||
| 551 | if ( ! $updated_num ) { |
||
| 552 | $updated_num = $wpdb->query( |
||
| 553 | $wpdb->prepare( |
||
| 554 | "INSERT INTO $wpdb->options ( option_name, option_value, autoload ) VALUES ( %s, %s, 'no' )", |
||
| 555 | $this->get_lock_option_name(), |
||
| 556 | "$checkout_id:$expires" |
||
| 557 | ) |
||
| 558 | ); |
||
| 559 | } |
||
| 560 | |||
| 561 | return $updated_num; |
||
| 562 | } |
||
| 563 | |||
| 564 | /** |
||
| 565 | * Deletes the checkout ID. |
||
| 566 | * |
||
| 567 | * @return bool|int |
||
| 568 | */ |
||
| 569 | private function delete_checkout_id() { |
||
| 570 | global $wpdb; |
||
| 571 | // Rather than delete, which causes fragmentation, we update in place. |
||
| 572 | return $wpdb->query( |
||
| 573 | $wpdb->prepare( |
||
| 574 | "UPDATE $wpdb->options SET option_value = %s WHERE option_name = %s", |
||
| 575 | '0:0', |
||
| 576 | $this->get_lock_option_name() |
||
| 577 | ) |
||
| 578 | ); |
||
| 579 | |||
| 580 | } |
||
| 581 | |||
| 582 | /** |
||
| 583 | * Return the lock option name. |
||
| 584 | * |
||
| 585 | * @return string |
||
| 586 | */ |
||
| 587 | private function get_lock_option_name() { |
||
| 588 | return "jpsq_{$this->id}_checkout"; |
||
| 589 | } |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Return the next data row option name. |
||
| 593 | * |
||
| 594 | * @return string |
||
| 595 | */ |
||
| 596 | private function get_next_data_row_option_name() { |
||
| 597 | $timestamp = $this->generate_option_name_timestamp(); |
||
| 598 | |||
| 599 | // Row iterator is used to avoid collisions where we're writing data waaay fast in a single process. |
||
| 600 | if ( PHP_INT_MAX === $this->row_iterator ) { |
||
| 601 | $this->row_iterator = 0; |
||
| 602 | } else { |
||
| 603 | $this->row_iterator += 1; |
||
| 604 | } |
||
| 605 | |||
| 606 | return 'jpsq_' . $this->id . '-' . $timestamp . '-' . $this->random_int . '-' . $this->row_iterator; |
||
| 607 | } |
||
| 608 | |||
| 609 | /** |
||
| 610 | * Return the items in the queue. |
||
| 611 | * |
||
| 612 | * @param null|int $limit Limit to the number of items we fetch at once. |
||
| 613 | * |
||
| 614 | * @return array|object|null |
||
| 615 | */ |
||
| 616 | private function fetch_items( $limit = null ) { |
||
| 617 | global $wpdb; |
||
| 618 | |||
| 619 | if ( $limit ) { |
||
|
0 ignored issues
–
show
|
|||
| 620 | $items = $wpdb->get_results( |
||
| 621 | $wpdb->prepare( |
||
| 622 | "SELECT option_name AS id, option_value AS value FROM $wpdb->options WHERE option_name LIKE %s ORDER BY option_name ASC LIMIT %d", |
||
| 623 | "jpsq_{$this->id}-%", |
||
| 624 | $limit |
||
| 625 | ), |
||
| 626 | OBJECT |
||
| 627 | ); |
||
| 628 | } else { |
||
| 629 | $items = $wpdb->get_results( |
||
| 630 | $wpdb->prepare( |
||
| 631 | "SELECT option_name AS id, option_value AS value FROM $wpdb->options WHERE option_name LIKE %s ORDER BY option_name ASC", |
||
| 632 | "jpsq_{$this->id}-%" |
||
| 633 | ), |
||
| 634 | OBJECT |
||
| 635 | ); |
||
| 636 | } |
||
| 637 | |||
| 638 | return $this->unserialize_values( $items ); |
||
| 639 | |||
| 640 | } |
||
| 641 | |||
| 642 | /** |
||
| 643 | * Return items with specific ids. |
||
| 644 | * |
||
| 645 | * @param array $items_ids Array of event ids. |
||
| 646 | * |
||
| 647 | * @return array|object|null |
||
| 648 | */ |
||
| 649 | private function fetch_items_by_id( $items_ids ) { |
||
| 650 | global $wpdb; |
||
| 651 | |||
| 652 | $ids_placeholders = implode( ', ', array_fill( 0, count( $items_ids ), '%s' ) ); |
||
| 653 | $query_with_placeholders = "SELECT option_name AS id, option_value AS value |
||
| 654 | FROM $wpdb->options |
||
| 655 | WHERE option_name IN ( $ids_placeholders )"; |
||
| 656 | $items = $wpdb->get_results( |
||
| 657 | $wpdb->prepare( |
||
| 658 | $query_with_placeholders, // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared |
||
| 659 | $items_ids |
||
| 660 | ), |
||
| 661 | OBJECT |
||
| 662 | ); |
||
| 663 | |||
| 664 | return $this->unserialize_values( $items ); |
||
| 665 | } |
||
| 666 | |||
| 667 | /** |
||
| 668 | * Unserialize item values. |
||
| 669 | * |
||
| 670 | * @param array $items Events from the Queue to be serialized. |
||
| 671 | * |
||
| 672 | * @return mixed |
||
| 673 | */ |
||
| 674 | private function unserialize_values( $items ) { |
||
| 675 | array_walk( |
||
| 676 | $items, |
||
| 677 | function( $item ) { |
||
| 678 | $item->value = maybe_unserialize( $item->value ); |
||
| 679 | } |
||
| 680 | ); |
||
| 681 | |||
| 682 | return $items; |
||
| 683 | |||
| 684 | } |
||
| 685 | |||
| 686 | /** |
||
| 687 | * Return true if the buffer is still valid or an Error other wise. |
||
| 688 | * |
||
| 689 | * @param Automattic\Jetpack\Sync\Queue_Buffer $buffer The Queue_Buffer. |
||
| 690 | * |
||
| 691 | * @return bool|\WP_Error |
||
| 692 | */ |
||
| 693 | private function validate_checkout( $buffer ) { |
||
| 694 | if ( ! $buffer instanceof Queue_Buffer ) { |
||
| 695 | return new \WP_Error( 'not_a_buffer', 'You must checkin an instance of Automattic\\Jetpack\\Sync\\Queue_Buffer' ); |
||
| 696 | } |
||
| 697 | |||
| 698 | $checkout_id = $this->get_checkout_id(); |
||
| 699 | |||
| 700 | if ( ! $checkout_id ) { |
||
| 701 | return new \WP_Error( 'buffer_not_checked_out', 'There are no checked out buffers' ); |
||
| 702 | } |
||
| 703 | |||
| 704 | // TODO: change to strict comparison. |
||
| 705 | if ( $checkout_id != $buffer->id ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison |
||
| 706 | return new \WP_Error( 'buffer_mismatch', 'The buffer you checked in was not checked out' ); |
||
| 707 | } |
||
| 708 | |||
| 709 | return true; |
||
| 710 | } |
||
| 711 | } |
||
| 712 |
In PHP, under loose comparison (like
==, or!=, orswitchconditions), values of different types might be equal.For
integervalues, zero is a special case, in particular the following results might be unexpected: