forked from clj-python/libpython-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobject.clj
854 lines (705 loc) · 23.6 KB
/
object.clj
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
(ns libpython-clj.python.object
"Base support for python objects and python->jvm interop. At this level (without
interop), we can only support the copying protocols; we can't do bridging. Still,
copying gets you quite far and you can, for instance, call python functions and get
the attribute map from a python object.
Protocol functions implemented:
python-type
->python
->jvm
dir
has-attr?
attr
callable?
has-item?
item
set-item!
do-call-fn
len
Results of these, when they return python pointers, return the raw,unwrapped pointers.
Callers at this level are sitting just close enough to the actual libpy calls to still
get pointers back *but* they don't have to manage the gil."
(:require [libpython-clj.python.interpreter
:refer [with-gil
with-interpreter
ensure-interpreter
ensure-bound-interpreter
check-error-throw]
:as pyinterp]
[libpython-clj.python.protocols
:refer [pyobject->jvm
python-type]
:as py-proto]
[libpython-clj.python.logging
:refer [log-error log-warn log-info]]
[libpython-clj.jna.base :as libpy-base]
[libpython-clj.jna :as libpy]
[clojure.stacktrace :as st]
[tech.jna :as jna]
[tech.resource :as resource]
[tech.v2.datatype :as dtype]
[tech.v2.datatype.protocols :as dtype-proto]
[tech.v2.datatype.casting :as casting]
[tech.v2.tensor])
(:import [com.sun.jna Pointer CallbackReference]
[libpython_clj.jna
PyObject
CFunction$KeyWordFunction
CFunction$TupleFunction
CFunction$NoArgFunction
PyMethodDef]
[java.nio.charset StandardCharsets]
[tech.v2.datatype ObjectIter]
[tech.v2.datatype.typed_buffer TypedBuffer]
[tech.v2.tensor.impl Tensor]
[java.util RandomAccess Map Set Map$Entry]
[clojure.lang Symbol Keyword
IPersistentMap
IPersistentVector
IPersistentSet]))
(set! *warn-on-reflection* true)
(extend-protocol py-proto/PCopyToJVM
Pointer
(->jvm [item options]
(pyobject->jvm item))
PyObject
(->jvm [item options]
(pyobject->jvm (.getPointer item))))
(extend-protocol py-proto/PBridgeToPython
Pointer
(as-python [item options] item)
PyObject
(as-python [item options] (.getPointer item)))
(extend-protocol py-proto/PCopyToPython
Pointer
(->python [item options] item)
PyObject
(->python [item options] (.getPointer item)))
(defn ->jvm
"Copy an object into the jvm (if it wasn't there already.)"
[item & [options]]
(py-proto/->jvm item options))
(def ^:dynamic *object-reference-logging* false)
(defn wrap-pyobject
"Wrap object such that when it is no longer accessible via the program decref is
called. Used for new references. This is some of the meat of the issue, however,
in that getting the two system's garbage collectors to play nice is kind
of tough."
[pyobj]
(check-error-throw)
(when pyobj
(let [interpreter (ensure-bound-interpreter)
pyobj-value (Pointer/nativeValue (jna/as-ptr pyobj))
py-type-name (name (python-type pyobj))]
(when *object-reference-logging*
(let [obj-data (PyObject. (Pointer. pyobj-value))]
(log-info (format "tracking object - 0x%x:%4d:%s"
pyobj-value
(.ob_refcnt obj-data)
py-type-name))))
;;We ask the garbage collector to track the python object and notify
;;us when it is released. We then decref on that event.
(resource/track pyobj
#(with-interpreter interpreter
(try
(when *object-reference-logging*
(let [obj-data (PyObject. (Pointer. pyobj-value))]
(log-info (format "releasing object - 0x%x:%4d:%s"
pyobj-value
(.ob_refcnt obj-data)
py-type-name))))
(libpy/Py_DecRef (Pointer. pyobj-value))
(catch Throwable e
(log-error "Exception while releasing object: %s" e))))
[:gc]))))
(defn incref-wrap-pyobject
"Increment the object's refcount and then call wrap-pyobject. Used for borrowed
references that need to escape the current scope."
[pyobj]
(with-gil
(let [pyobj (jna/as-ptr pyobj)]
(libpy/Py_IncRef pyobj)
(wrap-pyobject pyobj))))
(defn incref
"Incref and return object"
[pyobj]
(let [pyobj (jna/as-ptr pyobj)]
(libpy/Py_IncRef pyobj)
pyobj))
(defn py-true
[]
(libpy/Py_True))
(defn py-false
[]
(libpy/Py_False))
(defn py-none
[]
(libpy/Py_None))
(defn py-not-implemented
[]
(libpy/Py_NotImplemented))
;; Now we can completely implement ->python
(defn ->python
"Completely convert a jvm object to a python copy."
[item & [options]]
(if item
(py-proto/->python item options)
(py-none)))
(defn py-raw-type
^Pointer [pyobj]
(let [pyobj (PyObject. (jna/as-ptr pyobj))]
(.ob_type pyobj)))
(extend-protocol py-proto/PPythonType
Pointer
(get-python-type [pyobj]
(with-gil
(-> pyobj
py-raw-type
pyinterp/py-type-keyword)))
PyObject
(get-python-type [item]
(py-proto/get-python-type (.getPointer item))))
(defn py-string->string
^String [pyobj]
(with-gil
(when-not (= :str (python-type pyobj))
(throw (ex-info (format "Object passed in is not a string: %s"
(python-type pyobj))
{})))
(let [size-obj (jna/size-t-ref)
^Pointer str-ptr (libpy/PyUnicode_AsUTF8AndSize pyobj size-obj)
n-elems (jna/size-t-ref-value size-obj)]
(-> (.decode StandardCharsets/UTF_8 (.getByteBuffer str-ptr 0 n-elems))
(.toString)))))
(defn py-str
^String [pyobj]
(with-gil
(let [py-str (if (= :str (python-type pyobj))
pyobj
(-> (libpy/PyObject_Str pyobj)
wrap-pyobject))]
(py-string->string py-str))))
(defn py-dir
[pyobj]
(with-gil
(-> (libpy/PyObject_Dir pyobj)
wrap-pyobject
(py-proto/->jvm {}))))
(defn ->py-long
[item]
(with-gil
(wrap-pyobject
(libpy/PyLong_FromLongLong (long item)))))
(defn ->py-float
[item]
(with-gil
(wrap-pyobject
(libpy/PyFloat_FromDouble (double item)))))
(defn ->py-string
[item]
(with-gil
(let [byte-data (.getBytes ^String item StandardCharsets/UTF_16)]
(wrap-pyobject
(libpy/PyUnicode_Decode byte-data (dtype/ecount byte-data)
"UTF-16" "strict")))))
(defn ->py-dict
[item]
(with-gil
(let [dict (libpy/PyDict_New)]
(doseq [[k v] item]
(libpy/PyDict_SetItem dict (->python k)
(->python v)))
(wrap-pyobject
dict))))
(defn ->py-list
[item-seq]
(with-gil
(let [retval (libpy/PyList_New (count item-seq))]
(->> item-seq
(map-indexed (fn [idx item]
(libpy/PyList_SetItem
retval
idx
(let [new-val (->python item)]
(libpy/Py_IncRef new-val)
new-val))))
dorun)
(wrap-pyobject retval))))
(defn ->py-tuple
[item-seq]
(with-gil
(let [n-items (count item-seq)
new-tuple (libpy/PyTuple_New n-items)]
(->> item-seq
(map-indexed (fn [idx item]
(libpy/PyTuple_SetItem
new-tuple
idx
(let [new-val (->python item)]
(libpy/Py_IncRef new-val)
new-val))))
dorun)
(wrap-pyobject new-tuple))))
(defn ->py-set
[item]
(with-gil
(-> (libpy/PySet_New (->py-list item))
wrap-pyobject)))
(extend-protocol libpy-base/PToPyObjectPtr
Number
(convertible-to-pyobject-ptr? [item] true)
(->py-object-ptr [item]
(with-gil
(->python item)))
String
(convertible-to-pyobject-ptr? [item] true)
(->py-object-ptr [item]
(with-gil
(->python item)))
;;The container classes are mirrored into python, not copied.
;;so no entries here for map, list, etc.
)
;; Chosen by fair dice roll, the item cutoff decides how many items
;; a persistent vector should have in it before it is considered a list
;; instead of a tuple. If you know something should always be a tuple, then
;; call ->py-tuple explicitly.
(def ^:dynamic *item-tuple-cutoff* 8)
(defn wrap-clojure-fn
[fn-obj]
(when-not (fn? fn-obj)
(throw (ex-info "This is not a function." {})))
(reify CFunction$TupleFunction
(pyinvoke [this self args]
(try
(let [retval
(apply fn-obj (->jvm args))]
(if (nil? retval)
(libpy/Py_None)
(->python retval)))
(catch Throwable e
(log-error (format "%s:%s" e (with-out-str
(st/print-stack-trace e))))
(libpy/PyErr_SetString (libpy/PyExc_Exception)
(format "%s:%s" e (with-out-str
(st/print-stack-trace e))))
nil)))))
(defn apply-method-def-data!
[^PyMethodDef method-def {:keys [name
doc
function]
:as method-data}]
(let [callback (if (or (instance? CFunction$KeyWordFunction function)
(instance? CFunction$TupleFunction function)
(instance? CFunction$NoArgFunction function))
function
(wrap-clojure-fn function))
meth-flags (long (cond
(instance? CFunction$NoArgFunction callback)
@libpy/METH_NOARGS
(instance? CFunction$TupleFunction callback)
@libpy/METH_VARARGS
(instance? CFunction$KeyWordFunction callback)
(bit-or @libpy/METH_KEYWORDS @libpy/METH_VARARGS)
:else
(throw (ex-info (format "Failed due to type: %s"
(type callback))))))
name-ptr (jna/string->ptr name)
doc-ptr (jna/string->ptr doc)]
(set! (.ml_name method-def) name-ptr)
(set! (.ml_meth method-def) (CallbackReference/getFunctionPointer callback))
(set! (.ml_flags method-def) (int meth-flags))
(set! (.ml_doc method-def) doc-ptr)
(.write method-def)
(pyinterp/conj-forever! (assoc method-data
:name-ptr name-ptr
:doc-ptr doc-ptr
:callback-object callback
:method-definition method-def))
method-def))
(defn method-def-data->method-def
[method-data]
(apply-method-def-data! (PyMethodDef.) method-data))
(defn ->py-fn
"Create a python callback from a clojure fn.
If clojure fn, then tuple arguments are used. If keyword arguments are desired,
the pass in something derived from: libpython-clj.jna.CFunction$KeyWordFunction.
If a pure fn is passed in, arguments are marshalled from python if possible and
then to-python in the case of successful execution. An exception will set the error
indicator."
[fn-obj {:keys [method-name documentation py-self]
:or {method-name "unnamed_function"
documentation "not documented"}}]
(with-gil
(let [py-self (or py-self (->python {}))]
(wrap-pyobject (libpy/PyCFunction_New (method-def-data->method-def
{:name method-name
:doc documentation
:function fn-obj})
;;This is a nice little tidbit, cfunction_new
;;steals the reference.
(libpy/Py_IncRef py-self))))))
(extend-protocol py-proto/PCopyToPython
Number
(->python [item options]
(if (integer? item)
(->py-long item)
(->py-float item)))
String
(->python [item options]
(->py-string item))
Symbol
(->python [item options]
(->py-string (name item)))
Keyword
(->python [item optins]
(->py-string (name item)))
Boolean
(->python [item options]
(if item
(py-true)
(py-false)))
IPersistentMap
(->python [item options]
(->py-dict item))
Map
(->python [item options]
(->py-dict item))
Map$Entry
(->python [item options]
(->py-tuple [(.getKey item) (.getValue item)]))
Set
(->python [item options]
(->py-set item))
IPersistentSet
(->python [item options]
(->py-set item))
RandomAccess
(->python [item options]
(if (and (instance? IPersistentVector item)
(< (count item) (long *item-tuple-cutoff*)))
(->py-tuple item)
(->py-list item)))
Iterable
(->python [item options]
(->py-list item))
Pointer
(->python [item options] item)
PyObject
(->python [item options] (.getPointer item))
Tensor
(->python [item options] (py-proto/as-numpy item options))
TypedBuffer
(->python [item options] (py-proto/as-numpy item options))
Object
(->python [item options]
(cond
(fn? item)
(->py-fn item {})
(casting/numeric-type? (dtype/get-datatype item))
(py-proto/as-numpy item options)
:else
(if-let [item-reader (dtype/->reader item)]
(->py-list item-reader)
;;Out of sane options at the moment.
(throw (ex-info (format "Unable to convert java object to python: %s"
(type item))
{}))))))
(extend-protocol py-proto/PPythonType
Number
(get-python-type [item]
(if (integer? item)
:int
:float))
Boolean
(get-python-type [item] :bool)
String
(get-python-type [item] :str)
Symbol
(get-python-type [item] :str)
Keyword
(get-python-type [item] :str)
Map
(get-python-type [item] :dict)
IPersistentMap
(get-python-type [item] :dict)
Map$Entry
(get-python-type [item] :tuple)
Set
(get-python-type [item] :set)
IPersistentSet
(get-python-type [item] :set)
IPersistentVector
(get-python-type [item]
;; fair dice roll
(if (< (count item) (long *item-tuple-cutoff*))
:tuple
:list))
RandomAccess
(get-python-type [item] :list)
Iterable
(get-python-type [item] :list)
Object
(get-python-type [item]
(if (casting/numeric-type? (dtype/get-datatype item))
:nd-array
(if (dtype-proto/convertible-to-reader? item)
:list
:unknown-type))))
(defn stringable?
[item]
(or (keyword? item)
(string? item)
(symbol? item)))
(defn stringable
^String [item]
(when (stringable? item)
(if (string? item)
item
(name item))))
(defn has-attr?
[pyobj attr-name]
(with-gil
(= 1
(if (stringable? attr-name)
(libpy/PyObject_HasAttrString pyobj (stringable attr-name))
(libpy/PyObject_HasAttr pyobj (->python attr-name))))))
(defn get-attr
[pyobj attr-name]
(with-gil
(-> (if (stringable? attr-name)
(libpy/PyObject_GetAttrString pyobj (stringable attr-name))
(libpy/PyObject_GetAttr pyobj (->python attr-name)))
wrap-pyobject)))
(defn set-attr!
[pyobj attr-name attr-value]
(with-gil
(let [py-value (->python attr-value)]
(if (stringable? attr-name)
(libpy/PyObject_SetAttrString pyobj
(stringable attr-name)
py-value)
(libpy/PyObject_SetAttr pyobj
(->python attr-name)
py-value)))
pyobj))
(defn obj-has-item?
[elem elem-name]
(with-gil
(= 1
(if (stringable? elem-name)
(libpy/PyMapping_HasKeyString elem (stringable elem-name))
(libpy/PyMapping_HasKey elem (->python elem-name))))))
(defn obj-get-item
[elem elem-name]
(with-gil
(-> (libpy/PyObject_GetItem elem (->python elem-name))
wrap-pyobject)))
(defn obj-set-item!
[elem elem-name elem-value]
(with-gil
(let [py-value (->python elem-value)]
(libpy/PyObject_SetItem elem
(->python elem-name)
(->python elem-value)))
elem))
(extend-protocol py-proto/PPyObject
Pointer
(dir [item]
(py-dir item))
(has-attr? [item name] (has-attr? item name))
(get-attr [item name] (get-attr item name))
(set-attr! [item item-name item-value] (set-attr! item item-name item-value))
(callable? [item] (= 1 (libpy/PyCallable_Check item)))
(has-item? [item item-name] (obj-has-item? item item-name))
(get-item [item item-name] (obj-get-item item item-name))
(set-item! [item item-name item-value] (obj-set-item! item item-name item-value))
PyObject
(dir [item] (py-proto/dir (.getPointer item)))
(has-attr? [item item-name] (py-proto/has-attr? (.getPointer item) item-name))
(get-attr [item item-name] (py-proto/get-attr (.getPointer item) item-name))
(set-attr! [item item-name item-value]
(py-proto/set-attr! (.getPointer item) item-name item-value))
(callable? [item] (py-proto/callable? (.getPointer item)))
(has-item? [item item-name] (py-proto/has-item? (.getPointer item) item-name))
(item [item item-name] (py-proto/get-item (.getPointer item) item-name))
(set-item! [item item-name item-value]
(py-proto/set-item! (.getPointer item) item-name item-value)))
(extend-protocol py-proto/PyCall
Pointer
(do-call-fn [callable arglist kw-arg-map]
(with-gil nil
(-> (cond
(seq kw-arg-map)
(libpy/PyObject_Call callable (->py-tuple arglist) (->py-dict kw-arg-map))
(seq arglist)
(libpy/PyObject_CallObject callable (->py-tuple arglist))
:else
(libpy/PyObject_CallObject callable nil))
wrap-pyobject)))
PyObject
(do-call-fn [callable arglist kw-arg-map]
(py-proto/do-call-fn (.getPointer callable) arglist kw-arg-map)))
(extend-protocol py-proto/PPyObjLength
Pointer
(len [item]
(libpy/PyObject_Length item))
PyObject
(len [item]
(py-proto/len (.getPointer item))))
(defn python->jvm-copy-hashmap
[pyobj & [map-items]]
(with-gil nil
(when-not (= 1 (libpy/PyMapping_Check pyobj))
(throw (ex-info (format "Object does not implement the mapping protocol: %s"
(python-type pyobj)))))
(->> (or map-items
(libpy/PyMapping_Items pyobj)
wrap-pyobject)
->jvm
(into {}))))
(defn python->jvm-copy-persistent-vector
[pyobj]
(with-gil nil
(when-not (= 1 (libpy/PySequence_Check pyobj))
(throw (ex-info (format "Object does not implement sequence protocol: %s"
(python-type pyobj)))))
(->> (range (libpy/PySequence_Length pyobj))
(mapv (fn [idx]
(-> (libpy/PySequence_GetItem pyobj idx)
wrap-pyobject
->jvm))))))
(defn python->jvm-iterator
[iter-fn item-conversion-fn]
(with-gil nil
(let [interpreter (ensure-bound-interpreter)]
(let [py-iter (py-proto/call iter-fn)
next-fn (fn [last-item]
(with-interpreter interpreter
(when-let [next-obj (libpy/PyIter_Next py-iter)]
(-> next-obj
(wrap-pyobject)
item-conversion-fn))))
cur-item-store (atom (next-fn nil))]
(reify ObjectIter
jna/PToPtr
(is-jna-ptr-convertible? [item] true)
(->ptr-backing-store [item] py-iter)
(hasNext [obj-iter] (boolean @cur-item-store))
(next [obj-iter]
(-> (swap-vals! cur-item-store next-fn)
first))
(current [obj-iter]
@cur-item-store))))))
(defn python->jvm-iterable
"Create an iterable that auto-copies what it iterates completely into the jvm. It
maintains a reference to the python object, however, so this method isn't necessarily
safe."
[pyobj & [item-conversion-fn]]
(with-gil nil
(when-not (has-attr? pyobj "__iter__")
(throw (ex-info (format "object is not iterable: %s"
(python-type pyobj))
{})))
(let [item-conversion-fn (or item-conversion-fn ->jvm)
iter-callable (get-attr pyobj "__iter__")
interpreter (ensure-bound-interpreter)]
(reify
jna/PToPtr
(is-jna-ptr-convertible? [item] true)
(->ptr-backing-store [item] pyobj)
Iterable
(iterator [item]
(python->jvm-iterator iter-callable item-conversion-fn))))))
(defmethod pyobject->jvm :int
[pyobj]
(with-gil nil
(libpy/PyLong_AsLongLong pyobj)))
(defmethod pyobject->jvm :float
[pyobj]
(with-gil nil
(libpy/PyFloat_AsDouble pyobj)))
(defmethod pyobject->jvm :none-type
[pyobj]
nil)
(defmethod pyobject->jvm :str
[pyobj]
(with-gil nil
(py-string->string pyobj)))
(defn pyobj-true?
[pyobj]
(with-gil nil
(= 1 (libpy/PyObject_IsTrue pyobj))))
(defmethod pyobject->jvm :bool
[pyobj]
(pyobj-true? pyobj))
(defmethod pyobject->jvm :tuple
[pyobj]
(python->jvm-copy-persistent-vector pyobj))
(defmethod pyobject->jvm :list
[pyobj]
(python->jvm-copy-persistent-vector pyobj))
(defmethod pyobject->jvm :dict
[pyobj]
(python->jvm-copy-hashmap pyobj))
(defmethod pyobject->jvm :set
[pyobj]
(with-gil
(->> (python->jvm-iterable pyobj)
set)))
;;numpy types
(defn numpy-scalar->jvm
[pyobj]
(with-gil nil
(-> (py-proto/get-attr pyobj "data")
(py-proto/get-item (->py-tuple []))
->jvm)))
(defmethod pyobject->jvm :uint-8
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :int-8
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :uint-16
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :int-16
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :uint-32
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :int-32
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :uint-64
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :int-64
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :float-64
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :float-32
[pyobj]
(numpy-scalar->jvm pyobj))
(defmethod pyobject->jvm :default
[pyobj]
(cond
;;Things could implement mapping and sequence logically so mapping
;;takes precedence
(= 1 (libpy/PyMapping_Check pyobj))
(if-let [map-items (try (-> (libpy/PyMapping_Items pyobj)
wrap-pyobject)
(catch Throwable e nil))]
(python->jvm-copy-hashmap pyobj map-items)
(do
;;Ignore error. The mapping check isn't thorough enough to work.
(libpy/PyErr_Clear)
(python->jvm-copy-persistent-vector pyobj)))
;;Sequences become persistent vectors
(= 1 (libpy/PySequence_Check pyobj))
(python->jvm-copy-persistent-vector)
:else
{:type (python-type pyobj)
:value (Pointer/nativeValue (jna/as-ptr pyobj))}))