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
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
//! Abstract data type wrappers.
//!
//! ### Reference
//!
//! The following table describes abstract data types supported by OpenCL
//! (from [SDK]):
//!
//! * cl_platform_id: The ID for a platform.
//! * cl_device_id: The ID for a device.
//! * cl_context: A context.
//! * cl_command_queue: A command queue.
//! * cl_mem: A memory object.
//! * cl_program: A program.
//! * cl_kernel: A kernel.
//! * cl_event: An event.
//! * cl_sampler: A sampler.
//!
//! The following new derived wrappers are also included in this module:
//!
//! * cl_events: A list of events.
//!
//!
//! ### Who cares. Why bother?
//!
//! These types ensure as best they can that stored pointers to any of the
//! above objects will be valid until that pointer is dropped by the Rust
//! runtime (which obviously is not a 100% guarantee).
//!
//! What this means is that you can share, clone, store, and throw away these
//! types, and any types that contain them, among multiple threads, for as
//! long as you'd like, with an insignificant amount of overhead, without
//! having to worry about the dangers of dereferencing those types later on.
//! As good as the OpenCL library generally is about this, it fails in many
//! cases to provide complete protection against segfaults due to
//! dereferencing old pointers particularly on certain *ahem* platforms.
//!
//!
//!
//! [SDK]: https://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/abstractDataTypes.html

use crate::error::Result as OclCoreResult;
use crate::ffi::{
    c_void, cl_command_queue, cl_context, cl_device_id, cl_event, cl_kernel, cl_mem,
    cl_platform_id, cl_program, cl_sampler,
};
use crate::functions::{self, ApiFunction, VersionKind};
use crate::{
    CommandExecutionStatus, CommandQueueInfo, CommandQueueInfoResult, ContextInfo,
    ContextInfoResult, DeviceInfo, DeviceInfoResult, DeviceType, EventCallbackFn, EventInfo,
    EventInfoResult, KernelInfo, KernelInfoResult, OclPrm, OpenclVersion, PlatformInfo,
    ProgramInfo, ProgramInfoResult, Status,
};
use std::cell::Ref;
use std::fmt::Debug;
use std::mem;
use std::ptr;
use std::slice;

//=============================================================================
//================================ CONSTANTS ==================================
//=============================================================================

// const DEBUG_PRINT: bool = false;

//=============================================================================
//================================== TRAITS ===================================
//=============================================================================

/// `AsRef` with a type being carried along for convenience.
pub trait AsMem<T>
where
    T: OclPrm,
{
    fn as_mem(&self) -> &Mem;
}

impl<'a, T, M> AsMem<T> for &'a M
where
    T: OclPrm,
    M: AsMem<T>,
{
    fn as_mem(&self) -> &Mem {
        (**self).as_mem()
    }
}

impl<'a, T, M> AsMem<T> for &'a mut M
where
    T: OclPrm,
    M: AsMem<T>,
{
    fn as_mem(&self) -> &Mem {
        (**self).as_mem()
    }
}

// /// Types which can be represented by a `Mem` reference.
// pub trait AsMem {
//     fn as_mem(&self) -> &Mem;
// }

// impl<'a, M> AsMem for &'a M where M: AsMem {
//     fn as_mem(&self) -> &Mem {
//         (**self).as_mem()
//     }
// }

// impl<'a, M> AsMem for &'a mut M where M: AsMem {
//     fn as_mem(&self) -> &Mem {
//         (**self).as_mem()
//     }
// }

/// Types which can be passed as the primary (`ptr`) argument value to
/// `::enqueue_read_buffer`, `::enqueue_write_buffer`,
/// `::enqueue_read_buffer_rect`, `::enqueue_write_buffer_rect`,
/// `::enqueue_read_image`, or `::enqueue_write_image`.
///
/// These may be device or host side memory buffers.
///
/// Types returned from `::enqueue_map_...` and all of their derivatives as
/// well as types created with `::create_buffer` and `::create_image` all
/// implement this trait.
///
pub unsafe trait MemCmdRw {}

/// Types which can be passed to any and all `::enqueue_...` functions as the
/// primary (`ptr`) argument and can also be passed as kernel `cl_mem` arguments.
///
/// These are strictly device side memory buffers.
///
/// Types created with `::create_buffer` and `::create_image` implement this
/// trait.
pub unsafe trait MemCmdAll {}

/// Types with a fixed set of associated devices and an associated platform.
pub trait ClVersions {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>>;
    fn platform_version(&self) -> OclCoreResult<OpenclVersion>;

    fn verify_device_versions(&self, required_version: [u16; 2]) -> OclCoreResult<()> {
        functions::verify_versions(
            &self.device_versions()?,
            required_version,
            ApiFunction::None,
            VersionKind::Device,
        )
    }

    fn verify_platform_version(&self, required_version: [u16; 2]) -> OclCoreResult<()> {
        let ver = [self.platform_version()?];
        functions::verify_versions(
            &ver,
            required_version,
            ApiFunction::None,
            VersionKind::Platform,
        )
    }
}

impl ClVersions for cl_context {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let devices = match functions::get_context_info(self, ContextInfo::Devices) {
            Ok(ContextInfoResult::Devices(ds)) => Ok(ds),
            Err(err) => Err(err),
            _ => unreachable!(),
        };

        let devices = match devices {
            Ok(d) => d,
            Err(e) => return Err(e),
        };

        functions::device_versions(&devices)
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        let devices = match functions::get_context_info(self, ContextInfo::Devices) {
            Ok(ContextInfoResult::Devices(ds)) => Ok(ds),
            Err(err) => Err(err),
            _ => unreachable!(),
        };

        let devices = match devices {
            Ok(d) => d,
            Err(e) => return Err(e),
        };

        devices[0].platform_version()
    }
}

/// Types with a reference to a raw event pointer.
pub unsafe trait ClEventPtrRef<'e> {
    unsafe fn as_ptr_ref(&'e self) -> &'e cl_event;
}

unsafe impl<'e> ClEventPtrRef<'e> for &'e cl_event {
    unsafe fn as_ptr_ref(&'e self) -> &'e cl_event {
        self
    }
}

unsafe impl<'e, L> ClEventPtrRef<'e> for &'e L
where
    L: ClEventPtrRef<'e>,
{
    unsafe fn as_ptr_ref(&'e self) -> &'e cl_event {
        (*self).as_ptr_ref()
    }
}

/// Types with a mutable pointer to a new, null raw event pointer.
///
pub unsafe trait ClNullEventPtr: Debug {
    fn alloc_new(&mut self) -> *mut cl_event;
    unsafe fn clone_from<E: AsRef<Event>>(&mut self, ev: E);
}

unsafe impl ClNullEventPtr for () {
    fn alloc_new(&mut self) -> *mut cl_event {
        panic!("Void events may not be used.");
    }

    unsafe fn clone_from<E: AsRef<Event>>(&mut self, _: E) {
        panic!("Void events may not be used.");
    }
}

/// Types with a reference to a raw event array and an associated element
/// count.
///
/// [TODO]: Create an enum to be used with this trait.
///
pub unsafe trait ClWaitListPtr: Debug {
    /// Returns a pointer to the first pointer in this list.
    unsafe fn as_ptr_ptr(&self) -> *const cl_event;
    /// Returns the number of items in this wait list.
    fn count(&self) -> u32;
}

unsafe impl<'a, W> ClWaitListPtr for Ref<'a, W>
where
    W: ClWaitListPtr,
{
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        (*(*self)).as_ptr_ptr()
    }

    fn count(&self) -> u32 {
        0 as u32
    }
}

unsafe impl<'a> ClWaitListPtr for &'a [cl_event] {
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        self.as_ptr()
    }

    fn count(&self) -> u32 {
        self.len() as u32
    }
}

unsafe impl<'a> ClWaitListPtr for &'a [Event] {
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        self.as_ptr() as *const _ as *const cl_event
    }

    fn count(&self) -> u32 {
        self.len() as u32
    }
}

unsafe impl<'a> ClWaitListPtr for () {
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        ptr::null() as *const _ as *const cl_event
    }

    fn count(&self) -> u32 {
        0 as u32
    }
}

/// Types with a reference to a raw platform_id pointer.
// pub unsafe trait ClPlatformIdPtr: Sized + Debug {
pub unsafe trait ClPlatformIdPtr: Debug + Copy {
    fn as_ptr(&self) -> cl_platform_id;
}

unsafe impl<'a, P> ClPlatformIdPtr for &'a P
where
    P: ClPlatformIdPtr,
{
    fn as_ptr(&self) -> cl_platform_id {
        (*self).as_ptr()
    }
}

unsafe impl ClPlatformIdPtr for () {
    fn as_ptr(&self) -> cl_platform_id {
        ptr::null_mut() as *mut _ as cl_platform_id
    }
}

/// Types with a reference to a raw device_id pointer.
// pub unsafe trait ClDeviceIdPtr: Sized + Debug {
pub unsafe trait ClDeviceIdPtr: Debug + Copy {
    fn as_ptr(&self) -> cl_device_id;
}

unsafe impl ClDeviceIdPtr for () {
    fn as_ptr(&self) -> cl_device_id {
        ptr::null_mut() as *mut _ as cl_device_id
    }
}

/// Types with a copy of a context pointer.
pub unsafe trait ClContextPtr: Debug + Copy {
    fn as_ptr(&self) -> cl_context;
}

unsafe impl ClContextPtr for cl_context {
    fn as_ptr(&self) -> cl_context {
        *self
    }
}

unsafe impl<'a> ClContextPtr for &'a cl_context {
    fn as_ptr(&self) -> cl_context {
        **self
    }
}

//=============================================================================
//=================================== TYPES ===================================
//=============================================================================

/// Wrapper used by `EventList` to send event pointers to core functions
/// cheaply.
#[repr(C)]
pub struct EventRefWrapper(cl_event);

impl EventRefWrapper {
    pub unsafe fn new(ptr: cl_event) -> EventRefWrapper {
        EventRefWrapper(ptr)
    }
}

unsafe impl<'e> ClEventPtrRef<'e> for EventRefWrapper {
    unsafe fn as_ptr_ref(&'e self) -> &'e cl_event {
        &self.0
    }
}

/// cl_platform_id
#[repr(C)]
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub struct PlatformId(cl_platform_id);

impl PlatformId {
    /// Creates a new `PlatformId` wrapper from a raw pointer.
    pub unsafe fn from_raw(ptr: cl_platform_id) -> PlatformId {
        // assert!(!ptr.is_null(), "Null pointer passed.");
        PlatformId(ptr)
    }

    /// Returns an invalid `PlatformId` used for initializing data structures
    /// meant to be filled with valid ones.
    pub unsafe fn null() -> PlatformId {
        PlatformId(ptr::null_mut())
    }

    /// Returns a pointer.
    pub fn as_ptr(&self) -> cl_platform_id {
        self.0
    }

    /// Returns the queried and parsed OpenCL version for this platform.
    pub fn version(&self) -> OclCoreResult<OpenclVersion> {
        if !self.0.is_null() {
            functions::get_platform_info(self, PlatformInfo::Version)?.as_opencl_version()
        } else {
            Err("PlatformId::version(): This platform_id is invalid.".into())
        }
    }
}

unsafe impl ClPlatformIdPtr for PlatformId {
    fn as_ptr(&self) -> cl_platform_id {
        self.0
    }
}

unsafe impl Sync for PlatformId {}
unsafe impl Send for PlatformId {}

impl ClVersions for PlatformId {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let devices = functions::get_device_ids(self, Some(DeviceType::ALL), None)?;
        functions::device_versions(&devices)
    }

    // [FIXME]: TEMPORARY; [UPDATE]: Why is this marked temporary?
    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        self.version()
    }
}

/// cl_device_id
#[repr(C)]
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub struct DeviceId(cl_device_id);

impl DeviceId {
    /// Creates a new `DeviceId` wrapper from a raw pointer.
    pub unsafe fn from_raw(ptr: cl_device_id) -> DeviceId {
        assert!(!ptr.is_null(), "Null pointer passed.");
        DeviceId(ptr)
    }

    /// Returns an invalid `DeviceId` used for initializing data structures
    /// meant to be filled with valid ones.
    pub unsafe fn null() -> DeviceId {
        DeviceId(ptr::null_mut())
    }

    /// Returns a pointer.
    pub fn as_raw(&self) -> cl_device_id {
        self.0
    }

    /// Returns the queried and parsed OpenCL version for this device.
    pub fn version(&self) -> OclCoreResult<OpenclVersion> {
        if !self.0.is_null() {
            functions::get_device_info(self, DeviceInfo::Version)?.as_opencl_version()
        } else {
            Err("DeviceId::device_versions(): This device_id is invalid.".into())
        }
    }
}

unsafe impl ClDeviceIdPtr for DeviceId {
    fn as_ptr(&self) -> cl_device_id {
        self.0
    }
}

unsafe impl<'a> ClDeviceIdPtr for &'a DeviceId {
    fn as_ptr(&self) -> cl_device_id {
        self.0
    }
}

unsafe impl Sync for DeviceId {}
unsafe impl Send for DeviceId {}

impl ClVersions for DeviceId {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        self.version().map(|dv| vec![dv])
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        let platform = match functions::get_device_info(self, DeviceInfo::Platform) {
            Ok(DeviceInfoResult::Platform(p)) => p,
            // Ok(DeviceInfoResult::Error(e)) => return Err(*e),
            Err(err) => return Err(err),
            _ => unreachable!(),
        };

        functions::get_platform_info(&platform, PlatformInfo::Version)?.as_opencl_version()
    }
}

/// cl_context
#[repr(C)]
#[derive(Debug)]
pub struct Context(cl_context);

impl Context {
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_context) -> Context {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Context(ptr)
    }

    /// Only call this when passing a copied pointer such as from an
    /// `clGet*****Info` function.
    pub unsafe fn from_raw_copied_ptr(ptr: cl_context) -> Context {
        assert!(!ptr.is_null(), "Null pointer passed.");
        let copy = Context(ptr);
        functions::retain_context(&copy).unwrap();
        copy
    }

    /// Returns a pointer, do not store it.
    pub fn as_ptr(&self) -> cl_context {
        self.0
    }

    /// Returns the devices associated with this context.
    pub fn devices(&self) -> OclCoreResult<Vec<DeviceId>> {
        match functions::get_context_info(self, ContextInfo::Devices) {
            Ok(ContextInfoResult::Devices(ds)) => Ok(ds),
            Err(err) => Err(err),
            _ => unreachable!(),
        }
    }

    /// Returns the platform associated with this context, if any.
    ///
    /// Errors upon the usual OpenCL errors.
    ///
    /// Returns `None` if the context properties do not specify a platform.
    pub fn platform(&self) -> OclCoreResult<Option<PlatformId>> {
        functions::get_context_platform(self)
    }
}

unsafe impl Sync for Context {}
unsafe impl Send for Context {}

impl Clone for Context {
    fn clone(&self) -> Context {
        unsafe {
            functions::retain_context(self).unwrap();
        }
        Context(self.0)
    }
}

impl Drop for Context {
    /// Panics in the event of an error of type `Error::Status` except when
    /// the status code is `CL_INVALID_CONTEXT` (which is ignored).
    ///
    /// This is done because certain platforms error with `CL_INVALID_CONTEXT`
    /// for unknown reasons and as far as we know can be safely ignored.
    ///
    fn drop(&mut self) {
        unsafe {
            if let Err(e) = functions::release_context(self as &Context) {
                if let Some(Status::CL_INVALID_CONTEXT) = e.api_status() {
                    return;
                }
                panic!("{:?}", e);
            }
        }
    }
}

impl PartialEq<Context> for Context {
    fn eq(&self, other: &Context) -> bool {
        self.0 == other.0
    }
}

unsafe impl<'a> ClContextPtr for &'a Context {
    fn as_ptr(&self) -> cl_context {
        self.0
    }
}

impl ClVersions for Context {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let devices = self.devices()?;
        functions::device_versions(&devices)
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        let devices = self.devices()?;
        devices[0].platform_version()
    }
}

impl<'a> ClVersions for &'a Context {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        (*self).device_versions()
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        (*self).platform_version()
    }
}

/// cl_command_queue
#[repr(C)]
#[derive(Debug)]
pub struct CommandQueue(cl_command_queue);

impl CommandQueue {
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_command_queue) -> CommandQueue {
        assert!(!ptr.is_null(), "Null pointer passed.");
        CommandQueue(ptr)
    }

    /// Only call this when passing a copied pointer such as from an
    /// `clGet*****Info` function.
    pub unsafe fn from_raw_copied_ptr(ptr: cl_command_queue) -> CommandQueue {
        assert!(!ptr.is_null(), "Null pointer passed.");
        let copy = CommandQueue(ptr);
        functions::retain_command_queue(&copy).unwrap();
        copy
    }

    /// Returns a pointer, do not store it.
    pub fn as_ptr(&self) -> cl_command_queue {
        self.0
    }

    /// Returns the `DeviceId` associated with this command queue.
    pub fn device(&self) -> OclCoreResult<DeviceId> {
        match functions::get_command_queue_info(self, CommandQueueInfo::Device) {
            Ok(CommandQueueInfoResult::Device(d)) => Ok(d),
            Err(err) => Err(err),
            _ => unreachable!(),
        }
    }

    /// Returns the `Context` associated with this command queue.
    pub fn context(&self) -> OclCoreResult<Context> {
        self.context_ptr()
            .map(|ptr| unsafe { Context::from_raw_copied_ptr(ptr) })
    }

    /// Returns the `cl_context` associated with this command queue.
    pub fn context_ptr(&self) -> OclCoreResult<cl_context> {
        functions::get_command_queue_context_ptr(self)
    }
}

impl Clone for CommandQueue {
    fn clone(&self) -> CommandQueue {
        unsafe {
            functions::retain_command_queue(self).unwrap();
        }
        CommandQueue(self.0)
    }
}

impl Drop for CommandQueue {
    fn drop(&mut self) {
        unsafe {
            functions::release_command_queue(self).unwrap();
        }
    }
}

impl AsRef<CommandQueue> for CommandQueue {
    fn as_ref(&self) -> &CommandQueue {
        self
    }
}

unsafe impl<'a> ClContextPtr for &'a CommandQueue {
    fn as_ptr(&self) -> cl_context {
        self.context_ptr().expect(
            "<&CommandQueue as ClContextPtr>::as_ptr: \
            Unable to obtain a context pointer.",
        )
    }
}

unsafe impl Sync for CommandQueue {}
unsafe impl Send for CommandQueue {}

impl ClVersions for CommandQueue {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let device = self.device()?;
        device.version().map(|dv| vec![dv])
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        self.device()?.platform_version()
    }
}

/// cl_mem
#[repr(C)]
#[derive(Debug)]
pub struct Mem(cl_mem);

impl Mem {
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_mem) -> Mem {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Mem(ptr)
    }

    /// Only call this when passing a copied pointer such as from an
    /// `clGet*****Info` function.
    pub unsafe fn from_raw_copied_ptr(ptr: cl_mem) -> Mem {
        assert!(!ptr.is_null(), "Null pointer passed.");
        let copy = Mem(ptr);
        functions::retain_mem_object(&copy).unwrap();
        copy
    }

    /// Returns a pointer, do not store it.
    #[inline(always)]
    pub fn as_ptr(&self) -> cl_mem {
        self.0
    }
}

impl Clone for Mem {
    fn clone(&self) -> Mem {
        unsafe {
            functions::retain_mem_object(self).unwrap();
        }
        Mem(self.0)
    }
}

impl Drop for Mem {
    fn drop(&mut self) {
        unsafe {
            functions::release_mem_object(self).unwrap();
        }
    }
}

impl<T: OclPrm> AsMem<T> for Mem {
    #[inline(always)]
    fn as_mem(&self) -> &Mem {
        self
    }
}

unsafe impl<'a> MemCmdRw for Mem {}
unsafe impl<'a> MemCmdRw for &'a Mem {}
unsafe impl<'a> MemCmdRw for &'a mut Mem {}
unsafe impl<'a> MemCmdRw for &'a &'a Mem {}
unsafe impl<'a> MemCmdRw for &'a &'a mut Mem {}
unsafe impl<'a> MemCmdAll for Mem {}
unsafe impl<'a> MemCmdAll for &'a Mem {}
unsafe impl<'a> MemCmdAll for &'a mut Mem {}
unsafe impl<'a> MemCmdAll for &'a &'a Mem {}
unsafe impl<'a> MemCmdAll for &'a &'a mut Mem {}
unsafe impl Sync for Mem {}
unsafe impl Send for Mem {}

/// A pointer to a region of mapped (pinned) memory.
//
// [NOTE]: Do not derive/impl `Clone` or `Sync`. Will not be thread safe
// without a mutex.
//
#[repr(C)]
#[derive(Debug)]
pub struct MemMap<T>(*mut T);

impl<T: OclPrm> MemMap<T> {
    #[inline(always)]
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw(ptr: *mut T) -> MemMap<T> {
        assert!(!ptr.is_null(), "MemMap::from_raw: Null pointer passed.");
        MemMap(ptr)
    }

    #[inline(always)]
    pub fn as_ptr(&self) -> *const T {
        self.0
    }

    #[inline(always)]
    pub fn as_mut_ptr(&mut self) -> *mut T {
        self.0
    }

    #[inline(always)]
    pub fn as_void_ptr(&self) -> *mut c_void {
        self.0 as *mut _ as *mut c_void
    }

    #[inline(always)]
    pub unsafe fn as_slice<'a>(&self, len: usize) -> &'a [T] {
        slice::from_raw_parts(self.0, len)
    }

    #[inline(always)]
    pub unsafe fn as_slice_mut<'a>(&mut self, len: usize) -> &'a mut [T] {
        slice::from_raw_parts_mut(self.0, len)
    }
}

impl<T> AsMem<T> for MemMap<T>
where
    T: OclPrm,
{
    #[inline(always)]
    fn as_mem(&self) -> &Mem {
        unsafe { &*(self as *const _ as *const Mem) }
    }
}

unsafe impl<T: OclPrm> MemCmdRw for MemMap<T> {}
unsafe impl<'a, T: OclPrm> MemCmdRw for &'a MemMap<T> {}
unsafe impl<'a, T: OclPrm> MemCmdRw for &'a mut MemMap<T> {}
unsafe impl<T: OclPrm> Send for MemMap<T> {}
// unsafe impl<T: OclPrm> Sync for MemMap<T> {}

/// cl_program
#[repr(C)]
#[derive(Debug)]
pub struct Program(cl_program);

impl Program {
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_program) -> Program {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Program(ptr)
    }

    /// Only call this when passing a copied pointer such as from an
    /// `clGet*****Info` function.
    pub unsafe fn from_raw_copied_ptr(ptr: cl_program) -> Program {
        assert!(!ptr.is_null(), "Null pointer passed.");
        let copy = Program(ptr);
        functions::retain_program(&copy).unwrap();
        copy
    }

    /// Returns a pointer, do not store it.
    #[inline(always)]
    pub fn as_ptr(&self) -> cl_program {
        self.0
    }

    /// Returns the devices associated with this program.
    pub fn devices(&self) -> OclCoreResult<Vec<DeviceId>> {
        match functions::get_program_info(self, ProgramInfo::Devices) {
            Ok(ProgramInfoResult::Devices(d)) => Ok(d),
            Err(err) => Err(err),
            _ => unreachable!(),
        }
    }
}

impl Clone for Program {
    fn clone(&self) -> Program {
        unsafe {
            functions::retain_program(self).unwrap();
        }
        Program(self.0)
    }
}

impl Drop for Program {
    fn drop(&mut self) {
        unsafe {
            functions::release_program(self).unwrap();
        }
    }
}

unsafe impl Sync for Program {}
unsafe impl Send for Program {}

impl ClVersions for Program {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let devices = self.devices()?;
        functions::device_versions(&devices)
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        let devices = self.devices()?;
        devices[0].platform_version()
    }
}

/// cl_kernel
///
/// ### Thread Safety
///
/// Currently not thread safe: does not implement `Send` or `Sync`. It's
/// probably possible to implement one or both with some work but it's
/// potentially problematic on certain (all?) platforms due to issues while
/// setting arguments. If you need to transfer a kernel you're better off
/// creating another one in the other thread or using some other mechanism
/// such as channels to manipulate kernels in other threads. This issue will
/// be revisited in the future (please provide input by filing an issue if you
/// have any thoughts on the matter).
///
/// [UPDATE]: Enabling `Send` for a while to test.
///
///
#[repr(C)]
#[derive(Debug)]
pub struct Kernel(cl_kernel);

impl Kernel {
    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_kernel) -> Kernel {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Kernel(ptr)
    }

    /// Only call this when passing a copied pointer such as from an
    /// `clGet*****Info` function.
    ///
    // [TODO]: Evaluate usefulness.
    pub unsafe fn from_raw_copied_ptr(ptr: cl_kernel) -> Kernel {
        assert!(!ptr.is_null(), "Null pointer passed.");
        let copy = Kernel(ptr);
        functions::retain_kernel(&copy).unwrap();
        copy
    }

    /// Returns a pointer, do not store it.
    #[inline(always)]
    pub fn as_ptr(&self) -> cl_kernel {
        self.0
    }

    /// Returns the program associated with this kernel.
    pub fn program(&self) -> OclCoreResult<Program> {
        match functions::get_kernel_info(self, KernelInfo::Program) {
            Ok(KernelInfoResult::Program(d)) => Ok(d),
            Err(err) => Err(err),
            _ => unreachable!(),
        }
    }

    pub fn devices(&self) -> OclCoreResult<Vec<DeviceId>> {
        self.program().and_then(|p| p.devices())
    }
}

impl Clone for Kernel {
    fn clone(&self) -> Kernel {
        unsafe {
            functions::retain_kernel(self).unwrap();
        }
        Kernel(self.0)
    }
}

impl Drop for Kernel {
    fn drop(&mut self) {
        unsafe {
            functions::release_kernel(self).unwrap();
        }
    }
}

impl ClVersions for Kernel {
    fn device_versions(&self) -> OclCoreResult<Vec<OpenclVersion>> {
        let devices = self.program()?.devices()?;
        functions::device_versions(&devices)
    }

    fn platform_version(&self) -> OclCoreResult<OpenclVersion> {
        let devices = self.program()?.devices()?;
        devices[0].platform_version()
    }
}

unsafe impl Send for Kernel {}

/// cl_event
#[repr(C)]
#[derive(Debug, Hash, PartialEq, Eq)]
pub struct Event(cl_event);

impl Event {
    /// For passage directly to an 'event creation' function (such as enqueue...).
    #[inline]
    pub fn null() -> Event {
        Event(0 as cl_event)
    }

    /// Creates and returns a new 'user' event.
    ///
    /// User events are events which are meant to have their completion status
    /// set from the host side (that means you).
    ///
    #[inline]
    pub fn user<C: ClContextPtr>(context: C) -> OclCoreResult<Event> {
        functions::create_user_event(context)
    }

    /// Only call this when passing **the original** newly created pointer
    /// directly from `clCreate...`. Do not use this to clone or copy.
    #[inline]
    pub unsafe fn from_raw_create_ptr(ptr: cl_event) -> Event {
        assert!(
            !ptr.is_null(),
            "ocl_core::Event::from_raw_create_ptr: Null pointer passed."
        );
        Event(ptr)
    }

    /// Only use when cloning or copying from a pre-existing and valid
    /// `cl_event`.
    #[inline]
    pub unsafe fn from_raw_copied_ptr(ptr: cl_event) -> OclCoreResult<Event> {
        assert!(
            !ptr.is_null(),
            "ocl_core::Event::from_raw_copied_ptr: Null pointer passed."
        );
        let copy = Event(ptr);
        functions::retain_event(&copy)?;
        Ok(copy)
    }

    /// Sets this user created event to `CommandExecutionStatus::Complete`.
    ///
    /// Will return an error if this event is not a 'user' event (created
    /// with `::user()`).
    ///
    #[inline]
    pub fn set_complete(&self) -> OclCoreResult<()> {
        functions::set_user_event_status(self, CommandExecutionStatus::Complete)
    }

    /// Queries the command status associated with this event and returns true
    /// if it is complete, false if incomplete or upon error.
    ///
    /// This is the fastest possible way to determine event status.
    ///
    #[inline]
    pub fn is_complete(&self) -> OclCoreResult<bool> {
        functions::event_is_complete(self)
    }

    /// Causes the command queue to wait until this event is complete before returning.
    #[inline]
    pub fn wait_for(&self) -> OclCoreResult<()> {
        crate::wait_for_event(self)
    }

    /// Returns whether or not this event is associated with a command or is a
    /// user event.
    #[inline]
    pub fn is_null(&self) -> bool {
        self.0.is_null()
    }

    /// [FIXME]: ADD VALIDITY CHECK BY CALLING '_INFO' OR SOMETHING:
    /// NULL CHECK IS NOT ENOUGH
    ///
    /// This still leads to crazy segfaults when non-event pointers (random
    /// whatever addresses) are passed. Need better check.
    ///
    #[inline]
    pub fn is_valid(&self) -> bool {
        !self.0.is_null()
    }

    /// Sets a callback function, `callback_receiver`, to trigger upon
    /// completion of this event with an optional pointer to user data.
    ///
    /// The callback function must have a signature matching:
    /// `extern "C" fn (ffi::cl_event, i32, *mut libc::c_void)`
    ///
    /// # Safety
    ///
    /// `user_data` must be guaranteed to still exist if and when `callback_receiver`
    /// is ever called.
    ///
    /// TODO: Create a safer type wrapper for `callback_receiver` (using an
    /// `Arc`?, etc.) within `ocl`.
    ///
    //
    // [NOTE]: Making callback_receiver optional is pointless. There is no way
    // to unset a previously set callback.
    pub unsafe fn set_callback(
        &self,
        callback_receiver: EventCallbackFn,
        user_data_ptr: *mut c_void,
    ) -> OclCoreResult<()> {
        if self.is_valid() {
            crate::set_event_callback(
                self,
                CommandExecutionStatus::Complete,
                Some(callback_receiver),
                user_data_ptr as *mut _ as *mut c_void,
            )
        } else {
            Err(
                "ocl_core::Event::set_callback: This event is null. Cannot set callback until \
                internal event pointer is actually created by a `clCreate...` function."
                    .into(),
            )
        }
    }

    /// Returns the `Context` associated with this event.
    pub fn context(&self) -> OclCoreResult<Context> {
        match functions::get_event_info(self, EventInfo::Context) {
            Ok(EventInfoResult::Context(c)) => Ok(c),
            Err(err) => Err(err),
            _ => unreachable!(),
        }
    }

    /// Returns an immutable reference to a pointer, do not deref and store it unless
    /// you will manage its associated reference count carefully.
    ///
    ///
    /// ### Warning
    ///
    /// DO NOT store this pointer.
    ///
    /// DO NOT send this pointer across threads unless you are incrementing
    /// the reference count before sending and decrementing after sending.
    ///
    /// Use `::into_raw` for these purposes. Thank you.
    ///
    #[inline]
    pub unsafe fn as_ptr_ref(&self) -> &cl_event {
        &self.0
    }

    /// Returns a mutable reference to a pointer, do not deref then modify or store it
    /// unless you will manage its associated reference count carefully.
    ///
    ///
    /// ### Warning
    ///
    /// DO NOT store this pointer.
    ///
    /// DO NOT send this pointer across threads unless you are incrementing
    /// the reference count before sending and decrementing after sending.
    ///
    /// Use `::into_raw` for these purposes. Thank you.
    ///
    #[inline]
    pub unsafe fn as_ptr_mut(&mut self) -> &mut cl_event {
        &mut self.0
    }

    /// Consumes the `Event`, returning the wrapped `cl_event` pointer.
    ///
    /// To avoid a memory leak the pointer must be converted back to an `Event` using
    /// [`Event::from_raw`][from_raw].
    ///
    /// [from_raw]: struct.Event.html#method.from_raw
    ///
    pub fn into_raw(self) -> cl_event {
        let ptr = self.0;
        mem::forget(self);
        ptr
    }

    /// Constructs an `Event` from a raw `cl_event` pointer.
    ///
    /// The raw pointer must have been previously returned by a call to a
    /// [`Event::into_raw`][into_raw].
    ///
    /// [into_raw]: struct.Event.html#method.into_raw
    #[inline]
    pub unsafe fn from_raw(ptr: cl_event) -> Event {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Event(ptr)
    }

    /// Ensures this contains a null event and returns a mutable pointer to it.
    fn _alloc_new(&mut self) -> *mut cl_event {
        assert!(
            self.0.is_null(),
            "ocl_core::Event::alloc_new: An 'Event' cannot be \
            used as target for event creation (as a new event) more than once."
        );
        &mut self.0
    }

    /// Returns a pointer pointer expected when used as a wait list.
    unsafe fn _as_ptr_ptr(&self) -> *const cl_event {
        if self.0.is_null() {
            ptr::null()
        } else {
            &self.0 as *const cl_event
        }
    }

    /// Returns a count expected when used as a wait list.
    fn _count(&self) -> u32 {
        if self.0.is_null() {
            0
        } else {
            1
        }
    }
}

unsafe impl<'a> ClNullEventPtr for &'a mut Event {
    #[inline(always)]
    fn alloc_new(&mut self) -> *mut cl_event {
        self._alloc_new()
    }

    #[inline(always)]
    unsafe fn clone_from<E: AsRef<Event>>(&mut self, ev: E) {
        let ptr = ev.as_ref().clone().into_raw();
        assert!(!ptr.is_null());
        self.0 = ptr;
    }
}

unsafe impl ClWaitListPtr for Event {
    #[inline(always)]
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        self._as_ptr_ptr()
    }
    #[inline(always)]
    fn count(&self) -> u32 {
        self._count()
    }
}

unsafe impl<'a> ClWaitListPtr for &'a Event {
    #[inline(always)]
    unsafe fn as_ptr_ptr(&self) -> *const cl_event {
        self._as_ptr_ptr()
    }
    #[inline(always)]
    fn count(&self) -> u32 {
        self._count()
    }
}

unsafe impl<'e> ClEventPtrRef<'e> for Event {
    #[inline(always)]
    unsafe fn as_ptr_ref(&'e self) -> &'e cl_event {
        &self.0
    }
}

impl AsRef<Event> for Event {
    fn as_ref(&self) -> &Event {
        self
    }
}

impl Clone for Event {
    fn clone(&self) -> Event {
        assert!(
            !self.0.is_null(),
            "ocl_core::Event::clone: \
            Cannot clone a null (empty) event."
        );
        unsafe {
            functions::retain_event(self).expect("core::Event::clone");
        }
        Event(self.0)
    }
}

impl Drop for Event {
    fn drop(&mut self) {
        if !self.0.is_null() {
            unsafe {
                functions::release_event(self).unwrap();
            }
        }
    }
}

// unsafe impl EventPtr for Event {}
unsafe impl Sync for Event {}
unsafe impl Send for Event {}

/// cl_sampler
#[repr(C)]
#[derive(Debug)]
pub struct Sampler(cl_sampler);

impl Sampler {
    /// Only call this when passing a newly created pointer directly from
    /// `clCreate...`. Do not use this to clone or copy.
    pub unsafe fn from_raw_create_ptr(ptr: cl_sampler) -> Sampler {
        assert!(!ptr.is_null(), "Null pointer passed.");
        Sampler(ptr)
    }

    /// Returns a pointer, do not store it.
    pub unsafe fn as_ptr(&self) -> cl_sampler {
        self.0
    }
}

impl Clone for Sampler {
    fn clone(&self) -> Sampler {
        unsafe {
            functions::retain_sampler(self).unwrap();
        }
        Sampler(self.0)
    }
}

impl Drop for Sampler {
    fn drop(&mut self) {
        unsafe {
            functions::release_sampler(self).unwrap();
        }
    }
}

unsafe impl Sync for Sampler {}
unsafe impl Send for Sampler {}