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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
(* src/arrow/arrow_table.ml *)
(* Arrow-backed table implementation for T DataFrames. *)
(* Supports both native Arrow C GLib tables (via FFI) and pure OCaml *)
(* columnar storage as a fallback. When a native_handle is present, *)
(* operations can delegate to Arrow Compute kernels via arrow_ffi.ml. *)
(** Arrow data types ā mirrors Arrow's type system *)
type arrow_type =
| ArrowInt64
| ArrowFloat64
| ArrowBoolean
| ArrowString
| ArrowDate
| ArrowTimestamp of string option
| ArrowNA
| ArrowDictionary
| ArrowList of arrow_type
| ArrowStruct of arrow_schema
(** Schema: ordered list of (column_name, column_type) *)
and arrow_schema = (string * arrow_type) list
(** Native Arrow handle ā wraps a C pointer to GArrowTable with GC safety *)
type native_handle = {
ptr : nativeint;
mutable freed : bool;
}
type zero_copy_event = {
op : string;
reason : string;
}
let env_flag name =
match Sys.getenv_opt name with
| Some ("1" | "true" | "yes" | "on") -> true
| _ -> false
let zero_copy_events : zero_copy_event list ref = ref []
let zero_copy_event_count : int ref = ref 0
let max_zero_copy_events = 1000
let zero_copy_cap_warned : bool ref = ref false
let record_zero_copy_event op reason =
if env_flag "TLANG_ZERO_COPY_DEBUG" then begin
if !zero_copy_event_count < max_zero_copy_events then begin
zero_copy_events := { op; reason } :: !zero_copy_events;
incr zero_copy_event_count
end else if not !zero_copy_cap_warned then begin
zero_copy_cap_warned := true;
Printf.eprintf
"[TLANG_ZERO_COPY_DEBUG] zero-copy event buffer capped at %d entries; \
call take_zero_copy_events() to drain it.\n%!" max_zero_copy_events
end
end
let take_zero_copy_events () =
let events = List.rev !zero_copy_events in
zero_copy_events := [];
zero_copy_event_count := 0;
zero_copy_cap_warned := false;
events
(** Typed columnar data with explicit nullability (NA support) *)
type column_data =
| IntColumn of int option array
| FloatColumn of float option array
| BoolColumn of bool option array
| StringColumn of string option array
| DateColumn of int option array
| DatetimeColumn of int64 option array * string option
| NAColumn of int
| DictionaryColumn of int option array * string list * bool
| ListColumn of t option array
(** Arrow table ā columnar storage with schema.
When native_handle is Some, the table is backed by a native Arrow table
(created via FFI, e.g. from CSV reading). When None, pure OCaml storage. *)
and t = {
schema : arrow_schema;
columns : (string * column_data) list;
nrows : int;
native_handle : native_handle option;
}
(* --- Column utilities --- *)
let column_length = function
| IntColumn a -> Array.length a
| FloatColumn a -> Array.length a
| BoolColumn a -> Array.length a
| StringColumn a -> Array.length a
| DateColumn a -> Array.length a
| DatetimeColumn (a, _) -> Array.length a
| NAColumn n -> n
| DictionaryColumn (a, _, _) -> Array.length a
| ListColumn a -> Array.length a
let column_type_of = function
| IntColumn _ -> ArrowInt64
| FloatColumn _ -> ArrowFloat64
| BoolColumn _ -> ArrowBoolean
| StringColumn _ -> ArrowString
| DateColumn _ -> ArrowDate
| DatetimeColumn (_, tz) -> ArrowTimestamp tz
| NAColumn _ -> ArrowNA
| DictionaryColumn _ -> ArrowDictionary
| ListColumn a ->
(match Array.find_opt Option.is_some a with
| Some (Some t) -> ArrowList (ArrowStruct t.schema)
| _ -> ArrowList ArrowNA)
let arrow_type_to_string = function
| ArrowInt64 -> "Int64"
| ArrowFloat64 -> "Float64"
| ArrowBoolean -> "Boolean"
| ArrowString -> "String"
| ArrowDate -> "Date"
| ArrowTimestamp None -> "Datetime(UTC)"
| ArrowTimestamp (Some tz) -> "Datetime(" ^ tz ^ ")"
| ArrowNA -> "NA"
| ArrowDictionary -> "Dictionary"
| ArrowList _ -> "List"
| ArrowStruct _ -> "Struct"
(** Convert a type_tag int (from FFI) to arrow_type *)
let arrow_type_of_tag = function
| 0 -> ArrowInt64
| 1 -> ArrowFloat64
| 2 -> ArrowBoolean
| 3 -> ArrowString
| 4 -> ArrowDictionary
| 5 -> ArrowList ArrowNA
| 7 -> ArrowDate
| 8 -> ArrowTimestamp None
| _ -> ArrowNA
let arrow_type_of_schema_tag tag tz =
match tag with
| 8 -> ArrowTimestamp tz
| _ -> arrow_type_of_tag tag
let list_schema_from_native_ptr (ptr : nativeint) (name : string) : arrow_type =
match Arrow_ffi.arrow_table_get_list_field_schema ptr name with
| Some field_infos ->
let schema =
List.map (fun (fname, ftag, ftz) ->
(fname, arrow_type_of_schema_tag ftag ftz)
) field_infos
in
ArrowList (ArrowStruct schema)
| None -> ArrowList ArrowNA
(** Rebuild schema from a native table pointer *)
let schema_from_native_ptr (ptr : nativeint) : arrow_schema =
let pairs = Arrow_ffi.arrow_table_get_schema ptr in
List.map (fun (name, tag, tz) ->
let ty =
match tag with
| 5 -> list_schema_from_native_ptr ptr name
| _ -> arrow_type_of_schema_tag tag tz
in
(name, ty)
) pairs
(* --- GC Finalizer --- *)
(** Register a GC finalizer that frees the native Arrow table when collected *)
let register_finalizer (handle : native_handle) : unit =
Gc.finalise (fun h ->
if not h.freed then begin
Arrow_ffi.arrow_table_free h.ptr;
h.freed <- true
end
) handle
(* --- Table constructors --- *)
(** Create a pure OCaml table (no native Arrow backing) *)
let create (columns : (string * column_data) list) (nrows : int) : t =
let schema = List.map (fun (name, col) -> (name, column_type_of col)) columns in
{ schema; columns; nrows; native_handle = None }
(** Create a table backed by a native Arrow C GLib pointer.
The pointer is wrapped with a GC finalizer for memory safety. *)
let create_from_native (ptr : nativeint) (schema : arrow_schema) (nrows : int) : t =
let handle = { ptr; freed = false } in
register_finalizer handle;
{ schema; columns = []; nrows; native_handle = Some handle }
let empty : t =
{ schema = []; columns = []; nrows = 0; native_handle = None }
(* --- Table queries --- *)
let is_native_backed (t : t) : bool =
match t.native_handle with
| Some handle -> not handle.freed
| None -> false
let num_rows (t : t) : int =
match t.native_handle with
| Some handle when not handle.freed ->
Arrow_ffi.arrow_table_num_rows handle.ptr
| _ -> t.nrows
let num_columns (t : t) : int =
match t.native_handle with
| Some handle when not handle.freed ->
Arrow_ffi.arrow_table_num_columns handle.ptr
| _ -> List.length t.columns
let column_names (t : t) : string list =
match t.native_handle with
| Some handle when not handle.freed ->
let schema_pairs = Arrow_ffi.arrow_table_get_schema handle.ptr in
List.map (fun (name, _, _) -> name) schema_pairs
| _ ->
List.map fst t.columns
let get_schema (t : t) : arrow_schema = t.schema
(** Slice a column from [offset] for [len] elements *)
let slice_column (col : column_data) (offset : int) (len : int) : column_data =
match col with
| IntColumn a -> IntColumn (Array.sub a offset len)
| FloatColumn a -> FloatColumn (Array.sub a offset len)
| BoolColumn a -> BoolColumn (Array.sub a offset len)
| StringColumn a -> StringColumn (Array.sub a offset len)
| DateColumn a -> DateColumn (Array.sub a offset len)
| DatetimeColumn (a, tz) -> DatetimeColumn (Array.sub a offset len, tz)
| NAColumn _ -> NAColumn len
| DictionaryColumn (a, levels, ordered) -> DictionaryColumn (Array.sub a offset len, levels, ordered)
| ListColumn a -> ListColumn (Array.sub a offset len)
(** Read a native list-of-struct column and reconstruct as ListColumn.
Takes the already-fetched array pointer from arrow_table_get_column_data.
The array_ptr is consumed by arrow_read_list_column (which unrefs it).
Decomposes the struct child into per-field columns and slices into sub-tables. *)
let read_native_list_column_from_ptr (array_ptr : nativeint) (nrows : int) : column_data option =
let (child_opt, slices) = Arrow_ffi.arrow_read_list_column array_ptr in
match child_opt with
| None -> Some (ListColumn (Array.make (max nrows (Array.length slices)) None))
| Some child_ptr ->
let field_infos = Arrow_ffi.arrow_read_struct_fields child_ptr in
(* Read each field using the appropriate column reader *)
let field_cols = List.mapi (fun i (fname, ftag, ftz) ->
match Arrow_ffi.arrow_read_struct_field child_ptr i with
| None -> (fname, ftag, ftz, NAColumn 0)
| Some fptr ->
let col = match ftag with
| 0 -> IntColumn (Arrow_ffi.arrow_read_int64_column fptr)
| 1 -> FloatColumn (Arrow_ffi.arrow_read_float64_column fptr)
| 2 -> BoolColumn (Arrow_ffi.arrow_read_boolean_column fptr)
| 3 -> StringColumn (Arrow_ffi.arrow_read_string_column fptr)
| 4 ->
let (idx, lvl, ord) = Arrow_ffi.arrow_read_dictionary_column fptr in
DictionaryColumn (idx, lvl, ord)
| 7 -> DateColumn (Arrow_ffi.arrow_read_date32_column fptr)
| 8 -> DatetimeColumn (Arrow_ffi.arrow_read_timestamp_column fptr, ftz)
| _ -> Arrow_ffi.arrow_unref fptr; NAColumn 0
in
(fname, ftag, ftz, col)
) field_infos in
(* Clean up the child struct array *)
Arrow_ffi.arrow_unref child_ptr;
let max_len =
match field_cols with
| [] -> 0
| (_, _, _, col) :: _ -> column_length col
in
(* Reconstruct sub-tables by slicing the flattened columns *)
let nested_opt =
try
Some (Array.map (function
| None -> None
| Some (offset, len) ->
if offset < 0 || len < 0 || offset + len > max_len then
raise Exit
else
let sub_cols = List.map (fun (fname, _, _, col) ->
(fname, slice_column col offset len)
) field_cols in
let sub_schema = List.map (fun (fname, ftag, ftz, _) ->
(fname, arrow_type_of_schema_tag ftag ftz)
) field_cols in
Some { schema = sub_schema; columns = sub_cols;
nrows = len; native_handle = None }
) slices)
with Exit -> None
in
match nested_opt with
| None -> None
| Some nested -> Some (ListColumn nested)
let get_column (t : t) (name : string) : column_data option =
match t.native_handle with
| Some handle when not handle.freed ->
(* Use native Arrow column extraction *)
(match List.assoc_opt name t.schema with
| None -> None
| Some col_type ->
match Arrow_ffi.arrow_table_get_column_data handle.ptr name with
| None ->
(* If it's an empty table, FFI might return None for columns with 0 chunks.
Return an empty OCaml column of the correct type. *)
if t.nrows = 0 then
(match col_type with
| ArrowInt64 -> Some (IntColumn [||])
| ArrowFloat64 -> Some (FloatColumn [||])
| ArrowBoolean -> Some (BoolColumn [||])
| ArrowString -> Some (StringColumn [||])
| ArrowDate -> Some (DateColumn [||])
| ArrowTimestamp tz -> Some (DatetimeColumn ([||], tz))
| ArrowNA -> Some (NAColumn 0)
| ArrowDictionary -> Some (DictionaryColumn ([||], [], false))
| ArrowList _ -> Some (ListColumn [||])
| ArrowStruct _ -> Some (NAColumn 0))
else None
| Some array_ptr ->
match col_type with
| ArrowInt64 ->
Some (IntColumn (Arrow_ffi.arrow_read_int64_column array_ptr))
| ArrowFloat64 ->
Some (FloatColumn (Arrow_ffi.arrow_read_float64_column array_ptr))
| ArrowBoolean ->
Some (BoolColumn (Arrow_ffi.arrow_read_boolean_column array_ptr))
| ArrowString ->
Some (StringColumn (Arrow_ffi.arrow_read_string_column array_ptr))
| ArrowDate ->
Some (DateColumn (Arrow_ffi.arrow_read_date32_column array_ptr))
| ArrowTimestamp tz ->
Some (DatetimeColumn (Arrow_ffi.arrow_read_timestamp_column array_ptr, tz))
| ArrowNA ->
Arrow_ffi.arrow_unref array_ptr;
Some (NAColumn t.nrows)
| ArrowDictionary ->
let (indices, levels, ordered) =
Arrow_ffi.arrow_read_dictionary_column array_ptr in
Some (DictionaryColumn (indices, levels, ordered))
| ArrowList _ ->
(* Read list-of-struct column from native Arrow.
array_ptr is consumed by arrow_read_list_column inside. *)
read_native_list_column_from_ptr array_ptr t.nrows
| ArrowStruct _ ->
(* Struct columns use pure OCaml storage fallback *)
Arrow_ffi.arrow_unref array_ptr;
List.assoc_opt name t.columns)
| _ ->
(* Fallback to pure OCaml *)
List.assoc_opt name t.columns
(** Concatenate multiple columns of the same type *)
let concatenate_columns (cols : column_data list) : column_data =
match cols with
| [] -> NAColumn 0
| first :: _ ->
match first with
| IntColumn _ -> IntColumn (Array.concat (List.map (function IntColumn a -> a | _ -> [||]) cols))
| FloatColumn _ -> FloatColumn (Array.concat (List.map (function FloatColumn a -> a | _ -> [||]) cols))
| BoolColumn _ -> BoolColumn (Array.concat (List.map (function BoolColumn a -> a | _ -> [||]) cols))
| StringColumn _ -> StringColumn (Array.concat (List.map (function StringColumn a -> a | _ -> [||]) cols))
| DateColumn _ -> DateColumn (Array.concat (List.map (function DateColumn a -> a | _ -> [||]) cols))
| DatetimeColumn (_, tz) -> DatetimeColumn (Array.concat (List.map (function DatetimeColumn (a, _) -> a | _ -> [||]) cols), tz)
| DictionaryColumn (_, levels, ordered) -> DictionaryColumn (Array.concat (List.map (function DictionaryColumn (a, _, _) -> a | _ -> [||]) cols), levels, ordered)
| ListColumn _ -> ListColumn (Array.concat (List.map (function ListColumn a -> a | _ -> [||]) cols))
| NAColumn _ ->
let total = List.fold_left (fun acc -> function
| NAColumn n -> acc + n
| IntColumn a -> acc + Array.length a
| FloatColumn a -> acc + Array.length a
| StringColumn a -> acc + Array.length a
| BoolColumn a -> acc + Array.length a
| DateColumn a -> acc + Array.length a
| DatetimeColumn (a, _) -> acc + Array.length a
| DictionaryColumn (a, _, _) -> acc + Array.length a
| ListColumn a -> acc + Array.length a
) 0 cols in
NAColumn total
(** Concatenate multiple tables with the same schema *)
let rec concatenate (tables : t list) : t =
match tables with
| [] -> empty
| [t] -> t
| first :: _ ->
let all_native = List.for_all (fun t ->
match t.native_handle with
| Some handle -> not handle.freed
| None -> false
) tables in
if all_native && Arrow_ffi.arrow_available then
let ptrs = List.map (fun t -> (Option.get t.native_handle).ptr) tables in
match Arrow_ffi.arrow_table_concatenate ptrs with
| Some new_ptr ->
let nrows = List.fold_left (fun acc t -> acc + t.nrows) 0 tables in
create_from_native new_ptr first.schema nrows
| None -> concatenate_ocaml tables
else
concatenate_ocaml tables
and concatenate_ocaml (tables : t list) : t =
match tables with
| [] -> empty
| [t] -> t
| first :: _ ->
let schema = first.schema in
let nrows = List.fold_left (fun acc t -> acc + t.nrows) 0 tables in
let columns = List.map (fun (name, _) ->
let cols_to_concat = List.filter_map (fun t -> get_column t name) tables in
(name, concatenate_columns cols_to_concat)
) schema in
{ schema; columns; nrows; native_handle = None }
let column_type (t : t) (name : string) : arrow_type option =
List.assoc_opt name t.schema
let has_column (t : t) (name : string) : bool =
List.mem_assoc name t.schema
let get_string_column (t : t) (name : string) : string option array =
match get_column t name with
| Some (StringColumn a) -> a
| Some (DictionaryColumn (indices, levels, _)) ->
Array.map (function
| Some idx -> List.nth_opt levels idx
| None -> None
) indices
| _ -> Array.make (num_rows t) None
let get_float_column (t : t) (name : string) : float option array =
match get_column t name with
| Some (FloatColumn a) -> a
| Some (IntColumn a) -> Array.map (function Some i -> Some (float_of_int i) | None -> None) a
| _ -> Array.make (num_rows t) None
let get_int_column (t : t) (name : string) : int option array =
match get_column t name with
| Some (IntColumn a) -> a
| _ -> Array.make (num_rows t) None
let get_bool_column (t : t) (name : string) : bool option array =
match get_column t name with
| Some (BoolColumn a) -> a
| _ -> Array.make (num_rows t) None
let get_int (col : column_data) (row : int) : int option =
match col with
| IntColumn a -> if row < Array.length a then a.(row) else None
| _ -> None
let get_float (col : column_data) (row : int) : float option =
match col with
| FloatColumn a -> if row < Array.length a then a.(row) else None
| IntColumn a -> if row < Array.length a then (match a.(row) with Some i -> Some (float_of_int i) | None -> None) else None
| _ -> None
let get_bool (col : column_data) (row : int) : bool option =
match col with
| BoolColumn a -> if row < Array.length a then a.(row) else None
| _ -> None
let get_string (col : column_data) (row : int) : string option =
match col with
| StringColumn a -> if row < Array.length a then a.(row) else None
| DictionaryColumn (indices, levels, _) ->
if row < Array.length indices then
(match indices.(row) with
| Some idx -> List.nth_opt levels idx
| None -> None)
else None
| _ -> None
(* --- Native materialization --- *)
(** Check if a primitive column type tag is supported for native struct fields *)
let is_primitive_tag_supported = function
| ArrowInt64 | ArrowFloat64 | ArrowBoolean | ArrowString
| ArrowDate | ArrowTimestamp _ | ArrowDictionary -> true
| _ -> false
let list_schema_hint_of_arrow_type = function
| ArrowList (ArrowStruct schema) when schema <> [] -> Some schema
| _ -> None
let effective_list_schema ?schema_hint (nested : t option array) : arrow_schema option =
let inferred =
Array.fold_left (fun acc entry ->
match acc, entry with
| Some _, _ -> acc
| None, Some t when t.schema <> [] -> Some t.schema
| None, _ -> None
) None nested
in
match inferred with
| Some schema -> Some schema
| None -> schema_hint
let is_supported_list_column ?schema_hint (nested : t option array) =
match effective_list_schema ?schema_hint nested with
| None | Some [] -> false
| Some schema ->
List.for_all (fun (_, ty) -> is_primitive_tag_supported ty) schema
&&
Array.for_all (function
| None -> true
| Some t -> t.schema = [] || t.schema = schema
) nested
(** Column builders currently supported by Arrow_ffi.arrow_table_new.
Primitive columns, null-only columns, dictionary columns, datetime
columns, and list-of-struct columns with all-primitive fields
are supported. *)
let is_arrow_table_new_supported = function
| IntColumn _ | FloatColumn _ | BoolColumn _ | StringColumn _ | DateColumn _ | NAColumn _ | DictionaryColumn _ -> true
| ListColumn a -> is_supported_list_column a
| DatetimeColumn _ -> true
(** Flatten a ListColumn into (offsets, present_flags, sub_column_specs) for FFI.
offsets : int array of length nrows+1
present : bool array of length nrows (true = non-null)
sub_cols : (string * int * string option * Obj.t) list ā flattened column data *)
let rec flatten_list_column ?schema_hint (nested : t option array)
: (int array * bool array * (string * int * string option * Obj.t) list) =
let nrows = Array.length nested in
let arrow_int64_tag = 0 in
let arrow_float64_tag = 1 in
let arrow_boolean_tag = 2 in
let arrow_string_tag = 3 in
let arrow_dictionary_tag = 4 in
let arrow_date_tag = 7 in
let arrow_timestamp_tag = 8 in
let sub_tag_of = function
| ArrowInt64 -> arrow_int64_tag
| ArrowFloat64 -> arrow_float64_tag
| ArrowBoolean -> arrow_boolean_tag
| ArrowString -> arrow_string_tag
| ArrowDictionary -> arrow_dictionary_tag
| ArrowDate -> arrow_date_tag
| ArrowTimestamp _ -> arrow_timestamp_tag
| _ -> arrow_string_tag (* fallback *)
in
(* Compute offsets and total value count *)
let offsets = Array.make (nrows + 1) 0 in
let present = Array.make nrows false in
let total = ref 0 in
Array.iteri (fun i entry ->
offsets.(i) <- !total;
(match entry with
| Some t -> present.(i) <- true; total := !total + t.nrows
| None -> present.(i) <- false);
) nested;
offsets.(nrows) <- !total;
let n_total = !total in
let sub_schema = Option.value (effective_list_schema ?schema_hint nested) ~default:[] in
(* Flatten each sub-column *)
let sub_cols = List.map (fun (fname, ftype) ->
let tag = sub_tag_of ftype in
let timezone =
match ftype with
| ArrowTimestamp tz -> tz
| _ -> None
in
let raw_data =
match ftype with
| ArrowDictionary ->
let flat_indices : int option array = Array.make n_total None in
let levels = ref None in
let ordered = ref None in
let validate_levels expected actual = expected = actual in
let pos = ref 0 in
Array.iter (function
| None -> ()
| Some sub_t ->
(match get_column sub_t fname with
| Some (DictionaryColumn (indices, lvl, ord)) ->
if Array.length indices <> sub_t.nrows then
invalid_arg ("ArrowDictionary flatten: invalid index array length for field " ^ fname);
(match !levels, !ordered with
| None, None ->
levels := Some lvl;
ordered := Some ord
| Some expected_levels, Some expected_ordered ->
if expected_ordered <> ord || not (validate_levels expected_levels lvl) then
invalid_arg ("ArrowDictionary flatten: incompatible dictionary payloads for field " ^ fname)
| _ ->
invalid_arg ("ArrowDictionary flatten: inconsistent dictionary metadata state for field " ^ fname));
let level_count = List.length lvl in
Array.iteri (fun j v ->
(match v with
| Some idx when idx < 0 || idx >= level_count ->
invalid_arg ("ArrowDictionary flatten: out-of-bounds dictionary index for field " ^ fname)
| _ -> ());
flat_indices.(!pos + j) <- v
) indices
| _ -> ());
pos := !pos + sub_t.nrows
) nested;
Obj.repr (flat_indices, Option.value !levels ~default:[], Option.value !ordered ~default:false)
| _ ->
let cols_to_concat = List.filter_map (fun x -> x) (Array.to_list nested)
|> List.filter_map (fun t -> get_column t fname) in
let combined = concatenate_columns cols_to_concat in
(match combined with
| IntColumn a -> Obj.repr a
| FloatColumn a -> Obj.repr a
| StringColumn a -> Obj.repr a
| BoolColumn a -> Obj.repr a
| DateColumn a -> Obj.repr a
| DatetimeColumn (a, _) -> Obj.repr a
| DictionaryColumn (a, lvl, ord) -> Obj.repr (a, lvl, ord)
| ListColumn a ->
let schema_hint = match ftype with ArrowList (ArrowStruct s) -> Some s | _ -> None in
Obj.repr (flatten_list_column ?schema_hint a)
| NAColumn n ->
Obj.repr (Array.make n None))
in
(fname, tag, timezone, raw_data)
) sub_schema in
(offsets, present, sub_cols)
(** Materialize a pure OCaml table into a native Arrow-backed one.
Returns the table itself if it already has a native_handle.
Tables containing unsupported column builders remain in pure OCaml form. *)
let materialize (t : t) : t =
match t.native_handle with
| Some handle when not handle.freed -> t
| _ ->
let has_unsupported =
(not Arrow_ffi.arrow_available) ||
List.exists (fun (name, col) ->
let declared_type = Option.value (List.assoc_opt name t.schema) ~default:(column_type_of col) in
match col with
| ListColumn nested ->
not (is_supported_list_column ?schema_hint:(list_schema_hint_of_arrow_type declared_type) nested)
| _ ->
not (is_arrow_table_new_supported col)
) t.columns in
if has_unsupported then t
else
let arrow_int64_tag = 0 in
let arrow_float64_tag = 1 in
let arrow_boolean_tag = 2 in
let arrow_string_tag = 3 in
let arrow_dictionary_tag = 4 in
let arrow_list_tag = 5 in
let arrow_null_tag = 6 in
let arrow_date_tag = 7 in
let arrow_timestamp_tag = 8 in
let arrow_unsupported_tag = 9 in
let tag_of = function
| ArrowInt64 -> arrow_int64_tag
| ArrowFloat64 -> arrow_float64_tag
| ArrowBoolean -> arrow_boolean_tag
| ArrowString -> arrow_string_tag
| ArrowDictionary -> arrow_dictionary_tag
| ArrowList _ -> arrow_list_tag
| ArrowNA -> arrow_null_tag
| ArrowDate -> arrow_date_tag
| ArrowTimestamp _ -> arrow_timestamp_tag
| ArrowStruct _ -> arrow_unsupported_tag
in
let ffi_cols = List.map (fun (name, type_) ->
let tag = tag_of type_ in
let timezone =
match type_ with
| ArrowTimestamp tz -> tz
| _ -> None
in
let raw_data : Obj.t = match List.assoc_opt name t.columns with
| Some (DictionaryColumn (indices, levels, ordered)) ->
(* Pack as tuple (int option array, string list, bool) for C FFI.
The C side reads Field(v_arr, 0/1/2) which works on both
OCaml tuples and arrays at the C representation level. *)
Obj.repr (indices, levels, ordered)
| Some (ListColumn nested) ->
(* Pack as tuple (offsets, present, sub_col_specs) for C FFI. *)
let schema_hint = list_schema_hint_of_arrow_type type_ in
let (offsets, present, sub_cols) = flatten_list_column ?schema_hint nested in
Obj.repr (offsets, present, sub_cols)
| Some (IntColumn a) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (FloatColumn a) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (BoolColumn a) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (StringColumn a) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (DateColumn a) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (DatetimeColumn (a, _)) -> Obj.repr (Array.map (Option.map Obj.repr) a)
| Some (NAColumn n) -> Obj.repr (Array.make n None)
| None -> Obj.repr (Array.make t.nrows None)
in
(name, tag, timezone, (Obj.obj raw_data : Obj.t array))
) t.schema in
match Arrow_ffi.arrow_table_new ffi_cols with
| Some ptr -> create_from_native ptr t.schema t.nrows
| None -> t
(** Prepare a table for transfer across processes (e.g. via Marshal).
Materializes any native data into OCaml storage and clears the native handle,
as pointers are not valid in other processes. Also recursively cleanses any
nested tables inside ListColumn values, regardless of whether the outer table
has a native handle, to prevent stale pointers after cross-process transfer. *)
let rec prepare_for_serialization (t : t) : t =
match t.native_handle with
| Some handle when not handle.freed ->
(* Materialize columns if they are not already in t.columns.
We use get_column to ensure we get data from FFI if needed.
Recursively cleanse any nested tables in ListColumn values. *)
let columns = List.map (fun (name, _) ->
let col = match get_column t name with
| Some data -> data
| None -> NAColumn t.nrows
in
(name, prepare_column_for_serialization col)
) t.schema in
{ t with columns; native_handle = None }
| _ ->
(* Even when the outer table has no live native handle, nested tables
inside ListColumn values may still carry native handles. Strip them. *)
let columns = List.map (fun (name, col) ->
(name, prepare_column_for_serialization col)
) t.columns in
{ t with columns; native_handle = None }
and prepare_column_for_serialization (col : column_data) : column_data =
match col with
| ListColumn nested_tables ->
ListColumn (Array.map (fun entry ->
match entry with
| Some nested -> Some (prepare_for_serialization nested)
| None -> None
) nested_tables)
| _ -> col
(* --- Table operations --- *)
(** Project (select) columns by name ā zero-copy in native Arrow backend.
Pure OCaml fallback uses O(n*m) list lookup; acceptable for typical column counts.
Unknown column names are mapped to NAColumn to avoid raising Not_found. *)
let project (t : t) (names : string list) : t =
let safe_assoc_schema n =
match List.assoc_opt n t.schema with
| Some ty -> (n, ty)
| None -> (n, ArrowNA)
in
match t.native_handle with
| Some handle when not handle.freed ->
(match Arrow_ffi.arrow_table_project handle.ptr names with
| Some new_ptr ->
let new_schema = List.map safe_assoc_schema names in
create_from_native new_ptr new_schema t.nrows
| None ->
record_zero_copy_event "project" "native project returned None";
(* Fallback if native project fails *)
let schema = List.map safe_assoc_schema names in
let columns = List.map (fun n ->
match get_column t n with
| Some col -> (n, col)
| None -> (n, NAColumn t.nrows)
) names in
{ schema; columns; nrows = t.nrows; native_handle = None } |> materialize)
| _ ->
let schema = List.map safe_assoc_schema names in
let columns = List.map (fun n ->
match List.assoc_opt n t.columns with
| Some col -> (n, col)
| None -> (n, NAColumn t.nrows)
) names in
{ schema; columns; nrows = t.nrows; native_handle = None } |> materialize
(** Add or replace a column.
Keeps the result on the native Arrow path when all columns are supported
by the Arrow table builder; otherwise falls back to pure OCaml storage. *)
let add_column (t : t) (name : string) (col : column_data) : t =
(* Materialize native columns if needed *)
let base_columns =
match t.native_handle with
| Some handle when not handle.freed ->
List.map (fun (n, _) ->
match get_column t n with
| Some data -> (n, data)
| None -> (n, NAColumn t.nrows)
) t.schema
| _ -> t.columns
in
let exists = List.mem_assoc name t.schema in
let columns =
if exists then
List.map (fun (n, c) -> if n = name then (n, col) else (n, c)) base_columns
else
base_columns @ [(name, col)]
in
let typ = column_type_of col in
let schema =
if exists then
List.map (fun (n, ty) -> if n = name then (n, typ) else (n, ty)) t.schema
else
t.schema @ [(name, typ)]
in
{ schema; columns; nrows = t.nrows; native_handle = None } |> materialize
(** Add a column to [dst] by taking it from [src].
Stays native if both have native handles. *)
let add_column_from_table (dst : t) (new_name : string) (src : t) (src_name : string) : t =
match dst.native_handle, src.native_handle with
| Some h_dst, Some h_src when not h_dst.freed && not h_src.freed ->
(match Arrow_ffi.arrow_table_add_column_from_table h_dst.ptr new_name h_src.ptr src_name with
| Some new_ptr ->
let schema = schema_from_native_ptr new_ptr in
create_from_native new_ptr schema dst.nrows
| None ->
(* Fallback: materialize column and add it *)
match get_column src src_name with
| Some col -> add_column dst new_name col
| None -> dst)
| _ ->
match get_column src src_name with
| Some col -> add_column dst new_name col
| None -> dst
let _filter_column_pure (col : column_data) (mask : bool array) (new_nrows : int) : column_data =
(* Precompute the source indices to avoid O(n²) repeated scanning *)
let indices = Array.make new_nrows 0 in
let j = ref 0 in
Array.iteri (fun src b ->
if b then begin indices.(!j) <- src; incr j end
) mask;
assert (!j = new_nrows); (* Invariant: mask true-count must match new_nrows *)
let pick a = Array.init new_nrows (fun i -> a.(indices.(i))) in
match col with
| IntColumn a -> IntColumn (pick a)
| FloatColumn a -> FloatColumn (pick a)
| BoolColumn a -> BoolColumn (pick a)
| StringColumn a -> StringColumn (pick a)
| DateColumn a -> DateColumn (pick a)
| DatetimeColumn (a, tz) -> DatetimeColumn (pick a, tz)
| NAColumn _ -> NAColumn new_nrows
| DictionaryColumn (a, levels, ordered) -> DictionaryColumn (pick a, levels, ordered)
| ListColumn a -> ListColumn (pick a)
(** Take elements from a column by index array *)
let take_col (col : column_data) (idx_arr : int array) (new_nrows : int) : column_data =
match col with
| IntColumn a -> IntColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
| FloatColumn a -> FloatColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
| StringColumn a -> StringColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
| BoolColumn a -> BoolColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
| DateColumn a -> DateColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
| DatetimeColumn (a, tz) -> DatetimeColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))), tz)
| NAColumn _ -> NAColumn new_nrows
| DictionaryColumn (a, levels, ordered) -> DictionaryColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))), levels, ordered)
| ListColumn a -> ListColumn (Array.init new_nrows (fun i -> a.(idx_arr.(i))))
(** Filter rows using a boolean mask *)
let filter_rows (t : t) (mask : bool array) : t =
let new_nrows = Array.fold_left (fun acc b -> if b then acc + 1 else acc) 0 mask in
match t.native_handle with
| Some handle when not handle.freed ->
(match Arrow_ffi.arrow_table_filter_mask handle.ptr mask with
| Some new_ptr ->
let schema = schema_from_native_ptr new_ptr in
create_from_native new_ptr schema new_nrows
| None ->
record_zero_copy_event "filter" "native filter returned None";
(* Native filter failed ā materialize columns from FFI first *)
let filter_col col = _filter_column_pure col mask new_nrows in
let columns = List.map (fun (name, _) ->
match get_column t name with
| Some col -> (name, filter_col col)
| None -> (name, NAColumn new_nrows)
) t.schema in
{ schema = t.schema; columns; nrows = new_nrows; native_handle = None } |> materialize)
| _ ->
let filter_col col = _filter_column_pure col mask new_nrows in
let columns = List.map (fun (name, col) -> (name, filter_col col)) t.columns in
{ schema = t.schema; columns; nrows = new_nrows; native_handle = None } |> materialize
(** Slice rows: offset, length *)
let slice (t : t) (offset : int) (len : int) : t =
match t.native_handle with
| Some handle when not handle.freed ->
(match Arrow_ffi.arrow_table_slice handle.ptr (Int64.of_int offset) (Int64.of_int len) with
| Some new_ptr ->
let schema = schema_from_native_ptr new_ptr in
create_from_native new_ptr schema len
| None ->
let columns = List.map (fun (name, _) ->
let col = match get_column t name with Some c -> c | None -> NAColumn t.nrows in
(name, slice_column col offset len)
) t.schema in
{ schema = t.schema; columns; nrows = len; native_handle = None } |> materialize)
| _ ->
let columns = List.map (fun (name, col) -> (name, slice_column col offset len)) t.columns in
{ schema = t.schema; columns; nrows = len; native_handle = None } |> materialize
(** Take rows by index list *)
let take_rows (t : t) (indices : int list) : t =
match t.native_handle with
| Some handle when not handle.freed ->
let idx_arr = Array.of_list indices in
(match Arrow_ffi.arrow_table_take handle.ptr idx_arr with
| Some new_ptr ->
let schema = schema_from_native_ptr new_ptr in
let new_nrows = List.length indices in
create_from_native new_ptr schema new_nrows
| None ->
(* Fallback if native take fails *)
let source_columns = List.map (fun (n, _) ->
match get_column t n with
| Some data -> (n, data)
| None -> (n, NAColumn t.nrows)
) t.schema in
let idx_arr = Array.of_list indices in
let new_nrows = List.length indices in
let columns = List.map (fun (name, col) -> (name, take_col col idx_arr new_nrows)) source_columns in
{ schema = t.schema; columns; nrows = new_nrows; native_handle = None } |> materialize)
| _ ->
let idx_arr = Array.of_list indices in
let new_nrows = List.length indices in
let columns = List.map (fun (name, col) -> (name, take_col col idx_arr new_nrows)) t.columns in
{ schema = t.schema; columns; nrows = new_nrows; native_handle = None } |> materialize
(** Reorder rows by index array *)
let sort_by_indices (t : t) (indices : int array) : t =
match t.native_handle with
| Some handle when not handle.freed ->
(match Arrow_ffi.arrow_table_take handle.ptr indices with
| Some new_ptr ->
let schema = schema_from_native_ptr new_ptr in
create_from_native new_ptr schema (Array.length indices)
| None ->
(* Fallback: Materialize native columns if needed, then sort *)
let source_columns =
List.map (fun (n, _) ->
match get_column t n with
| Some data -> (n, data)
| None -> (n, NAColumn t.nrows)
) t.schema
in
let n = Array.length indices in
let sort_col = function
| IntColumn a -> IntColumn (Array.init n (fun i -> a.(indices.(i))))
| FloatColumn a -> FloatColumn (Array.init n (fun i -> a.(indices.(i))))
| BoolColumn a -> BoolColumn (Array.init n (fun i -> a.(indices.(i))))
| StringColumn a -> StringColumn (Array.init n (fun i -> a.(indices.(i))))
| DateColumn a -> DateColumn (Array.init n (fun i -> a.(indices.(i))))
| DatetimeColumn (a, tz) -> DatetimeColumn (Array.init n (fun i -> a.(indices.(i))), tz)
| NAColumn _ -> NAColumn n
| DictionaryColumn (a, levels, ordered) -> DictionaryColumn (Array.init n (fun i -> a.(indices.(i))), levels, ordered)
| ListColumn a -> ListColumn (Array.init n (fun i -> a.(indices.(i))))
in
let columns = List.map (fun (name, col) -> (name, sort_col col)) source_columns in
{ schema = t.schema; columns; nrows = n; native_handle = None } |> materialize)
| _ ->
let n = Array.length indices in
let sort_col = function
| IntColumn a -> IntColumn (Array.init n (fun i -> a.(indices.(i))))
| FloatColumn a -> FloatColumn (Array.init n (fun i -> a.(indices.(i))))
| BoolColumn a -> BoolColumn (Array.init n (fun i -> a.(indices.(i))))
| StringColumn a -> StringColumn (Array.init n (fun i -> a.(indices.(i))))
| DateColumn a -> DateColumn (Array.init n (fun i -> a.(indices.(i))))
| DatetimeColumn (a, tz) -> DatetimeColumn (Array.init n (fun i -> a.(indices.(i))), tz)
| NAColumn _ -> NAColumn n
| DictionaryColumn (a, levels, ordered) -> DictionaryColumn (Array.init n (fun i -> a.(indices.(i))), levels, ordered)
| ListColumn a -> ListColumn (Array.init n (fun i -> a.(indices.(i))))
in
let columns = List.map (fun (name, col) -> (name, sort_col col)) t.columns in
{ schema = t.schema; columns; nrows = n; native_handle = None } |> materialize
(** Rename columns based on an old_name -> new_name mapping. *)
let rename_columns (t : t) (mapping : (string * string) list) : t =
match t.native_handle with
| Some handle when not handle.freed ->
let rec apply_native_renames current_ptr current_schema renames =
match renames with
| [] -> Some (current_ptr, current_schema)
| (new_n, old_n) :: rest ->
match Arrow_ffi.arrow_table_rename_column current_ptr old_n new_n with
| Some next_ptr ->
let next_schema = schema_from_native_ptr next_ptr in
apply_native_renames next_ptr next_schema rest
| None -> None
in
(match apply_native_renames handle.ptr t.schema mapping with
| Some (final_ptr, final_schema) ->
create_from_native final_ptr final_schema t.nrows
| None ->
(* Fallback: materialize all columns and then rename *)
let old_to_new = List.map (fun (new_n, old_n) -> (old_n, new_n)) mapping in
let new_schema = List.map (fun (name, ty) ->
match List.assoc_opt name old_to_new with
| Some new_name -> (new_name, ty) | None -> (name, ty)) t.schema in
let columns = List.map (fun (name, _) ->
let col = match get_column t name with Some c -> c | None -> NAColumn t.nrows in
match List.assoc_opt name old_to_new with
| Some new_name -> (new_name, col) | None -> (name, col)) t.schema in
{ schema = new_schema; columns; nrows = t.nrows; native_handle = None } |> materialize)
| _ ->
let old_to_new = List.map (fun (new_n, old_n) -> (old_n, new_n)) mapping in
let new_schema = List.map (fun (name, ty) ->
match List.assoc_opt name old_to_new with
| Some new_name -> (new_name, ty) | None -> (name, ty)) t.schema in
let columns = List.map (fun (name, data) ->
match List.assoc_opt name old_to_new with
| Some new_name -> (new_name, data) | None -> (name, data)) t.columns in
{ schema = new_schema; columns; nrows = t.nrows; native_handle = None } |> materialize
let merge_horizontal (t1 : t) (t2 : t) : t option =
match t1.native_handle, t2.native_handle with
| Some h1, Some h2 when not h1.freed && not h2.freed ->
(match Arrow_ffi.arrow_table_merge_horizontal h1.ptr h2.ptr with
| Some ptr ->
let schema = schema_from_native_ptr ptr in
Some (create_from_native ptr schema t1.nrows)
| None -> None)
| _ -> None