forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.cc
More file actions
796 lines (684 loc) · 27.2 KB
/
Copy pathdiff.cc
File metadata and controls
796 lines (684 loc) · 27.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "arrow/array/diff.h"
#include <algorithm>
#include <chrono>
#include <functional>
#include <memory>
#include <sstream>
#include <string>
#include <string_view>
#include <type_traits>
#include <utility>
#include <vector>
#include "arrow/array/array_base.h"
#include "arrow/array/array_decimal.h"
#include "arrow/array/array_nested.h"
#include "arrow/array/array_primitive.h"
#include "arrow/buffer.h"
#include "arrow/buffer_builder.h"
#include "arrow/extension_type.h"
#include "arrow/memory_pool.h"
#include "arrow/status.h"
#include "arrow/type.h"
#include "arrow/type_traits.h"
#include "arrow/util/bit_util.h"
#include "arrow/util/checked_cast.h"
#include "arrow/util/logging.h"
#include "arrow/util/range.h"
#include "arrow/util/string.h"
#include "arrow/vendored/datetime.h"
#include "arrow/visit_type_inline.h"
namespace arrow {
using internal::checked_cast;
using internal::checked_pointer_cast;
using internal::MakeLazyRange;
template <typename ArrayType>
auto GetView(const ArrayType& array, int64_t index) -> decltype(array.GetView(index)) {
return array.GetView(index);
}
struct Slice {
const Array* array_;
int64_t offset_, length_;
bool operator==(const Slice& other) const {
return length_ == other.length_ &&
array_->RangeEquals(offset_, offset_ + length_, other.offset_, *other.array_);
}
bool operator!=(const Slice& other) const { return !(*this == other); }
};
template <typename ArrayType, typename T = typename ArrayType::TypeClass,
typename = enable_if_list_like<T>>
static Slice GetView(const ArrayType& array, int64_t index) {
return Slice{array.values().get(), array.value_offset(index),
array.value_length(index)};
}
struct UnitSlice {
const Array* array_;
int64_t offset_;
bool operator==(const UnitSlice& other) const {
return array_->RangeEquals(offset_, offset_ + 1, other.offset_, *other.array_);
}
bool operator!=(const UnitSlice& other) const { return !(*this == other); }
};
// FIXME(bkietz) this is inefficient;
// StructArray's fields can be diffed independently then merged
static UnitSlice GetView(const StructArray& array, int64_t index) {
return UnitSlice{&array, index};
}
static UnitSlice GetView(const UnionArray& array, int64_t index) {
return UnitSlice{&array, index};
}
using ValueComparator = std::function<bool(const Array&, int64_t, const Array&, int64_t)>;
struct ValueComparatorVisitor {
template <typename T>
Status Visit(const T&) {
using ArrayType = typename TypeTraits<T>::ArrayType;
out = [](const Array& base, int64_t base_index, const Array& target,
int64_t target_index) {
return (GetView(checked_cast<const ArrayType&>(base), base_index) ==
GetView(checked_cast<const ArrayType&>(target), target_index));
};
return Status::OK();
}
Status Visit(const NullType&) { return Status::NotImplemented("null type"); }
Status Visit(const ExtensionType&) { return Status::NotImplemented("extension type"); }
Status Visit(const DictionaryType&) {
return Status::NotImplemented("dictionary type");
}
ValueComparator Create(const DataType& type) {
DCHECK_OK(VisitTypeInline(type, this));
return out;
}
ValueComparator out;
};
ValueComparator GetValueComparator(const DataType& type) {
ValueComparatorVisitor type_visitor;
return type_visitor.Create(type);
}
// represents an intermediate state in the comparison of two arrays
struct EditPoint {
int64_t base, target;
bool operator==(EditPoint other) const {
return base == other.base && target == other.target;
}
};
/// A generic sequence difference algorithm, based on
///
/// E. W. Myers, "An O(ND) difference algorithm and its variations,"
/// Algorithmica, vol. 1, no. 1-4, pp. 251–266, 1986.
///
/// To summarize, an edit script is computed by maintaining the furthest set of EditPoints
/// which are reachable in a given number of edits D. This is used to compute the furthest
/// set reachable with D+1 edits, and the process continues inductively until a complete
/// edit script is discovered.
///
/// From each edit point a single deletion and insertion is made then as many shared
/// elements as possible are skipped, recording only the endpoint of the run. This
/// representation is minimal in the common case where the sequences differ only slightly,
/// since most of the elements are shared between base and target and are represented
/// implicitly.
class QuadraticSpaceMyersDiff {
public:
QuadraticSpaceMyersDiff(const Array& base, const Array& target, MemoryPool* pool)
: base_(base),
target_(target),
pool_(pool),
value_comparator_(GetValueComparator(*base.type())),
base_begin_(0),
base_end_(base.length()),
target_begin_(0),
target_end_(target.length()),
endpoint_base_({ExtendFrom({base_begin_, target_begin_}).base}),
insert_({true}) {
if ((base_end_ - base_begin_ == target_end_ - target_begin_) &&
endpoint_base_[0] == base_end_) {
// trivial case: base == target
finish_index_ = 0;
}
}
bool ValuesEqual(int64_t base_index, int64_t target_index) const {
bool base_null = base_.IsNull(base_index);
bool target_null = target_.IsNull(target_index);
if (base_null || target_null) {
// If only one is null, then this is false, otherwise true
return base_null && target_null;
}
return value_comparator_(base_, base_index, target_, target_index);
}
// increment the position within base (the element pointed to was deleted)
// then extend maximally
EditPoint DeleteOne(EditPoint p) const {
if (p.base != base_end_) {
++p.base;
}
return ExtendFrom(p);
}
// increment the position within target (the element pointed to was inserted)
// then extend maximally
EditPoint InsertOne(EditPoint p) const {
if (p.target != target_end_) {
++p.target;
}
return ExtendFrom(p);
}
// increment the position within base and target (the elements skipped in this way were
// present in both sequences)
EditPoint ExtendFrom(EditPoint p) const {
for (; p.base != base_end_ && p.target != target_end_; ++p.base, ++p.target) {
if (!ValuesEqual(p.base, p.target)) {
break;
}
}
return p;
}
// beginning of a range for storing per-edit state in endpoint_base_ and insert_
int64_t StorageOffset(int64_t edit_count) const {
return edit_count * (edit_count + 1) / 2;
}
// given edit_count and index, augment endpoint_base_[index] with the corresponding
// position in target (which is only implicitly represented in edit_count, index)
EditPoint GetEditPoint(int64_t edit_count, int64_t index) const {
DCHECK_GE(index, StorageOffset(edit_count));
DCHECK_LT(index, StorageOffset(edit_count + 1));
auto insertions_minus_deletions =
2 * (index - StorageOffset(edit_count)) - edit_count;
auto maximal_base = endpoint_base_[index];
auto maximal_target = std::min(
target_begin_ + ((maximal_base - base_begin_) + insertions_minus_deletions),
target_end_);
return {maximal_base, maximal_target};
}
void Next() {
++edit_count_;
// base_begin_ is used as a dummy value here since Iterator may not be default
// constructible. The newly allocated range is completely overwritten below.
endpoint_base_.resize(StorageOffset(edit_count_ + 1), base_begin_);
insert_.resize(StorageOffset(edit_count_ + 1), false);
auto previous_offset = StorageOffset(edit_count_ - 1);
auto current_offset = StorageOffset(edit_count_);
// try deleting from base first
for (int64_t i = 0, i_out = 0; i < edit_count_; ++i, ++i_out) {
auto previous_endpoint = GetEditPoint(edit_count_ - 1, i + previous_offset);
endpoint_base_[i_out + current_offset] = DeleteOne(previous_endpoint).base;
}
// check if inserting from target could do better
for (int64_t i = 0, i_out = 1; i < edit_count_; ++i, ++i_out) {
// retrieve the previously computed best endpoint for (edit_count_, i_out)
// for comparison with the best endpoint achievable with an insertion
auto endpoint_after_deletion = GetEditPoint(edit_count_, i_out + current_offset);
auto previous_endpoint = GetEditPoint(edit_count_ - 1, i + previous_offset);
auto endpoint_after_insertion = InsertOne(previous_endpoint);
if (endpoint_after_insertion.base - endpoint_after_deletion.base >= 0) {
// insertion was more efficient; keep it and mark the insertion in insert_
insert_[i_out + current_offset] = true;
endpoint_base_[i_out + current_offset] = endpoint_after_insertion.base;
}
}
// check for completion
EditPoint finish = {base_end_, target_end_};
for (int64_t i_out = 0; i_out < edit_count_ + 1; ++i_out) {
if (GetEditPoint(edit_count_, i_out + current_offset) == finish) {
finish_index_ = i_out + current_offset;
return;
}
}
}
bool Done() { return finish_index_ != -1; }
Result<std::shared_ptr<StructArray>> GetEdits(MemoryPool* pool) {
DCHECK(Done());
int64_t length = edit_count_ + 1;
ARROW_ASSIGN_OR_RAISE(auto insert_buf, AllocateEmptyBitmap(length, pool));
ARROW_ASSIGN_OR_RAISE(auto run_length_buf,
AllocateBuffer(length * sizeof(int64_t), pool));
auto run_length = reinterpret_cast<int64_t*>(run_length_buf->mutable_data());
auto index = finish_index_;
auto endpoint = GetEditPoint(edit_count_, finish_index_);
for (int64_t i = edit_count_; i > 0; --i) {
bool insert = insert_[index];
bit_util::SetBitTo(insert_buf->mutable_data(), i, insert);
auto insertions_minus_deletions =
(endpoint.base - base_begin_) - (endpoint.target - target_begin_);
if (insert) {
++insertions_minus_deletions;
} else {
--insertions_minus_deletions;
}
index = (i - 1 - insertions_minus_deletions) / 2 + StorageOffset(i - 1);
// endpoint of previous edit
auto previous = GetEditPoint(i - 1, index);
run_length[i] = endpoint.base - previous.base - !insert;
DCHECK_GE(run_length[i], 0);
endpoint = previous;
}
bit_util::SetBitTo(insert_buf->mutable_data(), 0, false);
run_length[0] = endpoint.base - base_begin_;
return StructArray::Make(
{std::make_shared<BooleanArray>(length, std::move(insert_buf)),
std::make_shared<Int64Array>(length, std::move(run_length_buf))},
{field("insert", boolean()), field("run_length", int64())});
}
Result<std::shared_ptr<StructArray>> Diff() {
while (!Done()) {
Next();
}
return GetEdits(pool_);
}
private:
const Array& base_;
const Array& target_;
MemoryPool* pool_;
ValueComparator value_comparator_;
int64_t finish_index_ = -1;
int64_t edit_count_ = 0;
int64_t base_begin_, base_end_;
int64_t target_begin_, target_end_;
// each element of endpoint_base_ is the furthest position in base reachable given an
// edit_count and (# insertions) - (# deletions). Each bit of insert_ records whether
// the corresponding furthest position was reached via an insertion or a deletion
// (followed by a run of shared elements). See StorageOffset for the
// layout of these vectors
std::vector<int64_t> endpoint_base_;
std::vector<bool> insert_;
};
Result<std::shared_ptr<StructArray>> NullDiff(const Array& base, const Array& target,
MemoryPool* pool) {
bool insert = base.length() < target.length();
auto run_length = std::min(base.length(), target.length());
auto edit_count = std::max(base.length(), target.length()) - run_length;
TypedBufferBuilder<bool> insert_builder(pool);
RETURN_NOT_OK(insert_builder.Resize(edit_count + 1));
insert_builder.UnsafeAppend(false);
TypedBufferBuilder<int64_t> run_length_builder(pool);
RETURN_NOT_OK(run_length_builder.Resize(edit_count + 1));
run_length_builder.UnsafeAppend(run_length);
if (edit_count > 0) {
insert_builder.UnsafeAppend(edit_count, insert);
run_length_builder.UnsafeAppend(edit_count, 0);
}
std::shared_ptr<Buffer> insert_buf, run_length_buf;
RETURN_NOT_OK(insert_builder.Finish(&insert_buf));
RETURN_NOT_OK(run_length_builder.Finish(&run_length_buf));
return StructArray::Make({std::make_shared<BooleanArray>(edit_count + 1, insert_buf),
std::make_shared<Int64Array>(edit_count + 1, run_length_buf)},
{field("insert", boolean()), field("run_length", int64())});
}
Result<std::shared_ptr<StructArray>> Diff(const Array& base, const Array& target,
MemoryPool* pool) {
if (!base.type()->Equals(target.type())) {
return Status::TypeError("only taking the diff of like-typed arrays is supported.");
}
if (base.type()->id() == Type::NA) {
return NullDiff(base, target, pool);
} else if (base.type()->id() == Type::EXTENSION) {
auto base_storage = checked_cast<const ExtensionArray&>(base).storage();
auto target_storage = checked_cast<const ExtensionArray&>(target).storage();
return Diff(*base_storage, *target_storage, pool);
} else if (base.type()->id() == Type::DICTIONARY) {
return Status::NotImplemented("diffing arrays of type ", *base.type());
} else {
return QuadraticSpaceMyersDiff(base, target, pool).Diff();
}
}
using Formatter = std::function<void(const Array&, int64_t index, std::ostream*)>;
static Result<Formatter> MakeFormatter(const DataType& type);
class MakeFormatterImpl {
public:
Result<Formatter> Make(const DataType& type) && {
RETURN_NOT_OK(VisitTypeInline(type, this));
return std::move(impl_);
}
private:
template <typename VISITOR, typename... ARGS>
friend Status VisitTypeInline(const DataType&, VISITOR*, ARGS&&... args);
// factory implementation
Status Visit(const BooleanType&) {
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
*os << (checked_cast<const BooleanArray&>(array).Value(index) ? "true" : "false");
};
return Status::OK();
}
// format Numerics with std::ostream defaults
template <typename T>
enable_if_number<T, Status> Visit(const T&) {
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
const auto& numeric = checked_cast<const NumericArray<T>&>(array);
if (sizeof(decltype(numeric.Value(index))) == sizeof(char)) {
// override std::ostream defaults for /(u|)int8_t/ since they are
// formatted as potentially unprintable/tty borking characters
*os << static_cast<int16_t>(numeric.Value(index));
} else {
*os << numeric.Value(index);
}
};
return Status::OK();
}
template <typename T>
enable_if_date<T, Status> Visit(const T&) {
using unit = typename std::conditional<std::is_same<T, Date32Type>::value,
arrow_vendored::date::days,
std::chrono::milliseconds>::type;
static arrow_vendored::date::sys_days epoch{arrow_vendored::date::jan / 1 / 1970};
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
unit value(checked_cast<const NumericArray<T>&>(array).Value(index));
*os << arrow_vendored::date::format("%F", value + epoch);
};
return Status::OK();
}
template <typename T>
enable_if_time<T, Status> Visit(const T&) {
impl_ = MakeTimeFormatter<T, false>("%T");
return Status::OK();
}
Status Visit(const TimestampType&) {
impl_ = MakeTimeFormatter<TimestampType, true>("%F %T");
return Status::OK();
}
Status Visit(const DayTimeIntervalType&) {
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
auto day_millis = checked_cast<const DayTimeIntervalArray&>(array).Value(index);
*os << day_millis.days << "d" << day_millis.milliseconds << "ms";
};
return Status::OK();
}
Status Visit(const MonthDayNanoIntervalType&) {
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
auto month_day_nanos =
checked_cast<const MonthDayNanoIntervalArray&>(array).Value(index);
*os << month_day_nanos.months << "M" << month_day_nanos.days << "d"
<< month_day_nanos.nanoseconds << "ns";
};
return Status::OK();
}
// format Binary, LargeBinary and FixedSizeBinary in hexadecimal
template <typename T>
enable_if_binary_like<T, Status> Visit(const T&) {
using ArrayType = typename TypeTraits<T>::ArrayType;
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
*os << HexEncode(checked_cast<const ArrayType&>(array).GetView(index));
};
return Status::OK();
}
// format Strings with \"\n\r\t\\ escaped
template <typename T>
enable_if_string_like<T, Status> Visit(const T&) {
using ArrayType = typename TypeTraits<T>::ArrayType;
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
*os << "\"" << Escape(checked_cast<const ArrayType&>(array).GetView(index)) << "\"";
};
return Status::OK();
}
// format Decimals with Decimal128Array::FormatValue
Status Visit(const Decimal128Type&) {
impl_ = [](const Array& array, int64_t index, std::ostream* os) {
*os << checked_cast<const Decimal128Array&>(array).FormatValue(index);
};
return Status::OK();
}
template <typename T>
enable_if_list_like<T, Status> Visit(const T& t) {
struct ListImpl {
explicit ListImpl(Formatter f) : values_formatter_(std::move(f)) {}
void operator()(const Array& array, int64_t index, std::ostream* os) {
const auto& list_array =
checked_cast<const typename TypeTraits<T>::ArrayType&>(array);
*os << "[";
for (int32_t i = 0; i < list_array.value_length(index); ++i) {
if (i != 0) {
*os << ", ";
}
values_formatter_(*list_array.values(), i + list_array.value_offset(index), os);
}
*os << "]";
}
Formatter values_formatter_;
};
ARROW_ASSIGN_OR_RAISE(auto values_formatter, MakeFormatter(*t.value_type()));
impl_ = ListImpl(std::move(values_formatter));
return Status::OK();
}
// TODO(bkietz) format maps better
Status Visit(const StructType& t) {
struct StructImpl {
explicit StructImpl(std::vector<Formatter> f) : field_formatters_(std::move(f)) {}
void operator()(const Array& array, int64_t index, std::ostream* os) {
const auto& struct_array = checked_cast<const StructArray&>(array);
*os << "{";
for (int i = 0, printed = 0; i < struct_array.num_fields(); ++i) {
if (printed != 0) {
*os << ", ";
}
if (struct_array.field(i)->IsNull(index)) {
continue;
}
++printed;
*os << struct_array.struct_type()->field(i)->name() << ": ";
field_formatters_[i](*struct_array.field(i), index, os);
}
*os << "}";
}
std::vector<Formatter> field_formatters_;
};
std::vector<Formatter> field_formatters(t.num_fields());
for (int i = 0; i < t.num_fields(); ++i) {
ARROW_ASSIGN_OR_RAISE(field_formatters[i], MakeFormatter(*t.field(i)->type()));
}
impl_ = StructImpl(std::move(field_formatters));
return Status::OK();
}
Status Visit(const UnionType& t) {
struct UnionImpl {
explicit UnionImpl(std::vector<Formatter> f) : field_formatters_(std::move(f)) {}
void DoFormat(const UnionArray& array, int64_t index, int64_t child_index,
std::ostream* os) {
auto type_code = array.raw_type_codes()[index];
auto child = array.field(array.child_id(index));
*os << "{" << static_cast<int16_t>(type_code) << ": ";
if (child->IsNull(child_index)) {
*os << "null";
} else {
field_formatters_[type_code](*child, child_index, os);
}
*os << "}";
}
std::vector<Formatter> field_formatters_;
};
struct SparseImpl : UnionImpl {
using UnionImpl::UnionImpl;
void operator()(const Array& array, int64_t index, std::ostream* os) {
const auto& union_array = checked_cast<const SparseUnionArray&>(array);
DoFormat(union_array, index, index, os);
}
};
struct DenseImpl : UnionImpl {
using UnionImpl::UnionImpl;
void operator()(const Array& array, int64_t index, std::ostream* os) {
const auto& union_array = checked_cast<const DenseUnionArray&>(array);
DoFormat(union_array, index, union_array.raw_value_offsets()[index], os);
}
};
std::vector<Formatter> field_formatters(t.max_type_code() + 1);
for (int i = 0; i < t.num_fields(); ++i) {
auto type_id = t.type_codes()[i];
ARROW_ASSIGN_OR_RAISE(field_formatters[type_id],
MakeFormatter(*t.field(i)->type()));
}
if (t.mode() == UnionMode::SPARSE) {
impl_ = SparseImpl(std::move(field_formatters));
} else {
impl_ = DenseImpl(std::move(field_formatters));
}
return Status::OK();
}
Status Visit(const NullType& t) {
return Status::NotImplemented("formatting diffs between arrays of type ", t);
}
Status Visit(const DictionaryType& t) {
return Status::NotImplemented("formatting diffs between arrays of type ", t);
}
Status Visit(const ExtensionType& t) {
return Status::NotImplemented("formatting diffs between arrays of type ", t);
}
Status Visit(const DurationType& t) {
return Status::NotImplemented("formatting diffs between arrays of type ", t);
}
Status Visit(const MonthIntervalType& t) {
return Status::NotImplemented("formatting diffs between arrays of type ", t);
}
template <typename T, bool AddEpoch>
Formatter MakeTimeFormatter(const std::string& fmt_str) {
return [fmt_str](const Array& array, int64_t index, std::ostream* os) {
auto fmt = fmt_str.c_str();
auto unit = checked_cast<const T&>(*array.type()).unit();
auto value = checked_cast<const NumericArray<T>&>(array).Value(index);
// Using unqualified `format` directly would produce ambiguous
// lookup because of `std::format` (ARROW-15520).
namespace avd = arrow_vendored::date;
using std::chrono::nanoseconds;
using std::chrono::microseconds;
using std::chrono::milliseconds;
using std::chrono::seconds;
if (AddEpoch) {
static avd::sys_days epoch{avd::jan / 1 / 1970};
switch (unit) {
case TimeUnit::NANO:
*os << avd::format(fmt, static_cast<nanoseconds>(value) + epoch);
break;
case TimeUnit::MICRO:
*os << avd::format(fmt, static_cast<microseconds>(value) + epoch);
break;
case TimeUnit::MILLI:
*os << avd::format(fmt, static_cast<milliseconds>(value) + epoch);
break;
case TimeUnit::SECOND:
*os << avd::format(fmt, static_cast<seconds>(value) + epoch);
break;
}
return;
}
switch (unit) {
case TimeUnit::NANO:
*os << avd::format(fmt, static_cast<nanoseconds>(value));
break;
case TimeUnit::MICRO:
*os << avd::format(fmt, static_cast<microseconds>(value));
break;
case TimeUnit::MILLI:
*os << avd::format(fmt, static_cast<milliseconds>(value));
break;
case TimeUnit::SECOND:
*os << avd::format(fmt, static_cast<seconds>(value));
break;
}
};
}
Formatter impl_;
};
static Result<Formatter> MakeFormatter(const DataType& type) {
return MakeFormatterImpl{}.Make(type);
}
Status VisitEditScript(
const Array& edits,
const std::function<Status(int64_t delete_begin, int64_t delete_end,
int64_t insert_begin, int64_t insert_end)>& visitor) {
static const auto edits_type =
struct_({field("insert", boolean()), field("run_length", int64())});
DCHECK(edits.type()->Equals(*edits_type));
DCHECK_GE(edits.length(), 1);
auto insert = checked_pointer_cast<BooleanArray>(
checked_cast<const StructArray&>(edits).field(0));
auto run_lengths =
checked_pointer_cast<Int64Array>(checked_cast<const StructArray&>(edits).field(1));
DCHECK(!insert->Value(0));
auto length = run_lengths->Value(0);
int64_t base_begin, base_end, target_begin, target_end;
base_begin = base_end = target_begin = target_end = length;
for (int64_t i = 1; i < edits.length(); ++i) {
if (insert->Value(i)) {
++target_end;
} else {
++base_end;
}
length = run_lengths->Value(i);
if (length != 0) {
RETURN_NOT_OK(visitor(base_begin, base_end, target_begin, target_end));
base_begin = base_end = base_end + length;
target_begin = target_end = target_end + length;
}
}
if (length == 0) {
return visitor(base_begin, base_end, target_begin, target_end);
}
return Status::OK();
}
class UnifiedDiffFormatter {
public:
UnifiedDiffFormatter(std::ostream* os, Formatter formatter)
: os_(os), formatter_(std::move(formatter)) {}
Status operator()(int64_t delete_begin, int64_t delete_end, int64_t insert_begin,
int64_t insert_end) {
*os_ << "@@ -" << delete_begin << ", +" << insert_begin << " @@" << std::endl;
for (int64_t i = delete_begin; i < delete_end; ++i) {
*os_ << "-";
if (base_->IsValid(i)) {
formatter_(*base_, i, &*os_);
} else {
*os_ << "null";
}
*os_ << std::endl;
}
for (int64_t i = insert_begin; i < insert_end; ++i) {
*os_ << "+";
if (target_->IsValid(i)) {
formatter_(*target_, i, &*os_);
} else {
*os_ << "null";
}
*os_ << std::endl;
}
return Status::OK();
}
Status operator()(const Array& edits, const Array& base, const Array& target) {
if (edits.length() == 1) {
return Status::OK();
}
base_ = &base;
target_ = ⌖
*os_ << std::endl;
return VisitEditScript(edits, *this);
}
private:
std::ostream* os_ = nullptr;
const Array* base_ = nullptr;
const Array* target_ = nullptr;
Formatter formatter_;
};
Result<std::function<Status(const Array& edits, const Array& base, const Array& target)>>
MakeUnifiedDiffFormatter(const DataType& type, std::ostream* os) {
if (type.id() == Type::NA) {
return [os](const Array& edits, const Array& base, const Array& target) {
if (base.length() != target.length()) {
*os << "# Null arrays differed" << std::endl
<< "-" << base.length() << " nulls" << std::endl
<< "+" << target.length() << " nulls" << std::endl;
}
return Status::OK();
};
}
ARROW_ASSIGN_OR_RAISE(auto formatter, MakeFormatter(type));
return UnifiedDiffFormatter(os, std::move(formatter));
}
} // namespace arrow