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
#![allow(non_camel_case_types)]
use {
    std::fmt::{Formatter,Debug, Error},
    std::marker::PhantomData,
    std::{
        sync::Arc,
        sync::atomic::{AtomicU32, AtomicI32, AtomicI64,  Ordering, AtomicBool},
    },
    crate::{
        live_traits::*,
        makepad_live_compiler::*,
        cx::Cx,
    }
};

pub trait LiveAtomicValue {
    fn apply_value_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize;
}

pub trait LiveAtomic {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize;
}

pub trait LiveAtomicU32Enum {
    fn as_u32(&self) -> u32;
    fn from_u32(val: u32) -> Self;
}

// Atomic u32 enum template



pub struct U32A<T>(AtomicU32, PhantomData<T>) where T: LiveAtomicU32Enum;

impl <T> U32A<T> where T: LiveAtomicU32Enum {
    pub fn set(&self, val: T) {
        self.0.store(val.as_u32(), Ordering::Relaxed)
    }
    
    pub fn get(&self) -> T {
        T::from_u32(self.0.load(Ordering::Relaxed))
    }
}

impl <T> Clone for U32A<T> where T: LiveAtomicU32Enum {
    fn clone(&self)->Self{ 
        let t = self.get();
        U32A(AtomicU32::new(t.as_u32()), PhantomData)
    }
}

impl<T> Debug for U32A<T> where T: LiveAtomicU32Enum + Debug{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl<T> LiveAtomic for U32A<T> where T: LiveApply + LiveNew + 'static + LiveAtomicU32Enum {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut value = T::new(cx);
        let index = value.apply(cx, apply_from, index, nodes);
        self.set(value);
        index
    }
}

impl<T> LiveHook for U32A<T> where T: LiveApply + LiveNew + 'static +  LiveAtomicU32Enum {}
impl<T> LiveApply for U32A<T> where T: LiveApply + LiveNew + 'static + LiveAtomicU32Enum {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl<T> LiveNew for U32A<T> where T: LiveApply + LiveNew + 'static +  LiveAtomicU32Enum {
    fn new(cx: &mut Cx) -> Self {
        Self (AtomicU32::new(T::new(cx).as_u32()), PhantomData)
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        T::live_type_info(_cx)
    }
}

impl<T> LiveRead for U32A<T> where T:LiveRead + LiveAtomicU32Enum{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}
/*
impl Into<U32A<T>> for T where T: LiveApply + LiveNew + 'static + LiveAtomic + LiveAtomicU32Enum{
    fn into(self) -> U32A<T> {
        Self (AtomicU32::new(self.as_u32()), PhantomData)
    }
}
*/

// Arc



impl<T> LiveHook for Arc<T> where T: LiveApply + LiveNew + 'static + LiveAtomic {}
impl<T> LiveApply for Arc<T> where T: LiveApply + LiveNew + 'static + LiveAtomic {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl<T> LiveNew for Arc<T> where T: LiveApply + LiveNew + 'static + LiveAtomic {
    fn new(cx: &mut Cx) -> Self {
        Arc::new(T::new(cx))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        T::live_type_info(_cx)
    }
}

impl<T> LiveRead for Arc<T> where T:LiveRead{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        (self as &T).live_read_to(id, out);
    }
}

pub trait AtomicGetSet<T> {
    fn get(&self) -> T;
    fn set(&self, val: T);
}



// atomic f32


pub struct f32a(AtomicU32);

impl Clone for f32a {
    fn clone(&self)->Self{ 
        f32a(AtomicU32::new(self.get().to_bits()))
    }
}

impl AtomicGetSet<f32> for f32a {
    fn get(&self) -> f32 {
        f32::from_bits(self.0.load(Ordering::Relaxed))
    }
    fn set(&self, val: f32) {
        self.0.store(val.to_bits(), Ordering::Relaxed);
    }
}

impl LiveAtomic for f32a {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut val = 0.0f32;
        let index = val.apply(cx, apply_from, index, nodes);
        self.set(val);
        index
    }
}

impl LiveHook for f32a {}
impl LiveApply for f32a {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl Debug for f32a{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl LiveRead for f32a{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}

impl Into<f32a> for f32 {
    fn into(self) -> f32a {
        f32a(AtomicU32::new(self.to_bits()))
    }
}

impl LiveNew for f32a {
    fn new(_cx: &mut Cx) -> Self {
        Self (AtomicU32::new(0.0f32.to_bits()))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        f32::live_type_info(_cx)
    }
}



// atomic u32


pub struct u32a(AtomicU32);

impl Clone for u32a {
    fn clone(&self)->Self{ 
        u32a(AtomicU32::new(self.get()))
    }
}


impl AtomicGetSet<u32> for u32a {
    fn get(&self) -> u32 {
        self.0.load(Ordering::Relaxed)
    }
    fn set(&self, val: u32) {
        self.0.store(val, Ordering::Relaxed);
    }
}

impl LiveAtomic for u32a {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut val = 0u32;
        let index = val.apply(cx, apply_from, index, nodes);
        self.0.store(val, Ordering::Relaxed);
        index
    }
}

impl LiveHook for u32a {}
impl LiveApply for u32a {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl Debug for u32a{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl Into<u32a> for u32 {
    fn into(self) -> u32a {
        u32a(AtomicU32::new(self))
    }
}

impl LiveNew for u32a {
    fn new(_cx: &mut Cx) -> Self {
        Self (AtomicU32::new(0))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        u32::live_type_info(_cx)
    }
}

impl LiveRead for u32a{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}

// atomic i64


pub struct i64a(AtomicI64);

impl Clone for i64a {
    fn clone(&self)->Self{ 
        i64a(AtomicI64::new(self.get()))
    }
}


impl AtomicGetSet<i64> for i64a {
    fn get(&self) -> i64 {
        self.0.load(Ordering::Relaxed)
    }
    fn set(&self, val: i64) {
        self.0.store(val, Ordering::Relaxed);
    }
}

impl LiveAtomic for i64a {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut val = 0i64;
        let index = val.apply(cx, apply_from, index, nodes);
        self.0.store(val, Ordering::Relaxed);
        index
    }
}

impl<T, const N:usize> LiveAtomic for [T;N]  where T: LiveAtomic {
    fn apply_atomic(&self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        // we can only apply from an Array
        if nodes[index].is_array(){
            let mut index = index + 1;
            let mut count = 0;
            loop{
                if nodes[index].is_close(){
                    index += 1;
                    break;
                }
                if count < self.len(){
                    index = self[count].apply_atomic(cx, from, index, nodes);
                    count += 1;
                }
                else{
                   index = nodes.skip_node(index)
                }
            }
            index
        }
        else{
            cx.apply_error_expected_array(live_error_origin!(), index, nodes);
            nodes.skip_node(index)
        }
    }
} 


impl LiveHook for i64a {}
impl LiveApply for i64a {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl Debug for i64a{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl Into<i64a> for i64 {
    fn into(self) -> i64a {
        i64a(AtomicI64::new(self))
    }
}

impl LiveNew for i64a {
    fn new(_cx: &mut Cx) -> Self {
        Self (AtomicI64::new(0))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        u32::live_type_info(_cx)
    }
}

impl LiveRead for i64a{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}




// atomic i64


pub struct i32a(AtomicI32);

impl Clone for i32a {
    fn clone(&self)->Self{ 
        i32a(AtomicI32::new(self.get()))
    }
}


impl AtomicGetSet<i32> for i32a {
    fn get(&self) -> i32 {
        self.0.load(Ordering::Relaxed)
    }
    fn set(&self, val: i32) {
        self.0.store(val, Ordering::Relaxed);
    }
}

impl LiveAtomic for i32a {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut val = 0i32;
        let index = val.apply(cx, apply_from, index, nodes);
        self.0.store(val, Ordering::Relaxed);
        index
    }
}

impl LiveHook for i32a {}
impl LiveApply for i32a {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl Debug for i32a{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl Into<i32a> for i32 {
    fn into(self) -> i32a {
        i32a(AtomicI32::new(self))
    }
}

impl LiveNew for i32a {
    fn new(_cx: &mut Cx) -> Self {
        Self (AtomicI32::new(0))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        u32::live_type_info(_cx)
    }
}

impl LiveRead for i32a{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}






// atomic u32


pub struct boola(AtomicBool);

impl Clone for boola {
    fn clone(&self)->Self{ 
        boola(AtomicBool::new(self.get()))
    }
}


impl AtomicGetSet<bool> for boola {
    fn get(&self) -> bool {
        self.0.load(Ordering::Relaxed)
    }
    fn set(&self, val: bool) {
        self.0.store(val, Ordering::Relaxed);
    }
}

impl LiveAtomic for boola {
    fn apply_atomic(&self, cx: &mut Cx, apply_from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        let mut val = false;
        let index = val.apply(cx, apply_from, index, nodes);
        self.0.store(val, Ordering::Relaxed);
        index
    }
}

impl LiveHook for boola {}
impl LiveApply for boola {
    fn apply(&mut self, cx: &mut Cx, from: ApplyFrom, index: usize, nodes: &[LiveNode]) -> usize {
        self.apply_atomic(cx, from, index, nodes)
    }
}

impl Debug for boola{
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>{
        self.get().fmt(f)
    }
}

impl Into<boola> for bool {
    fn into(self) -> boola {
        boola(AtomicBool::new(self))
    }
}

impl LiveNew for boola {
    fn new(_cx: &mut Cx) -> Self {
        Self (AtomicBool::new(false))
    }
    
    fn live_type_info(_cx: &mut Cx) -> LiveTypeInfo {
        bool::live_type_info(_cx)
    }
}

impl LiveRead for boola{
    fn live_read_to(&self, id:LiveId, out:&mut Vec<LiveNode>){
        self.get().live_read_to(id, out);
    }
}