File tree 4 files changed +20
-25
lines changed
4 files changed +20
-25
lines changed Original file line number Diff line number Diff line change 10
10
use Doctrine \DBAL \Driver \Statement as StatementInterface ;
11
11
use Doctrine \DBAL \ParameterType ;
12
12
use Doctrine \Deprecations \Deprecation ;
13
+ use Throwable ;
13
14
14
15
use function assert ;
15
16
use function db2_bind_param ;
30
31
use const DB2_LONG ;
31
32
use const DB2_PARAM_FILE ;
32
33
use const DB2_PARAM_IN ;
33
- use const SEEK_CUR ;
34
+ use const SEEK_SET ;
34
35
35
36
final class Statement implements StatementInterface
36
37
{
@@ -214,25 +215,23 @@ private function createTemporaryFile()
214
215
*/
215
216
private function copyStreamToStream ($ source , $ target ): void
216
217
{
217
- $ resettable = false ;
218
+ $ resetTo = false ;
218
219
try {
219
- if (stream_get_meta_data ($ resource )['seekable ' ]) {
220
- $ resettable = true ;
221
- $ position = ftell ($ resource );
220
+ if (stream_get_meta_data ($ source )['seekable ' ]) {
221
+ $ resetTo = ftell ($ source );
222
222
}
223
223
} catch (Throwable $ e ) {
224
224
// Swallow
225
225
}
226
226
227
- $ bytesCopied = @stream_copy_to_stream ($ source , $ target );
228
- if ($ bytesCopied === false ) {
227
+ if (@stream_copy_to_stream ($ source , $ target ) === false ) {
229
228
throw CannotCopyStreamToStream::new (error_get_last ());
230
229
}
231
230
232
- if (! $ resettable ) {
231
+ if ($ resetTo === false ) {
233
232
return ;
234
233
}
235
234
236
- fseek ($ source , - $ bytesCopied , SEEK_CUR );
235
+ fseek ($ source , $ resetTo , SEEK_SET );
237
236
}
238
237
}
Original file line number Diff line number Diff line change 13
13
use Doctrine \Deprecations \Deprecation ;
14
14
use mysqli_sql_exception ;
15
15
use mysqli_stmt ;
16
+ use Throwable ;
16
17
17
18
use function array_fill ;
18
19
use function assert ;
@@ -215,7 +216,7 @@ private function bindTypedParameters(): void
215
216
private function sendLongData (array $ streams ): void
216
217
{
217
218
foreach ($ streams as $ paramNr => $ stream ) {
218
- $ resetTo = - 1 ;
219
+ $ resetTo = false ;
219
220
try {
220
221
if (stream_get_meta_data ($ stream )['seekable ' ]) {
221
222
$ resetTo = ftell ($ stream );
@@ -237,7 +238,7 @@ private function sendLongData(array $streams): void
237
238
}
238
239
}
239
240
} finally {
240
- if ($ resetTo !== - 1 ) {
241
+ if ($ resetTo !== false ) {
241
242
fseek ($ stream , $ resetTo , SEEK_SET );
242
243
}
243
244
}
Original file line number Diff line number Diff line change @@ -169,40 +169,34 @@ private function trackParamResource($resource): void
169
169
* restored to after the statement is executed. Call immediately
170
170
* before execute (not during bindValue) to get the most accurate offset.
171
171
*
172
- * @returns int[]|null Return offsets to restore if needed.
172
+ * @return int[]|null Return offsets to restore if needed.
173
173
*/
174
174
private function getResourceOffsets ()
175
175
{
176
176
$ resources = &$ this ->paramResources ;
177
177
if ($ resources === null ) {
178
- return ;
178
+ return null ;
179
179
}
180
180
181
181
$ count = count ($ resources );
182
182
$ resourceOffsets = null ;
183
183
$ deref = [];
184
184
for ($ i = 0 ; $ i < $ count ; ++$ i ) {
185
185
$ resource = $ resources [$ i ];
186
- $ position = - 1 ;
186
+ $ position = false ;
187
187
try {
188
188
if (stream_get_meta_data ($ resource )['seekable ' ]) {
189
189
$ position = ftell ($ resource );
190
190
}
191
191
} catch (Throwable $ e ) {
192
192
// Swallow
193
193
} finally {
194
- if ($ position === - 1 ) {
194
+ if ($ position === false ) {
195
195
if ($ resourceOffsets !== null ) {
196
- $ resourceOffsets [] = $ position ;
196
+ $ resourceOffsets [] = - 1 ;
197
197
}
198
198
} else {
199
- if ($ resourceOffsets === null ) {
200
- $ resourceOffsets = [];
201
- if ($ i !== 0 ) {
202
- array_fill (0 , $ i , -1 );
203
- }
204
- }
205
-
199
+ $ resourceOffsets ??= $ i !== 0 ? array_fill (0 , $ i , -1 ) : [];
206
200
$ resourceOffsets [] = $ position ;
207
201
}
208
202
}
Original file line number Diff line number Diff line change 7
7
use Doctrine \DBAL \ParameterType ;
8
8
use Doctrine \Deprecations \Deprecation ;
9
9
use PgSql \Connection as PgSqlConnection ;
10
+ use Throwable ;
10
11
use TypeError ;
11
12
12
13
use function assert ;
@@ -158,7 +159,7 @@ public function execute($params = null): Result
158
159
case ParameterType::LARGE_OBJECT :
159
160
$ isResource = $ value !== null && is_resource ($ value );
160
161
$ resource = $ value ;
161
- $ resetTo = - 1 ;
162
+ $ resetTo = false ;
162
163
if ($ isResource ) {
163
164
try {
164
165
if (stream_get_meta_data ($ resource )['seekable ' ]) {
@@ -174,7 +175,7 @@ public function execute($params = null): Result
174
175
$ isResource ? stream_get_contents ($ value ) : $ value ,
175
176
);
176
177
177
- if ($ resetTo !== - 1 ) {
178
+ if ($ resetTo !== false ) {
178
179
fseek ($ resource , $ resetTo , SEEK_SET );
179
180
}
180
181
You can’t perform that action at this time.
0 commit comments