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
/// ```
/// use akp_macros::akp;
/// /// or
/// use ak_macros::*
/// akp!("Hello World");
/// ```
#[macro_export]
macro_rules! akp {
    ($($arg:tt)*) => {
        println!($($arg)*);
    };
}
///```
/// ///input_prompt can get input from user
/// ///example
///  use apk_macros::input_prompt
/// /// or
/// use ak_macros::*
///
///let user_name = input_prompt!("Enter Your Name:");
/// akp!("User Name is:{}",user_name);
/// ```
#[macro_export]
macro_rules! input_prompt {
    ($prompt:expr) => {{
        use std::io::{stdin, stdout, Write};
        print!("{}", $prompt);
        let _ = stdout().flush();
        let mut input = String::new();
        stdin().read_line(&mut input).expect("Failed to read input");
        input.trim().to_string() // Changed parse() to to_string() to handle strings
    }};
}

///```
/// /// this macro can remove any folder at your PC
/// /// this macro take one value this value is folder Path
/// /// example
/// remove_folder!("/home/ak/Desktop/new_Folder/");
/// /// when macro remove folder the macro will print Done...! at terminal
/// ```
#[macro_export]
macro_rules! remove_folder {
    ($path:expr) => {
        use std::fs;
        if let Err(e) = fs::remove_dir($path) {
            eprintln!("Error removing: {}", e);
        } else {
            println!("Done...!");
        }
    };
}

///```
/// /// this macro can remove any file at your PC
/// /// this macro take one value this value is folder Path
/// /// example
/// remove_file!("/home/ak/Desktop/new_file/");
/// /// when macro remove file the macro will print Done...! at terminal
/// ```
#[macro_export]
macro_rules! remove_file {
    ($path:expr) => {
        if let Err(e) = fs::remove_file($path) {
            eprintln!("Error removing: {}", e);
        } else {
            println!("Done...!");
        }
    };
}

///```
/// /// remove_all_folders macro can remove all folders and file at the path you will set it
/// remove_all_folders!("/home/ak/Desktop/new_Folder/");
/// ```
#[macro_export]
macro_rules! remove_all_folders {
    ($path:expr) => {
        if let Err(e) = fs::remove_dir_all($path) {
            eprintln!("Error removing: {}", e);
        } else {
            println!("Done...!");
        }
    };
}

///```
/// ///use_loop macro can create a loop
/// ///this macro take Five values
/// /// 1 - if you want to do event at loop set True else set False
/// /// 2 - start-Number
/// /// 3 - End-Number
/// /// 4 - variable for loop
/// /// 5 - the method
/// /// you should type true at first value to method working
/// /// example
/// use_loop!(true, 0, 100, i, akp!("{}", i));
/// /// dont do this
///  use_loop!(false, 0, 100, i, akp!("{}", i)); /// Syntax Error
/// ```
#[macro_export]
macro_rules! use_loop {
    ($should_execute:expr, $start_number:expr, $end_number:expr, $theVar:ident, $the_method:expr) => {
        for $theVar in $start_number..$end_number {
            if $should_execute {
                $the_method;
            }
        }
    };
}

///```
/// /// if_cond macro do if condition method
/// /// the macro take 4 values
/// /// 1 - import the value you want to do event about him
/// /// 2 - do condition
/// /// 3 - if event
/// /// 4 - else event
/// /// for example
/// let my_name = "ak-macros";
/// if_cond!(my_name,
/// my_name == "ak-macros",
/// akp!("Hello package"),
/// akp!("Oh No, this is not best crate...!")
/// )
/// /// let's do simple app with AK-Macros
///
/// let my_name = input_prompt!("Enter this Crate Name: ");
/// if_cond!(my_name,
/// my_name == "ak-macros",
/// akp!("Hello devs...!"),
/// akp!("Try Again...")
///);
///
/// ///let's use the use_loop macro at this app
///let my_name = input_prompt!("Enter this Crate Name: ");
///if_cond!(
///my_name,
///my_name == "ak-macros",
///use_loop!(true, 0, 100, i, akp!("{} - hello guys", i)),
/// akp!("Try Again...")
///);
/// // if you Type at input => ak-macros the use loop will start working
/// ```
#[macro_export]
macro_rules! if_cond {
    ($var:expr, $condition:expr, $first_method:expr, $last_method:expr) => {
        if $condition {
            $first_method
        } else {
            $last_method
        }
    };
    ($name:expr, $cond:expr, $action:expr) => {{
        if $cond {
            $action;
        }
    }};
    ($name:expr, $($cond:expr => $action:expr),*) => {{
        $(if $cond { $action; })*
    }};
    ($name:expr, $($cond:expr => $action:expr),* $(,)?) => {{
        $(if $cond { $action; })*
    }};
}

///```
/// /// terminal macro its like a terminal at your OS
/// /// the macro can do any command at you OS
/// /// to use the macro you should type two Values
/// /// 1 - your OS command
/// /// if you use windows the OS command is CMD
/// /// if you use Linux the OS command is sh
/// /// for example
/// terminal!("sh", "mkdir ak-macros_App");
/// /// if you want type more command you must end the command with ;
/// ///
///terminal!(
///"sh",
///"
///cd '/home/ak/Desktop/' ;
///mkdir ak-macros_App ;
///cd ak-macros_App ;
///touch new_file
///"
///);
/// ```
#[macro_export]
macro_rules! terminal {
    ($lang:expr, $command:expr) => {{
        use std::process::Command;
        use std::io::Write;
        use std::fs::File;

        let output = Command::new($lang)
            .arg("-c")
            .arg($command)
            .output()
            .expect("failed to execute process");

        let output_str = String::from_utf8_lossy(&output.stdout);
        let command_output = output_str.trim().to_string();

        command_output // Returning the command output
    }};
}


///```
/// this_OS!(); ///macro can know your operating system Name
/// /// you can use it at any conditions
/// /// example
/// akp!("My operating system is :{}",this_OS!());
/// /// this command will print Your OS
///
/// ```
#[macro_export]
macro_rules! this_OS {
    () => {
        std::env::consts::OS
    };
}
///```
/// /// use_rand macro, this macro can generate a Random Number
/// /// to use the macro you should add rand at cargo.toml
/// /// the macro take 3 values
/// /// 1 - variable
/// /// 2 - point number
/// /// 3 - the Method
/// /// you can type to values only [1,3]
/// /// and the default value for point number is // i32
/// /// example
///use_rand!(my_float, {
///println!("Random float: {}", my_float);
///});
/// /// or
///use_rand!(my_float,f64,{
///println!("Random float: {}", my_float);
///});
/// ```
#[macro_export]
macro_rules! use_rand {
    ($var:ident, {$($method:tt)*}) => {
        use rand::prelude::*;

        let mut rng = rand::thread_rng();
        let $var: i32 = rng.gen();
        $($method)*
    };

    ($var:ident, $kind:ty, {$($method:tt)*}) => {
        use rand::prelude::*;

        let mut rng = rand::thread_rng();
        let $var: $kind = rng.gen();
        $($method)*
    };
}

///```
/// /// use_fetch it's a fetch api macro
/// /// to use it add
/// /// 1 - reqwest
/// /// 2 - tokio
/// /// 3 - serde
/// /// 4 - serde_json
/// /// at Cargo.toml
/// /// usage
/// /// the macro take two values
/// use_fetch!("api",HTTP_Request);
/// /// example
/// #[tokio::main]
///async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Call the macro with API endpoint and HTTP method
///use_fetch!("https://fakestoreapi.com/products/", GET);

// Return Ok(()) as the result
/// Ok(())
///}
///
///
/// ```
#[macro_export]
macro_rules! use_fetch {
    ($api:expr, $method:ident) => {{
        extern crate reqwest;
        use std::collections::HashMap;
        let api = $api.to_string();
        let method = stringify!($method).to_string();

        let response = reqwest::Client::new()
            .request(reqwest::Method::from_bytes(method.as_bytes())?, &api)
            .send()
            .await?;

        let resp_json = response
            .json::<Vec<HashMap<String, serde_json::Value>>>()
            .await?;

        for item in resp_json {
            println!("{:#?}", item);
        }

        Ok(()) as Result<(), Box<dyn std::error::Error>>
    }};
}

///```
/// use_zip!(); /// macro can extract the ZIP files
/// /// to use this macro you should add zip-extract at Cargo.toml
/// /// the macro take two values
/// use_zip!("ZIP_PAth","Path_for_EXtract_Files");
///
/// /// example
/// fn main() -> Result<(), Box<dyn std::error::Error>> {
///use_zip!(
///"Desktop/folder.zip",
/// "Desktop/Extract_Folder"
///);

/// /// Return Ok(()) as the result
///Ok(())
///}

/// ```
///

#[macro_export]
macro_rules! use_zip {
    ($zip_file_location:expr, $extract_file_location:expr) => {{
        use ak_macros::use_zip;
        use std::fs::File;
        use std::io::Cursor;
        use std::io::{self, Read};
        use std::path::PathBuf;
        use zip_extract::ZipExtractError;
        let input_value = $zip_file_location;
        let target_path = $extract_file_location;

        let file = std::fs::File::open(input_value.trim())?;
        let mut bytes = Vec::new();
        file.take(1024 * 1024 * 100) // Limit the file size to 100 MB for safety
            .read_to_end(&mut bytes)?;

        let target = std::path::PathBuf::from(target_path.trim());

        let cursor = std::io::Cursor::new(bytes);

        match zip_extract::extract(cursor, &target, false) {
            Ok(_) => {
                println!("Extraction successful!");
                Ok(())
            }
            Err(err) => match err {
                zip_extract::ZipExtractError::Io(io_err) => Err(io_err),
                other_err => Err(std::io::Error::new(
                    std::io::ErrorKind::Other,
                    format!("Zip extraction error: {:?}", other_err),
                )),
            },
        }
    }};
}

///```
///  this_month!(); /// Macro to show month
/// /// example
/// let month = this_month!();
///  akp!("month is: {}",month);
/// ```   
#[macro_export]
macro_rules! this_month {
    () => {{
        use std::time::{SystemTime, UNIX_EPOCH};
        let now = SystemTime::now();
        let since_epoch = now.duration_since(UNIX_EPOCH).expect("Time went backwards");
        let seconds_since_epoch = since_epoch.as_secs();
        let remaining_seconds = seconds_since_epoch % (365 * 24 * 60 * 60);
        let month = remaining_seconds / (30 * 24 * 60 * 60) + 1;
        month
    }};
}

///```
///  this_year!(); /// Macro to show Year
/// /// example
/// let year = this_year!();
///  akp!("Year is: {}",year);
/// ```  
#[macro_export]
macro_rules! this_year {
    () => {{
        use std::time::{SystemTime, UNIX_EPOCH};
        let now = SystemTime::now();
        let since_epoch = now.duration_since(UNIX_EPOCH).expect("Time went backwards");
        let seconds_since_epoch = since_epoch.as_secs();
        let _ = seconds_since_epoch % (365 * 24 * 60 * 60);
        let year = 1970 + seconds_since_epoch / (365 * 24 * 60 * 60);
        year
    }};
}
///```
/// /// open_web macro can open a url at browser
/// ///the macro take one value this value is the URL Link
/// ///example
/// open_Web!("https://askander.vercel.app");
/// ```
#[macro_export]
macro_rules! open_Web {
    ($website_url:expr) => {{
        let url = $website_url;

        let result = if cfg!(target_os = "windows") {
            std::process::Command::new("cmd")
                .arg("/C")
                .arg("start")
                .arg(url)
                .spawn()
        } else if cfg!(target_os = "macos") {
            std::process::Command::new("open").arg(url).spawn()
        } else {
            std::process::Command::new("xdg-open").arg(url).spawn()
        };

        // Check if the command executed successfully
        match result {
            Ok(_) => println!("Successfully opened website."),
            Err(e) => eprintln!("Failed to open website: {}", e),
        }
    }};
}

///```
/// /// macro can convert the string from lowerCase to UpperCase
///   use_upper_case!(name);
///   println!("{}",name);
/// ```
#[macro_export]
macro_rules! use_upper_case {
    ($input:ident) => {
        $input = $input.to_uppercase();
    };
}

///```
/// /// macro can convert the string from upperCase to lowerCase
///    use_lower_case!(name);
///   println!("{}",name);
/// ```
#[macro_export]
macro_rules! use_lower_case {
    ($input:ident) => {
        $input = $input.to_lowercase();
    };
}

///```
/// /// macro can create a file and add text at him
/// /// example
///fn main() -> std::io::Result<()> {
///use_createFile!("ak2","/home/ak/Desktop","Hello from ak-macros");
///Ok(())
/// }
/// /// the macro take three value
/// /// 1 - File name
/// /// 2 - File Path
/// /// 3 - Text
///
/// ```
#[macro_export]
macro_rules! use_createFile {
    ($file_name:expr, $file_path:expr,$input_text:expr) => {
        use std::fs::File;
        use std::io::prelude::*;
        use std::path::{Path, PathBuf}; // Import PathBuf for constructing paths

        let file_path = PathBuf::from($file_path).join($file_name); // Construct the file path
        let mut file = File::create(&file_path)?; // Use ? to propagate errors
        file.write_all($input_text.as_bytes())?; // Use ? to propagate errors
    };
}

///```
/// /// This macro places a string in the memory,
/// /// and if you define a new variable that carries the value of that string,
/// /// it will not take up a new space in the memory.
/// ///example
/// let my_name = set_String!("ak Macros crate");
/// akp!("{}",my_name);
///```
#[macro_export]
macro_rules! set_String {
    ($the_text:expr) => {
        String::from($the_text)
    };
}

///```
/// /// Positive_number macro can set Positive Numbers Only
/// /// example
/// let num = Positive_number!(20);
/// akp!("Age is :{}", num); //OutPut:  Age is :20

/// /// Wrong Syntax
///let num = Positive_number!(-20);
///akp!("{}", num); /// Number Must be Positive
/// ```
#[macro_export]
macro_rules! Positive_number {
    ($num:expr) => {{
        let num = $num;
        if num < 0 {
            panic!("Number must be positive!");
        }
        num as usize
    }};
}

///```
/// /// Positive_number macro can set Positive Numbers Only
/// /// example
/// let num = Negative_number!(-20);
/// akp!("Age is :{}", num); //OutPut:  Age is :-20

/// /// Wrong Syntax
///let num = Negative_number!(20);
///akp!("{}", num); /// Number Must be Negative
/// ```
#[macro_export]
macro_rules! Negative_number {
    ($num:expr) => {{
        let num = $num;
        if num > 0 {
            panic!("Number must be Negative!");
        }
        num as isize
    }};
}

///```
/// ///Ram_size Macro can get the All Ram Size
/// /// example
/// let my_ram = Ram_size!();
/// akp!("Total RAM: {:.2} GB", my_ram); /// Total RAM: 7.67 GB
/// akp!("Total RAM: {} GB", my_ram); // Total RAM: 7.670555114746094 GB
/// ```
#[macro_export]
macro_rules! Ram_size {
    () => {{
        let mut ram_gb = 0.0;
        if let Ok(meminfo) = std::fs::read_to_string("/proc/meminfo") {
            for line in meminfo.lines() {
                if line.starts_with("MemTotal:") {
                    let ram_kb: u64 = line.split_whitespace().nth(1).unwrap().parse().unwrap();
                    ram_gb = ram_kb as f64 / 1024.0 / 1024.0;
                    break;
                }
            }
        } else {
            eprintln!("Failed to read /proc/meminfo");
        }
        ram_gb
    }};
}
///```
/// /// Get_CPU macro can get the cpu informaion
/// /// example
/// let my_cpu = Get_CPU!();
/// akp!("My CPU is:  {}",my_cpu);
/// ```
#[macro_export]
macro_rules! Get_CPU {
    () => {{
        let mut cpu_name = String::new();
        if let Ok(cpuinfo) = std::fs::read_to_string("/proc/cpuinfo") {
            for line in cpuinfo.lines() {
                if line.starts_with("model name") {
                    let parts: Vec<&str> = line.split(":").collect();
                    if parts.len() >= 2 {
                        cpu_name = parts[1].trim().to_string();
                        break; // Once we've found the CPU name, we can break out of the loop
                    }
                }
            }
        } else {
            println!("Failed to read CPU info.");
        }
        cpu_name
    }};
}

/// ```
/// ///macro can looping at any array content
/// /// macro take three values
/// /// 1- the array
/// /// 2- variableName
/// /// 3- method
/// /// Example  
///  let tarr: [&str; 3] = ["Max", "Jack", "Aly"];
///   use_loopAt!(tarr, varr, {
///       println!("hello {}", varr);
///   });
///});  
/// /// you should't type Variable like that
/// use_loopAt!(tarr,{
/// println!("hello world");
/// });
///```
#[macro_export]
macro_rules! use_loopAt {
    ($arr:expr, $var:ident, $method:tt) => {
        for $var in $arr {
            $method
        }
    };
    ($arr:expr, $method:tt) => {
        for ii in $arr {
            $method
        }
    };
}