Complex classes like Jetpack_Sync_Sender often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Jetpack_Sync_Sender, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
12 | class Jetpack_Sync_Sender { |
||
13 | |||
14 | const NEXT_SYNC_TIME_OPTION_NAME = 'jetpack_next_sync_time'; |
||
15 | const WPCOM_ERROR_SYNC_DELAY = 60; |
||
16 | const QUEUE_LOCKED_SYNC_DELAY = 10; |
||
17 | |||
18 | private $dequeue_max_bytes; |
||
19 | private $upload_max_bytes; |
||
20 | private $upload_max_rows; |
||
21 | private $max_dequeue_time; |
||
22 | private $sync_wait_time; |
||
23 | private $sync_wait_threshold; |
||
24 | private $enqueue_wait_time; |
||
25 | private $sync_queue; |
||
26 | private $full_sync_queue; |
||
27 | private $codec; |
||
28 | |||
29 | // singleton functions |
||
30 | private static $instance; |
||
31 | |||
32 | public static function get_instance() { |
||
39 | |||
40 | // this is necessary because you can't use "new" when you declare instance properties >:( |
||
41 | protected function __construct() { |
||
45 | |||
46 | private function init() { |
||
51 | |||
52 | public function get_next_sync_time( $queue_name ) { |
||
55 | |||
56 | public function set_next_sync_time( $time, $queue_name ) { |
||
59 | |||
60 | public function do_full_sync() { |
||
61 | $this->continue_full_sync_enqueue(); |
||
62 | return $this->do_sync_and_set_delays( $this->full_sync_queue ); |
||
63 | } |
||
64 | |||
65 | private function continue_full_sync_enqueue() { |
||
66 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
||
67 | return false; |
||
68 | } |
||
69 | |||
70 | if ( $this->get_next_sync_time( 'full-sync-enqueue' ) > microtime( true ) ) { |
||
71 | return false; |
||
72 | } |
||
73 | |||
74 | Jetpack_Sync_Modules::get_module( 'full-sync' )->continue_enqueuing(); |
||
75 | |||
76 | $this->set_next_sync_time( time() + $this->get_enqueue_wait_time(), 'full-sync-enqueue' ); |
||
77 | } |
||
78 | |||
79 | public function do_sync() { |
||
80 | return $this->do_sync_and_set_delays( $this->sync_queue ); |
||
81 | } |
||
82 | |||
83 | public function do_sync_and_set_delays( $queue ) { |
||
84 | // don't sync if importing |
||
85 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
||
86 | return false; |
||
87 | } |
||
88 | |||
89 | // don't sync if we are throttled |
||
90 | if ( $this->get_next_sync_time( $queue->id ) > microtime( true ) ) { |
||
91 | return false; |
||
92 | } |
||
93 | |||
94 | $start_time = microtime( true ); |
||
95 | |||
96 | Jetpack_Sync_Settings::set_is_syncing( true ); |
||
97 | |||
98 | $sync_result = $this->do_sync_for_queue( $queue ); |
||
99 | |||
100 | Jetpack_Sync_Settings::set_is_syncing( false ); |
||
101 | |||
102 | $exceeded_sync_wait_threshold = ( microtime( true ) - $start_time ) > (double) $this->get_sync_wait_threshold(); |
||
103 | |||
104 | if ( is_wp_error( $sync_result ) ) { |
||
105 | if ( 'unclosed_buffer' === $sync_result->get_error_code() ) { |
||
106 | $this->set_next_sync_time( time() + self::QUEUE_LOCKED_SYNC_DELAY, $queue->id ); |
||
107 | } else { |
||
108 | $this->set_next_sync_time( time() + self::WPCOM_ERROR_SYNC_DELAY, $queue->id ); |
||
109 | } |
||
110 | $sync_result = false; |
||
111 | } elseif ( $exceeded_sync_wait_threshold ) { |
||
112 | // if we actually sent data and it took a while, wait before sending again |
||
113 | $this->set_next_sync_time( time() + $this->get_sync_wait_time(), $queue->id ); |
||
114 | } |
||
115 | |||
116 | return $sync_result; |
||
117 | } |
||
118 | |||
119 | public function get_items_to_send( $buffer, $encode = true ) { |
||
120 | // track how long we've been processing so we can avoid request timeouts |
||
121 | $start_time = microtime( true ); |
||
122 | $upload_size = 0; |
||
123 | $items_to_send = array(); |
||
124 | $items = $buffer->get_items(); |
||
125 | // set up current screen to avoid errors rendering content |
||
126 | require_once( ABSPATH . 'wp-admin/includes/class-wp-screen.php' ); |
||
127 | require_once( ABSPATH . 'wp-admin/includes/screen.php' ); |
||
128 | set_current_screen( 'sync' ); |
||
129 | $skipped_items_ids = array(); |
||
130 | // we estimate the total encoded size as we go by encoding each item individually |
||
131 | // this is expensive, but the only way to really know :/ |
||
132 | foreach ( $items as $key => $item ) { |
||
133 | // Suspending cache addition help prevent overloading in memory cache of large sites. |
||
134 | wp_suspend_cache_addition( true ); |
||
135 | /** |
||
136 | * Modify the data within an action before it is serialized and sent to the server |
||
137 | * For example, during full sync this expands Post ID's into full Post objects, |
||
138 | * so that we don't have to serialize the whole object into the queue. |
||
139 | * |
||
140 | * @since 4.2.0 |
||
141 | * |
||
142 | * @param array The action parameters |
||
143 | * @param int The ID of the user who triggered the action |
||
144 | */ |
||
145 | $item[1] = apply_filters( 'jetpack_sync_before_send_' . $item[0], $item[1], $item[2] ); |
||
146 | wp_suspend_cache_addition( false ); |
||
147 | if ( $item[1] === false ) { |
||
148 | $skipped_items_ids[] = $key; |
||
149 | continue; |
||
150 | } |
||
151 | $encoded_item = $encode ? $this->codec->encode( $item ) : $item; |
||
152 | $upload_size += strlen( $encoded_item ); |
||
153 | if ( $upload_size > $this->upload_max_bytes && count( $items_to_send ) > 0 ) { |
||
154 | break; |
||
155 | } |
||
156 | $items_to_send[ $key ] = $encoded_item; |
||
157 | if ( microtime(true) - $start_time > $this->max_dequeue_time ) { |
||
158 | break; |
||
159 | } |
||
160 | } |
||
161 | |||
162 | return array( $items_to_send, $skipped_items_ids, $items ); |
||
163 | } |
||
164 | |||
165 | public function do_sync_for_queue( $queue ) { |
||
166 | |||
167 | do_action( 'jetpack_sync_before_send_queue_' . $queue->id ); |
||
168 | if ( $queue->size() === 0 ) { |
||
169 | return false; |
||
170 | } |
||
171 | // now that we're sure we are about to sync, try to |
||
172 | // ignore user abort so we can avoid getting into a |
||
173 | // bad state |
||
174 | if ( function_exists( 'ignore_user_abort' ) ) { |
||
175 | ignore_user_abort( true ); |
||
176 | } |
||
177 | $buffer = $queue->checkout_with_memory_limit( $this->dequeue_max_bytes, $this->upload_max_rows ); |
||
178 | if ( ! $buffer ) { |
||
179 | // buffer has no items |
||
180 | return false; |
||
181 | } |
||
182 | if ( is_wp_error( $buffer ) ) { |
||
183 | return $buffer; |
||
184 | } |
||
185 | |||
186 | list( $items_to_send, $skipped_items_ids, $items ) = $this->get_items_to_send( $buffer, true ); |
||
187 | |||
188 | /** |
||
189 | * Fires when data is ready to send to the server. |
||
190 | * Return false or WP_Error to abort the sync (e.g. if there's an error) |
||
191 | * The items will be automatically re-sent later |
||
192 | * |
||
193 | * @since 4.2.0 |
||
194 | * |
||
195 | * @param array $data The action buffer |
||
196 | * @param string $codec The codec name used to encode the data |
||
197 | * @param double $time The current time |
||
198 | * @param string $queue The queue used to send ('sync' or 'full_sync') |
||
199 | */ |
||
200 | Jetpack_Sync_Settings::set_is_sending( true ); |
||
201 | $processed_item_ids = apply_filters( 'jetpack_sync_send_data', $items_to_send, $this->codec->name(), microtime( true ), $queue->id ); |
||
202 | Jetpack_Sync_Settings::set_is_sending( false ); |
||
203 | |||
204 | if ( ! $processed_item_ids || is_wp_error( $processed_item_ids ) ) { |
||
205 | $checked_in_item_ids = $queue->checkin( $buffer ); |
||
206 | if ( is_wp_error( $checked_in_item_ids ) ) { |
||
207 | error_log( 'Error checking in buffer: ' . $checked_in_item_ids->get_error_message() ); |
||
208 | $queue->force_checkin(); |
||
209 | } |
||
210 | if ( is_wp_error( $processed_item_ids ) ) { |
||
211 | return $processed_item_ids; |
||
212 | } |
||
213 | // returning a WP_Error is a sign to the caller that we should wait a while |
||
214 | // before syncing again |
||
215 | return new WP_Error( 'server_error' ); |
||
216 | } else { |
||
217 | // detect if the last item ID was an error |
||
218 | $had_wp_error = is_wp_error( end( $processed_item_ids ) ); |
||
219 | if ( $had_wp_error ) { |
||
220 | $wp_error = array_pop( $processed_item_ids ); |
||
221 | } |
||
222 | // also checkin any items that were skipped |
||
223 | if ( count( $skipped_items_ids ) > 0 ) { |
||
224 | $processed_item_ids = array_merge( $processed_item_ids, $skipped_items_ids ); |
||
225 | } |
||
226 | $processed_items = array_intersect_key( $items, array_flip( $processed_item_ids ) ); |
||
227 | /** |
||
228 | * Allows us to keep track of all the actions that have been sent. |
||
229 | * Allows us to calculate the progress of specific actions. |
||
230 | * |
||
231 | * @since 4.2.0 |
||
232 | * |
||
233 | * @param array $processed_actions The actions that we send successfully. |
||
234 | */ |
||
235 | do_action( 'jetpack_sync_processed_actions', $processed_items ); |
||
236 | $queue->close( $buffer, $processed_item_ids ); |
||
237 | // returning a WP_Error is a sign to the caller that we should wait a while |
||
238 | // before syncing again |
||
239 | if ( $had_wp_error ) { |
||
240 | return $wp_error; |
||
|
|||
241 | } |
||
242 | } |
||
243 | return true; |
||
244 | } |
||
245 | |||
246 | function get_sync_queue() { |
||
249 | |||
250 | function get_full_sync_queue() { |
||
253 | |||
254 | function get_codec() { |
||
257 | |||
258 | function send_checksum() { |
||
263 | |||
264 | function reset_sync_queue() { |
||
267 | |||
268 | function set_dequeue_max_bytes( $size ) { |
||
271 | |||
272 | // in bytes |
||
273 | function set_upload_max_bytes( $max_bytes ) { |
||
276 | |||
277 | // in rows |
||
278 | function set_upload_max_rows( $max_rows ) { |
||
281 | |||
282 | // in seconds |
||
283 | function set_sync_wait_time( $seconds ) { |
||
286 | |||
287 | function get_sync_wait_time() { |
||
290 | |||
291 | function set_enqueue_wait_time( $seconds ) { |
||
292 | $this->enqueue_wait_time = $seconds; |
||
293 | } |
||
294 | |||
295 | function get_enqueue_wait_time() { |
||
296 | return $this->enqueue_wait_time; |
||
297 | } |
||
298 | |||
299 | // in seconds |
||
300 | function set_sync_wait_threshold( $seconds ) { |
||
303 | |||
304 | function get_sync_wait_threshold() { |
||
307 | |||
308 | // in seconds |
||
309 | function set_max_dequeue_time( $seconds ) { |
||
312 | |||
313 | function set_defaults() { |
||
329 | |||
330 | function reset_data() { |
||
343 | |||
344 | function uninstall() { |
||
354 | } |
||
355 |
If you define a variable conditionally, it can happen that it is not defined for all execution paths.
Let’s take a look at an example:
In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.
Available Fixes
Check for existence of the variable explicitly:
Define a default value for the variable:
Add a value for the missing path: