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
|
/**
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2022 Gothel Software e.K.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef JAU_FILE_UTIL_HPP_
#define JAU_FILE_UTIL_HPP_
#include <cstring>
#include <string>
#include <memory>
#include <cstdint>
#include <cstdio>
#include <jau/fraction_type.hpp>
#include <jau/function_def.hpp>
namespace jau {
namespace fs {
/** @defgroup FileUtils File Utilities
* File types and functionality.
*
* @{
*/
/**
* Return the current working directory or empty on failure.
*/
std::string get_cwd() noexcept;
/**
* Return stripped last component from given path separated by `/`, excluding the trailing separator `/`.
*
* If no directory separator `/` is contained, return `.`.
*
* If only the root path `/` is given, return `/`.
*
* @param path given path
* @return leading directory name w/o slash or `.`
*/
std::string dirname(const std::string_view& path) noexcept;
/**
* Return stripped leading directory components from given path separated by `/`.
*
* If only the root path `/` is given, return `/`.
*
* @param path given path
* @return last non-slash component or `.`
*/
std::string basename(const std::string_view& path) noexcept;
/**
* Representing a directory item split into dirname() and basename().
*/
class dir_item {
private:
std::string dirname_;
std::string basename_;
struct backed_string_view {
std::string backing;
std::string_view view;
backed_string_view() noexcept
: backing(), view(backing) {}
backed_string_view(const std::string& backing_, const std::string_view& view_ ) noexcept
: backing(backing_),
view( backing_.size() > 0 ? ((std::string_view)backing).substr(view_.data() - backing_.data(), view_.size()) : view_)
{}
backed_string_view(const std::string_view& view_ ) noexcept
: backing(), view(view_) {}
#if 0
backed_string_view(const backed_string_view& o) noexcept
: backing(o.backing),
view( o.is_backed() ? ((std::string_view)backing).substr(o.view.data() - o.backing.data(), o.view.size()) : o.view)
{}
#else
/** Reason: Inefficient, removing the whole purpose of this class reducing std::string duplication. */
backed_string_view(const backed_string_view& o) noexcept = delete;
#endif
#if 0
backed_string_view(backed_string_view&& o) noexcept
: backing( std::move(o.backing) ),
view( std::move(o.view) )
{
fprintf(stderr, "backed_string_view move_ctor %s\n", to_string(true).c_str());
}
#else
/** Reason: clang - for some reason - does not move a std::string, but copies it */
backed_string_view(backed_string_view&& o) noexcept = delete;
#endif
bool is_backed() const noexcept { return backing.size() > 0; }
void backup() noexcept {
backing = std::string(view);
view = backing;
}
void backup(const std::string& orig) noexcept {
backing = orig;
view = backing;
}
void backup(const std::string_view& orig) noexcept {
backing = std::string(orig);
view = backing;
}
void backup_and_append(const std::string& orig, const std::string& appendix) noexcept {
backing = orig;
backing.append( appendix );
view = backing;
}
void backup_and_append(const std::string_view& orig, const std::string& appendix) noexcept {
backing = std::string(orig);
backing.append( appendix );
view = backing;
}
std::string to_string(const bool destailed=false) const noexcept {
if( destailed ) {
return "[backing '"+backing+"', view '"+std::string(view)+"']";
}
return std::string(view);
}
};
static std::unique_ptr<backed_string_view> reduce(const std::string_view& path_) noexcept;
dir_item(std::unique_ptr<backed_string_view> cleanpath) noexcept;
public:
/** Empty item w/ `.` set for both, dirname and basename */
dir_item() noexcept;
/**
* Create a dir_item where path is split into dirname and basename after `.` and `..` has been reduced.
*
* @param path_ the raw path
*/
dir_item(const std::string_view& path_) noexcept;
/** Returns the dirname, shall not be empty and denotes `.` for current working director. */
const std::string& dirname() const noexcept { return dirname_; }
/** Return the basename, shall not be empty nor contain a dirname. */
const std::string& basename() const noexcept { return basename_; }
/**
* Returns a full unix path representation combining dirname() and basename().
*/
std::string path() const noexcept;
bool operator ==(const dir_item& rhs) const noexcept {
return dirname_ == rhs.dirname_ && basename_ == rhs.basename_;
}
bool operator !=(const dir_item& rhs) const noexcept {
return !( *this == rhs );
}
/**
* Returns a comprehensive string representation of this item
*/
std::string to_string() const noexcept;
};
/**
* Generic file type and POSIX protection mode bits as used in file_stats, touch(), mkdir() etc.
*
* The POSIX protection mode bits reside in the lower 16-bits and are bit-wise POSIX compliant
* while the file type bits reside in the upper 16-bits and are platform agnostic.
*
* This `enum class` type fulfills `C++ named requirements: BitmaskType`.
*
* @see file_stats
* @see file_stats::mode()
*/
enum class fmode_t : uint32_t {
/** No mode bit set */
none = 0,
/** Protection bit: POSIX S_ISUID */
set_uid = 04000,
/** Protection bit: POSIX S_ISGID */
set_gid = 02000,
/** Protection bit: POSIX S_ISVTX */
sticky = 01000,
/** Protection bit: POSIX S_ISUID | S_ISGID | S_ISVTX */
ugs_set = 07000,
/** Protection bit: POSIX S_IRUSR */
read_usr = 00400,
/** Protection bit: POSIX S_IWUSR */
write_usr = 00200,
/** Protection bit: POSIX S_IXUSR */
exec_usr = 00100,
/** Protection bit: POSIX S_IRWXU */
rwx_usr = 00700,
/** Protection bit: POSIX S_IRGRP */
read_grp = 00040,
/** Protection bit: POSIX S_IWGRP */
write_grp = 00020,
/** Protection bit: POSIX S_IXGRP */
exec_grp = 00010,
/** Protection bit: POSIX S_IRWXG */
rwx_grp = 00070,
/** Protection bit: POSIX S_IROTH */
read_oth = 00004,
/** Protection bit: POSIX S_IWOTH */
write_oth = 00002,
/** Protection bit: POSIX S_IXOTH */
exec_oth = 00001,
/** Protection bit: POSIX S_IRWXO */
rwx_oth = 00007,
/** Protection bit: POSIX S_IRWXU | S_IRWXG | S_IRWXO or rwx_usr | rwx_grp | rwx_oth */
rwx_all = 00777,
/** Default directory protection bit: Safe default: POSIX S_IRWXU | S_IRGRP | S_IXGRP or rwx_usr | read_grp | exec_grp */
def_dir_prot = 00750,
/** Default file protection bit: Safe default: POSIX S_IRUSR | S_IWUSR | S_IRGRP or read_usr | write_usr | read_grp */
def_file_prot = 00640,
/** 12 bit protection bit mask 07777 for rwx_all | set_uid | set_gid | sticky . */
protection_mask = 0b111111111111,
/** Type: Entity is a directory, might be in combination with link. */
dir = 0b000010000000000000000,
/** Type: Entity is a file, might be in combination with link. */
file = 0b000100000000000000000,
/** Type: Entity is a symbolic link, might be in combination with file or dir. */
link = 0b001000000000000000000,
/** Type: Entity gives no access to user, exclusive bit. */
no_access = 0b010000000000000000000,
/** Type: Entity does not exist, exclusive bit. */
not_existing = 0b100000000000000000000,
/** Type mask for dir | file | link | no_access | not_existing. */
type_mask = 0b111110000000000000000,
};
constexpr uint32_t number(const fmode_t rhs) noexcept {
return static_cast<uint32_t>(rhs);
}
constexpr fmode_t operator ~(const fmode_t rhs) noexcept {
return static_cast<fmode_t> ( ~number(rhs) );
}
constexpr fmode_t operator ^(const fmode_t lhs, const fmode_t rhs) noexcept {
return static_cast<fmode_t> ( number(lhs) ^ number(rhs) );
}
constexpr fmode_t operator |(const fmode_t lhs, const fmode_t rhs) noexcept {
return static_cast<fmode_t> ( number(lhs) | number(rhs) );
}
constexpr fmode_t operator &(const fmode_t lhs, const fmode_t rhs) noexcept {
return static_cast<fmode_t> ( number(lhs) & number(rhs) );
}
constexpr fmode_t& operator |=(fmode_t& lhs, const fmode_t rhs) noexcept {
lhs = static_cast<fmode_t> ( number(lhs) | number(rhs) );
return lhs;
}
constexpr fmode_t& operator &=(fmode_t& lhs, const fmode_t rhs) noexcept {
lhs = static_cast<fmode_t> ( number(lhs) & number(rhs) );
return lhs;
}
constexpr fmode_t& operator ^=(fmode_t& lhs, const fmode_t rhs) noexcept {
lhs = static_cast<fmode_t> ( number(lhs) ^ number(rhs) );
return lhs;
}
constexpr bool operator ==(const fmode_t lhs, const fmode_t rhs) noexcept {
return number(lhs) == number(rhs);
}
constexpr bool operator !=(const fmode_t lhs, const fmode_t rhs) noexcept {
return !( lhs == rhs );
}
constexpr bool is_set(const fmode_t mask, const fmode_t bits) noexcept {
return bits == ( mask & bits );
}
/**
* Return the string representation of fmode_t
* @param mask the fmode_t to convert
* @param show_rwx if true, return verbose POSIX protection bit string representation using `rwx` for user, group and others. Otherwise simply show the octal representation (default)
* @return the string representation.
*/
std::string to_string(const fmode_t mask, const bool show_rwx=false) noexcept;
/** Returns the POSIX protection bits: rwx_all | set_uid | set_gid | sticky, i.e. fmode_t masked with fmode_t::protection_mask. */
constexpr ::mode_t posix_protection_bits(const fmode_t mask) noexcept { return static_cast<::mode_t>(mask & fmode_t::protection_mask); }
/**
* Platform agnostic representation of POSIX ::lstat() and ::stat()
* for a given pathname.
*
* Implementation follows the symbolic link, i.e. first opens
* the given pathname with ::lstat() and if identifying as a symbolic link
* opens it via ::stat() to retrieve the actual properties like size, time and ownership.
*
* On `GNU/Linux` implementation uses ::statx().
*/
class file_stats {
public:
/**
* Field identifier which bit-mask indicates field_t fields
*/
enum class field_t : uint32_t {
/** No mode bit set */
none = 0,
/** File type mode bits */
type = 0b0000000000000001,
/** POSIX file protection mode bits */
mode = 0b0000000000000010,
nlink = 0b0000000000000100,
uid = 0b0000000000001000,
gid = 0b0000000000010000,
atime = 0b0000000000100000,
mtime = 0b0000000001000000,
ctime = 0b0000000010000000,
ino = 0b0000000100000000,
size = 0b0000001000000000,
blocks = 0b0000010000000000,
btime = 0b0000100000000000
};
typedef uint32_t uid_t;
typedef uint32_t gid_t;
private:
field_t has_fields_;
dir_item item_;
std::shared_ptr<std::string> link_target_path_; // stored link-target path this symbolic-link points to if is_link(), otherwise nullptr.
std::shared_ptr<file_stats> link_target_; // link-target this symbolic-link points to if is_link(), otherwise nullptr.
fmode_t mode_;
uid_t uid_;
gid_t gid_;
uint64_t size_;
fraction_timespec btime_; // Birth or creation time
fraction_timespec atime_; // Last access
fraction_timespec ctime_; // Last meta-status change
fraction_timespec mtime_; // Last modification
int errno_res_;
/** Private class only for private make_shared(). */
class ctor_cookie { friend file_stats; uint16_t rec_level; ctor_cookie(const uint16_t recursion_level_) { rec_level=recursion_level_; } };
public:
/** Instantiate an empty file_stats with fmode_t::not_existing set. */
file_stats() noexcept;
/** Private ctor for private make_shared<file_stats>() intended for friends. */
file_stats(const ctor_cookie& cc, const dir_item& item) noexcept;
/**
* Instantiates a file_stats for the given `path`.
*
* The dir_item will be constructed without parent_dir
* @param path the path to produce stats for
*/
file_stats(const std::string& path) noexcept;
/**
* Instantiates a file_stats for the given dir_item.
*
* @param item the dir_item to produce stats for
*/
file_stats(const dir_item& item) noexcept;
/**
* Returns the dir_item.
*
* In case this instance is created by following a symbolic link instance,
* it represents the resolved path relative to the used symbolic link's dirname.
*
* @see is_link()
* @see path()
*/
const dir_item& item() const noexcept { return item_; }
/**
* Returns the unix path representation.
*
* In case this instance is created by following a symbolic link instance,
* it represents the resolved path relative to the used symbolic link's dirname.
*
* @see is_link()
* @see item()
*/
std::string path() const noexcept { return item_.path(); }
/**
* Returns the stored link-target path this symbolic-link points to if instance is a symbolic-link, otherwise nullptr.
*
* @see is_link()
* @see link_target()
* @see final_target()
*/
const std::shared_ptr<std::string>& link_target_path() const noexcept { return link_target_path_; }
/**
* Returns the link-target this symbolic-link points to if instance is a symbolic-link, otherwise nullptr.
*
* nullptr is also returned for an erroneous symbolic-links, i.e. non-existing link-targets or recursive loop-errors.
*
* @see is_link()
* @see link_target_path()
* @see final_target()
*/
const std::shared_ptr<file_stats>& link_target() const noexcept { return link_target_; }
/**
* Returns the final target element, either a pointer to this instance if not a symbolic-link
* or the final link-target a symbolic-link (chain) points to.
*
* @param link_count optional size_t pointer to store the number of symbolic links leading to the final target, excluding the final instance. 0 indicates no symbolic-link;
*
* @see is_link()
* @see link_target_path()
* @see link_target()
*/
const file_stats* final_target(size_t* link_count=nullptr) const noexcept;
/** Returns true if the given field_t fields were retrieved, otherwise false. */
bool has(const field_t fields) const noexcept;
/** Returns the retrieved field_t fields. */
constexpr field_t fields() const noexcept { return has_fields_; }
/** Returns the fmode_t, file type and mode. */
fmode_t mode() const noexcept { return mode_; }
/** Returns the POSIX protection bit portion of fmode_t, i.e. mode() & fmode_t::protection_mask. */
fmode_t prot_mode() const noexcept { return mode_ & fmode_t::protection_mask; }
/** Returns the user id, owning the element. */
uid_t uid() const noexcept { return uid_; }
/** Returns the group id, owning the element. */
gid_t gid() const noexcept { return gid_; }
/**
* Returns the size in bytes of this element if is_file(), otherwise zero.
*
* If the element also is_link(), the linked target size is returned.
*/
uint64_t size() const noexcept { return size_; }
/** Returns the birth time of this element since Unix Epoch, i.e. its creation time. */
const fraction_timespec& btime() const noexcept { return btime_; }
/** Returns the last access time of this element since Unix Epoch. */
const fraction_timespec& atime() const noexcept { return atime_; }
/** Returns the last status change time of this element since Unix Epoch. */
const fraction_timespec& ctime() const noexcept { return ctime_; }
/** Returns the last modification time of this element since Unix Epoch. */
const fraction_timespec& mtime() const noexcept { return mtime_; }
/** Returns the `errno` value occurred to produce this instance, or zero for no error. */
int errno_res() const noexcept { return errno_res_; }
/** Returns true if no error occurred */
bool ok() const noexcept { return 0 == errno_res_; }
/** Returns true if entity is a file, might be in combination with is_link(). */
bool is_file() const noexcept { return is_set( mode_, fmode_t::file ); }
/** Returns true if entity is a directory, might be in combination with is_link(). */
bool is_dir() const noexcept { return is_set( mode_, fmode_t::dir ); }
/** Returns true if entity is a symbolic link, might be in combination with is_file() or is_dir(). */
bool is_link() const noexcept { return is_set( mode_, fmode_t::link ); }
/** Returns true if entity gives no access to user, exclusive bit. */
bool has_access() const noexcept { return !is_set( mode_, fmode_t::no_access ); }
/** Returns true if entity does not exist, exclusive bit. */
bool exists() const noexcept { return !is_set( mode_, fmode_t::not_existing ); }
bool operator ==(const file_stats& rhs) const noexcept;
bool operator !=(const file_stats& rhs) const noexcept {
return !( *this == rhs );
}
/**
* Returns a comprehensive string representation of this element
* @param use_space if true, using space instead for 'T' separator and drop trailing UTC `Z` for readability, otherwise be compliant with ISO 8601 (default)
*/
std::string to_string(const bool use_space=false) const noexcept;
};
constexpr uint32_t number(const file_stats::field_t rhs) noexcept {
return static_cast<uint32_t>(rhs);
}
constexpr file_stats::field_t operator ~(const file_stats::field_t rhs) noexcept {
return static_cast<file_stats::field_t> ( ~number(rhs) );
}
constexpr file_stats::field_t operator ^(const file_stats::field_t lhs, const file_stats::field_t rhs) noexcept {
return static_cast<file_stats::field_t> ( number(lhs) ^ number(rhs) );
}
constexpr file_stats::field_t operator |(const file_stats::field_t lhs, const file_stats::field_t rhs) noexcept {
return static_cast<file_stats::field_t> ( number(lhs) | number(rhs) );
}
constexpr file_stats::field_t operator &(const file_stats::field_t lhs, const file_stats::field_t rhs) noexcept {
return static_cast<file_stats::field_t> ( number(lhs) & number(rhs) );
}
constexpr file_stats::field_t& operator |=(file_stats::field_t& lhs, const file_stats::field_t rhs) noexcept {
lhs = static_cast<file_stats::field_t> ( number(lhs) | number(rhs) );
return lhs;
}
constexpr file_stats::field_t& operator &=(file_stats::field_t& lhs, const file_stats::field_t rhs) noexcept {
lhs = static_cast<file_stats::field_t> ( number(lhs) & number(rhs) );
return lhs;
}
constexpr file_stats::field_t& operator ^=(file_stats::field_t& lhs, const file_stats::field_t rhs) noexcept {
lhs = static_cast<file_stats::field_t> ( number(lhs) ^ number(rhs) );
return lhs;
}
constexpr bool operator ==(const file_stats::field_t lhs, const file_stats::field_t rhs) noexcept {
return number(lhs) == number(rhs);
}
constexpr bool operator !=(const file_stats::field_t lhs, const file_stats::field_t rhs) noexcept {
return !( lhs == rhs );
}
constexpr bool is_set(const file_stats::field_t mask, const file_stats::field_t bits) noexcept {
return bits == ( mask & bits );
}
std::string to_string(const file_stats::field_t mask) noexcept;
/**
* Create directory
* @param path full path to new directory
* @param mode fmode_t POSIX protection bits used, defaults to jau::fs::fmode_t::def_dir_prot
* @param verbose defaults to false
* @return true if successful, otherwise false
*/
bool mkdir(const std::string& path, const fmode_t mode=jau::fs::fmode_t::def_dir_prot, const bool verbose=false) noexcept;
/**
* Touch the file with given atime and mtime and create file if not existing yet.
* @param path full path to file
* @param atime new access time
* @param mtime new modification time
* @param mode fmode_t POSIX protection bits used, defaults to jau::fs::fmode_t::def_file_prot
* @return true if successful, otherwise false
*/
bool touch(const std::string& path, const jau::fraction_timespec& atime, const jau::fraction_timespec& mtime,
const fmode_t mode=jau::fs::fmode_t::def_file_prot) noexcept;
/**
* Touch the file with current time and create file if not existing yet.
* @param path full path to file
* @param mode fmode_t POSIX protection bits used, defaults to jau::fs::fmode_t::def_file_prot
* @return true if successful, otherwise false
*/
bool touch(const std::string& path, const fmode_t mode=jau::fs::fmode_t::def_file_prot) noexcept;
/**
* `void consume_dir_item(const dir_item& item)`
*/
typedef jau::FunctionDef<void, const dir_item&> consume_dir_item;
/**
* Returns a list of directory elements excluding `.` and `..` for the given path, non recursive.
*
* The custom consume_dir_item `digest` may also be used to filter the element, besides storing it.
*
* @param path path to directory
* @param digest consume_dir_item function to receive each directory item, e.g. `void consume_dir_item(const dir_item& item)`
* @return true if given path exists, is directory and is readable, otherwise false
*/
bool get_dir_content(const std::string& path, const consume_dir_item& digest) noexcept;
/**
* Filesystem traverse event used to call path_visitor for path elements from visit().
*
* This `enum class` type fulfills `C++ named requirements: BitmaskType`.
*
* @see path_visitor
* @see visit()
*/
enum class traverse_event : uint16_t {
/** No value, neither file, symlink nor dir_entry or dir_exit. Implying an error state in file_stat, e.g. !file_stats::has_access(). */
none = 0,
/**
* Visiting a symbolic-link, either to a file or a non-existing entity. Not followed symbolic-links to a directory is expressed via dir_symlink.
*
* In case of a symbolic-link to an existing file, file is also set, i.e. file_symlink.
*/
symlink = 1 << 0,
/** Visiting a file, may be in conjunction with symlink, i.e. file_symlink. */
file = 1 << 1,
/** Visiting a symlink to a file, i.e. symlink | file */
file_symlink = symlink | file,
/**
* Visiting a directory on entry, see traverse_options::dir_entry.
*
* If a directory is visited non-recursive, i.e. traverse_options::recursive not set,
* dir_entry and dir_exit are set, see dir_non_recursive.
*
* If a directory is a symbolic link which is not followed, i.e. traverse_options::follow_symlinks not set,
* dir_symlink is used instead.
*/
dir_entry = 1 << 2,
/**
* Visiting a directory on exit, see traverse_options::dir_exit.
*
* If a directory is visited non-recursive, i.e. traverse_options::recursive not set,
* dir_entry and dir_exit are set, see dir_non_recursive.
*
* If a directory is a symbolic link which is not followed, i.e. traverse_options::follow_symlinks not set,
* dir_symlink is used instead.
*/
dir_exit = 1 << 3,
/**
* Visiting a symbolic-link to a directory which is not followed, i.e. traverse_options::follow_symlinks not set.
*/
dir_symlink = 1 << 4,
/**
* Visiting a directory non-recursive, i.e. traverse_options::recursive not set.
*
* Value is a bit-mask of dir_entry | dir_exit
*/
dir_non_recursive = dir_entry | dir_exit
};
constexpr uint16_t number(const traverse_event rhs) noexcept {
return static_cast<uint16_t>(rhs);
}
constexpr traverse_event operator ~(const traverse_event rhs) noexcept {
return static_cast<traverse_event> ( ~number(rhs) );
}
constexpr traverse_event operator ^(const traverse_event lhs, const traverse_event rhs) noexcept {
return static_cast<traverse_event> ( number(lhs) ^ number(rhs) );
}
constexpr traverse_event operator |(const traverse_event lhs, const traverse_event rhs) noexcept {
return static_cast<traverse_event> ( number(lhs) | number(rhs) );
}
constexpr traverse_event operator &(const traverse_event lhs, const traverse_event rhs) noexcept {
return static_cast<traverse_event> ( number(lhs) & number(rhs) );
}
constexpr traverse_event& operator |=(traverse_event& lhs, const traverse_event rhs) noexcept {
lhs = static_cast<traverse_event> ( number(lhs) | number(rhs) );
return lhs;
}
constexpr traverse_event& operator &=(traverse_event& lhs, const traverse_event rhs) noexcept {
lhs = static_cast<traverse_event> ( number(lhs) & number(rhs) );
return lhs;
}
constexpr traverse_event& operator ^=(traverse_event& lhs, const traverse_event rhs) noexcept {
lhs = static_cast<traverse_event> ( number(lhs) ^ number(rhs) );
return lhs;
}
constexpr bool operator ==(const traverse_event lhs, const traverse_event rhs) noexcept {
return number(lhs) == number(rhs);
}
constexpr bool operator !=(const traverse_event lhs, const traverse_event rhs) noexcept {
return !( lhs == rhs );
}
constexpr bool is_set(const traverse_event mask, const traverse_event bit) noexcept {
return bit == ( mask & bit );
}
std::string to_string(const traverse_event mask) noexcept;
/**
* path_visitor jau::FunctionDef definition
* - `bool visitor(traverse_event tevt, const file_stats& item_stats)`
*/
typedef jau::FunctionDef<bool, traverse_event, const file_stats&> path_visitor;
/**
* Filesystem traverse options used to visit() path elements.
*
* This `enum class` type fulfills `C++ named requirements: BitmaskType`.
*
* @see visit()
* @see remove()
*/
enum class traverse_options : uint16_t {
/** No option set */
none = 0,
/** Traverse through directories, i.e. perform visit, copy, remove etc actions recursively throughout the directory structure. */
recursive = 1 << 0,
/** Traverse through symbolic linked directories if traverse_options::recursive is set, i.e. directories with property fmode_t::link set. */
follow_symlinks = 1 << 1,
/** Visit the content's parent directory at entry. Both, dir_entry and dir_exit can be set, only one or none. */
dir_entry = 1 << 2,
/** Visit the content's parent directory at exit. Both, dir_entry and dir_exit can be set, only one or none. */
dir_exit = 1 << 3,
/** Enable verbosity mode, potentially used by a path_visitor implementation like remove(). */
verbose = 1 << 15
};
constexpr uint16_t number(const traverse_options rhs) noexcept {
return static_cast<uint16_t>(rhs);
}
constexpr traverse_options operator ~(const traverse_options rhs) noexcept {
return static_cast<traverse_options> ( ~number(rhs) );
}
constexpr traverse_options operator ^(const traverse_options lhs, const traverse_options rhs) noexcept {
return static_cast<traverse_options> ( number(lhs) ^ number(rhs) );
}
constexpr traverse_options operator |(const traverse_options lhs, const traverse_options rhs) noexcept {
return static_cast<traverse_options> ( number(lhs) | number(rhs) );
}
constexpr traverse_options operator &(const traverse_options lhs, const traverse_options rhs) noexcept {
return static_cast<traverse_options> ( number(lhs) & number(rhs) );
}
constexpr traverse_options& operator |=(traverse_options& lhs, const traverse_options rhs) noexcept {
lhs = static_cast<traverse_options> ( number(lhs) | number(rhs) );
return lhs;
}
constexpr traverse_options& operator &=(traverse_options& lhs, const traverse_options rhs) noexcept {
lhs = static_cast<traverse_options> ( number(lhs) & number(rhs) );
return lhs;
}
constexpr traverse_options& operator ^=(traverse_options& lhs, const traverse_options rhs) noexcept {
lhs = static_cast<traverse_options> ( number(lhs) ^ number(rhs) );
return lhs;
}
constexpr bool operator ==(const traverse_options lhs, const traverse_options rhs) noexcept {
return number(lhs) == number(rhs);
}
constexpr bool operator !=(const traverse_options lhs, const traverse_options rhs) noexcept {
return !( lhs == rhs );
}
constexpr bool is_set(const traverse_options mask, const traverse_options bit) noexcept {
return bit == ( mask & bit );
}
std::string to_string(const traverse_options mask) noexcept;
/**
* Visit element(s) of a given path, see traverse_options for detailed settings.
*
* All elements of type fmode_t::file, fmode_t::dir and fmode_t::no_access or fmode_t::not_existing
* will be visited by the given path_visitor `visitor`.
*
* Processing ends if the `visitor returns `false`.
*
* @param path the starting path
* @param topts given traverse_options for this operation
* @param visitor path_visitor function `bool visitor(const file_stats& item_stats)`.
* @return true if all visitor invocations returned true, otherwise false
*/
bool visit(const std::string& path, const traverse_options topts, const path_visitor& visitor) noexcept;
/**
* Visit element(s) of a given path, see traverse_options for detailed settings.
*
* All elements of type fmode_t::file, fmode_t::dir and fmode_t::no_access or fmode_t::not_existing
* will be visited by the given path_visitor `visitor`.
*
* Processing ends if the `visitor returns `false`.
*
* @param item_stats pre-fetched file_stats for a given dir_item, used for efficiency
* @param topts given traverse_options for this operation
* @param visitor path_visitor function `bool visitor(const file_stats& item_stats)`.
* @return true if all visitor invocations returned true, otherwise false
*/
bool visit(const file_stats& item_stats, const traverse_options topts, const path_visitor& visitor) noexcept;
/**
* Remove the given path. If path represents a director, `recursive` must be set to true.
*
* The given traverse_options `options` are handled as follows:
* - traverse_options::parent_dir_last will be added by implementation to operate correct
* - traverse_options::recursive shall shall be set by caller to remove directories
* - traverse_options::follow_symlinks shall be set by caller to remove symbolic linked directories recursively, which is kind of dangerous.
* If not set, only the symbolic link will be removed (default)
*
* @param path path to remove
* @param topts given traverse_options for this operation, defaults to traverse_options::none
* @return true only if the file or the directory with content has been deleted, otherwise false
*/
bool remove(const std::string& path, const traverse_options topts=traverse_options::none) noexcept;
/**
* Compare the bytes of both files, denoted by source1 and source2.
*
* @param source1 first source file to compare
* @param source2 second source file to compare
* @param verbose defaults to false
* @return true if both elements are files and their bytes are equal, otherwise false.
*/
bool compare(const file_stats& source1, const file_stats& source2, const bool verbose=false) noexcept;
/**
* Compare the bytes of both files, denoted by source1 and source2.
*
* @param source1 first source file to compare
* @param source2 second source file to compare
* @param verbose defaults to false
* @return true if both elements are files and their bytes are equal, otherwise false.
*/
bool compare(const std::string& source1, const std::string& source2, const bool verbose=false) noexcept;
/**
* Filesystem copy options used to copy() path elements.
*
* By default, the fmode_t POSIX protection mode bits are preserved
* while using the caller's uid and gid as well as current timestamps. <br />
* Use copy_options::preserve_all to preserve uid and gid if allowed from the caller and access- and modification-timestamps.
*
* This `enum class` type fulfills `C++ named requirements: BitmaskType`.
*
* @see copy()
*/
enum class copy_options : uint16_t {
/** No option set */
none = 0,
/** Traverse through directories, i.e. perform visit, copy, remove etc actions recursively throughout the directory structure. */
recursive = 1 << 0,
/** Copy referenced symbolic linked files or directories instead of just the symbolic link with property fmode_t::link set. */
follow_symlinks = 1 << 1,
/**
* Ignore errors from erroneous symlinks, i.e. non-existing link-targets or recursive loop-errors.
*
* This flag is required to copy erroneous symlinks using follow_symlinks, otherwise not.
*/
ignore_symlink_errors = 1 << 8,
/** Overwrite existing destination files, always. */
overwrite = 1 << 9,
/** Preserve uid and gid if allowed and access- and modification-timestamps, i.e. producing a most exact meta-data copy. */
preserve_all = 1 << 10,
/** Ensure data and meta-data file synchronization is performed via ::fsync() after asynchronous copy operations of a file's content. */
sync = 1 << 11,
/** Enable verbosity mode, show error messages on stderr. */
verbose = 1 << 15
};
constexpr uint16_t number(const copy_options rhs) noexcept {
return static_cast<uint16_t>(rhs);
}
constexpr copy_options operator ~(const copy_options rhs) noexcept {
return static_cast<copy_options> ( ~number(rhs) );
}
constexpr copy_options operator ^(const copy_options lhs, const copy_options rhs) noexcept {
return static_cast<copy_options> ( number(lhs) ^ number(rhs) );
}
constexpr copy_options operator |(const copy_options lhs, const copy_options rhs) noexcept {
return static_cast<copy_options> ( number(lhs) | number(rhs) );
}
constexpr copy_options operator &(const copy_options lhs, const copy_options rhs) noexcept {
return static_cast<copy_options> ( number(lhs) & number(rhs) );
}
constexpr copy_options& operator |=(copy_options& lhs, const copy_options rhs) noexcept {
lhs = static_cast<copy_options> ( number(lhs) | number(rhs) );
return lhs;
}
constexpr copy_options& operator &=(copy_options& lhs, const copy_options rhs) noexcept {
lhs = static_cast<copy_options> ( number(lhs) & number(rhs) );
return lhs;
}
constexpr copy_options& operator ^=(copy_options& lhs, const copy_options rhs) noexcept {
lhs = static_cast<copy_options> ( number(lhs) ^ number(rhs) );
return lhs;
}
constexpr bool operator ==(const copy_options lhs, const copy_options rhs) noexcept {
return number(lhs) == number(rhs);
}
constexpr bool operator !=(const copy_options lhs, const copy_options rhs) noexcept {
return !( lhs == rhs );
}
constexpr bool is_set(const copy_options mask, const copy_options bit) noexcept {
return bit == ( mask & bit );
}
std::string to_string(const copy_options mask) noexcept;
/**
* Copy the given source_path to dest_path using copy_options.
*
* The behavior is similar like POSIX `cp` commandline tooling.
*
* Implementation either uses ::sendfile() if running under `GNU/Linux`,
* otherwise POSIX ::read() and ::write().
*
* The following behavior is being followed regarding dest_path:
* - If source_path is a directory and copy_options::recursive set
* - If dest_path doesn't exist, source_path dir content is copied into the newly created dest_path.
* - If dest_path exists as a directory, source_path dir will be copied below the dest_path directory.
* - Everything else is considered an error
* - If source_path is a file
* - If dest_path doesn't exist, source_path file is copied to dest_path as a file.
* - If dest_path exists as a directory, source_path file will be copied below the dest_path directory.
* - If dest_path exists as a file, copy_options::overwrite must be set to have it overwritten by the source_path file
* - Everything else is considered an error
*
* See copy_options for details.
*
* @param source_path
* @param dest_path
* @param copts
* @return true if successful, otherwise false
*/
bool copy(const std::string& source_path, const std::string& dest_path, const copy_options copts = copy_options::none) noexcept;
struct mount_ctx {
bool mounted;
std::string mount_point;
int loop_device_id;
mount_ctx(const std::string& mount_point_, const int loop_device_id_)
: mounted(true), mount_point(mount_point_), loop_device_id(loop_device_id_) {}
mount_ctx()
: mounted(false), mount_point(), loop_device_id(-1) {}
};
/**
* Attach the filesystem image named in `image_path` to `target_path`.
*
* This method either requires root permissions <br />
* or the following capabilities: `cap_sys_admin`,`cap_setuid`, `cap_setgid`.
*
* @param image_path path of image source file
* @param mount_point directory where `image_path` shall be attached to
* @param fs_type type of filesystem, e.g. `squashfs`, `tmpfs`, `iso9660`, etc.
* @param mountflags mount flags, e.g. `MS_LAZYTIME | MS_NOATIME | MS_RDONLY` for a read-only lazy-time and no-atime filesystem.
* @param fs_options special filesystem options
* @return mount_ctx structure containing mounted status etc
*
* @see umount()
*/
mount_ctx mount_image(const std::string& image_path, const std::string& mount_point, const std::string& fs_type,
const unsigned long mountflags, const std::string fs_options="");
/**
* Detach the given mount_ctc `context`
*
* This method either requires root permissions <br />
* or the following capabilities: `cap_sys_admin`,`cap_setuid`, `cap_setgid`.
*
* @param context mount_ctx previously attached via mount_image()
* @return true if successful, otherwise false
*
* @see mount_image()
*/
bool umount(const mount_ctx& context);
/**@}*/
} /* namespace fs */
} /* namespace jau */
#endif /* JAU_FILE_UTIL_HPP_ */
|