/usr/include/ucommon/fsys.h is in libucommon-dev 6.0.7-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
//
// This file is part of GNU uCommon C++.
//
// GNU uCommon C++ is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU uCommon C++ is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.
/**
* Thread-aware file system manipulation class. This is used to provide
* generic file operations that are OS independent and thread-safe in
* behavior. This is used in particular to wrap posix calls internally
* to pth, and to create portable code between MSWINDOWS and Posix low-level
* file I/O operations.
* @file ucommon/fsys.h
*/
#ifndef _UCOMMON_FSYS_H_
#define _UCOMMON_FSYS_H_
#ifndef _UCOMMON_CONFIG_H_
#include <ucommon/platform.h>
#endif
#ifndef _UCOMMON_PROTOCOLS_H_
#include <ucommon/protocols.h>
#endif
#ifndef _UCOMMON_THREAD_H_
#include <ucommon/thread.h>
#endif
#ifndef _UCOMMON_STRING_H_
#include <ucommon/string.h>
#endif
#ifndef _UCOMMON_MEMORY_H_
#include <ucommon/memory.h>
#endif
#ifndef _MSWINDOWS_
#include <sys/stat.h>
#else
#include <io.h>
#ifndef R_OK
#define F_OK 0
#define X_OK 1
#define W_OK 2
#define R_OK 4
#endif
#endif
#include <errno.h>
#include <stdio.h>
#ifndef __S_ISTYPE
#define __S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask))
#endif
#if !defined(S_ISDIR) && defined(S_IFDIR)
#define S_ISDIR(mode) __S_ISTYPE((mode), S_IFDIR)
#endif
#if !defined(S_ISCHR) && defined(S_IFCHR)
#define S_ISCHR(mode) __S_ISTYPE((mode), S_IFCHR)
#elif !defined(S_ISCHR)
#define S_ISCHR(mode) 0
#endif
#if !defined(S_ISBLK) && defined(S_IFBLK)
#define S_ISBLK(mode) __S_ISTYPE((mode), S_IFBLK)
#elif !defined(S_ISBLK)
#define S_ISBLK(mode) 0
#endif
#if !defined(S_ISREG) && defined(S_IFREG)
#define S_ISREG(mode) __S_ISTYPE((mode), S_IFREG)
#elif !defined(S_ISREG)
#define S_ISREG(mode) 1
#endif
#if !defined(S_ISSOCK) && defined(S_IFSOCK)
#define S_ISSOCK(mode) __S_ISTYPE((mode), S_IFSOCK)
#elif !defined(S_ISSOCK)
#define S_ISSOCK(mode) (0)
#endif
#if !defined(S_ISFIFO) && defined(S_IFIFO)
#define S_ISFIFO(mode) __S_ISTYPE((mode), S_IFIFO)
#elif !defined(S_ISFIFO)
#define S_ISFIFO(mode) (0)
#endif
#if !defined(S_ISLNK) && defined(S_IFLNK)
#define S_ISLNK(mode) __S_ISTYPE((mode), S_IFLNK)
#elif !defined(S_ISLNK)
#define S_ISLNK(mode) (0)
#endif
NAMESPACE_UCOMMON
/**
* Convenience type for loader operations.
*/
typedef void *mem_t;
/**
* A container for generic and o/s portable threadsafe file system functions.
* These are based roughly on their posix equivilents. For libpth, the
* system calls are wrapped. The native file descriptor or handle may be
* used, but it is best to use "class fsys" instead because it can capture
* the errno of a file operation in a threadsafe and platform independent
* manner, including for mswindows targets.
*/
class __EXPORT fsys
{
protected:
fd_t fd;
int error;
public:
/**
* Most of the common chmod values are predefined.
*/
enum {
OWNER_READONLY = 0400,
GROUP_READONLY = 0440,
PUBLIC_READONLY = 0444,
OWNER_PRIVATE = 0600,
OWNER_PUBLIC = 0644,
GROUP_PRIVATE = 0660,
GROUP_PUBLIC = 0664,
EVERYONE = 0666,
DIR_TEMPORARY = 01777
};
typedef struct stat fileinfo_t;
#ifdef _MSWINDOWS_
static int remapError(void);
#else
inline static int remapError(void)
{return errno;};
#endif
/**
* Enumerated file access modes.
*/
typedef enum {
RDONLY,
WRONLY,
REWRITE,
RDWR = REWRITE,
APPEND,
SHARED,
EXCLUSIVE,
DEVICE,
STREAM,
RANDOM
} access_t;
/**
* File offset type.
*/
typedef long offset_t;
/**
* Used to mark "append" in set position operations.
*/
static const offset_t end;
/**
* Construct an unattached fsys descriptor.
*/
fsys();
/**
* Contruct fsys from raw file handle.
*/
fsys(fd_t handle);
/**
* Copy (dup) an existing fsys descriptor.
* @param descriptor to copy from.
*/
fsys(const fsys& descriptor);
/**
* Create a fsys descriptor by opening an existing file or directory.
* @param path of file to open for created descriptor.
* @param access mode of file.
*/
fsys(const char *path, access_t access);
/**
* Create a fsys descriptor by creating a file.
* @param path of file to create for descriptor.
* @param access mode of file access.
* @param permission mode of file.
*/
fsys(const char *path, unsigned permission, access_t access);
/**
* Close and release a file descriptor.
*/
~fsys();
/**
* Get the descriptor from the object by pointer reference.
* @return low level file handle.
*/
inline fd_t operator*() const
{return fd;};
/**
* Get the descriptor from the object by casting reference.
* @return low level file handle.
*/
inline operator fd_t() const
{return fd;}
/**
* Reset error flag.
*/
inline void reset(void)
{error = 0;}
/**
* Test if file descriptor is open.
* @return true if open.
*/
inline operator bool() const
{return fd != INVALID_HANDLE_VALUE;}
/**
* Test if file descriptor is closed.
* @return true if closed.
*/
inline bool operator!() const
{return fd == INVALID_HANDLE_VALUE;}
/**
* Assign file descriptor by duplicating another descriptor.
* @param descriptor to dup from.
*/
void operator=(const fsys& descriptor);
/**
* Replace current file descriptor with an external descriptor. This
* does not create a duplicate. The external descriptor object is
* marked as invalid.
*/
void operator*=(fd_t& descriptor);
/**
* Assing file descriptor from system descriptor.
* @param descriptor to dup from.
*/
void operator=(fd_t descriptor);
/**
* Get the native system descriptor handle of the file descriptor.
* @return native os descriptor.
*/
inline fd_t handle(void) const
{return fd;};
/**
* Set with external descriptor. Closes existing file if open.
* @param descriptor of open file.
*/
void set(fd_t descriptor);
/**
* Release descriptor, do not close.
* @return handle being released.
*/
fd_t release(void);
/**
* Set the position of a file descriptor.
* @param offset from start of file or "end" to append.
* @return error number or 0 on success.
*/
int seek(offset_t offset);
/**
* Drop cached data from start of file.
* @param size of region to drop or until end of file.
* @return error number or 0 on success.
*/
int drop(offset_t size = 0);
/**
* See if current file stream is a tty device.
* @return true if device.
*/
bool is_tty(void);
/**
* See if the file handle is a tty device.
* @return true if device.
*/
static bool is_tty(fd_t fd);
/**
* Read data from descriptor or scan directory.
* @param buffer to read into.
* @param count of bytes to read.
* @return bytes transferred, -1 if error.
*/
ssize_t read(void *buffer, size_t count);
/**
* Write data to descriptor.
* @param buffer to write from.
* @param count of bytes to write.
* @return bytes transferred, -1 if error.
*/
ssize_t write(const void *buffer, size_t count);
/**
* Get status of open descriptor.
* @param buffer to save status info in.
* @return error number or 0 on success.
*/
int info(fileinfo_t *buffer);
/**
* Truncate file to specified length. The file pointer is positioned
* to the new end of file.
* @param offset to truncate to.
* @return true if truncate successful.
*/
int trunc(offset_t offset);
/**
* Commit changes to the filesystem.
* @return error number or 0 on success.
*/
int sync(void);
/**
* Set directory prefix (chdir).
* @param path to change to.
* @return error number or 0 on success.
*/
static int prefix(const char *path);
/**
* Get current directory prefix (pwd).
* @param path to save directory into.
* @param size of path we can save.
* @return error number or 0 on success.
*/
static int prefix(char *path, size_t size);
static string_t prefix(void);
/**
* Stat a file.
* @param path of file to stat.
* @param buffer to save stat info.
* @return error number or 0 on success.
*/
static int info(const char *path, fileinfo_t *buffer);
/**
* Erase (remove) a file only.
* @param path of file.
* @return error number or 0 on success.
*/
static int erase(const char *path);
/**
* Copy a file.
* @param source file.
* @param target file.
* @param size of buffer.
* @return error number or 0 on success.
*/
static int copy(const char *source, const char *target, size_t size = 1024);
/**
* Rename a file.
* @param oldpath to rename from.
* @param newpath to rename to.
* @return error number or 0 on success.
*/
static int rename(const char *oldpath, const char *newpath);
/**
* Change file access mode.
* @param path to change.
* @param value of mode to assign.
* @return error number or 0 on success.
*/
static int mode(const char *path, unsigned value);
/**
* Test if path exists.
* @param path to test.
* @return if true.
*/
static bool is_exists(const char *path);
/**
* Test if path readable.
* @param path to test.
* @return if true.
*/
static bool is_readable(const char *path);
/**
* Test if path writable.
* @param path to test.
* @return if true.
*/
static bool is_writable(const char *path);
/**
* Test if path is executable.
* @param path to test.
* @return if true.
*/
static bool is_executable(const char *path);
/**
* Test if path is a file.
* @param path to test.
* @return true if exists and is file.
*/
static bool is_file(const char *path);
/**
* Test if path is a directory.
* @param path to test.
* @return true if exists and is directory.
*/
static bool is_dir(const char *path);
/**
* Test if path is a symlink.
* @param path to test.
* @return true if exists and is symlink.
*/
static bool is_link(const char *path);
/**
* Test if path is a device path.
* @param path to test.
* @return true of is a device path.
*/
static bool is_device(const char *path);
/**
* Test if path is a hidden file.
* @param path to test.
* @return true if exists and is hidden.
*/
static bool is_hidden(const char *path);
/**
* Open a file or directory.
* @param path of file to open.
* @param access mode of descriptor.
*/
void open(const char *path, access_t access);
/**
* Assign descriptor directly.
* @param descriptor to assign.
*/
inline void assign(fd_t descriptor)
{close(); fd = descriptor;};
/**
* Assign a descriptor directly.
* @param object to assign descriptor to.
* @param descriptor to assign.
*/
inline static void assign(fsys& object, fd_t descriptor)
{object.close(); object.fd = descriptor;};
/**
* Open a file descriptor directly.
* @param path of file to create.
* @param access mode of descriptor.
* @param mode of file if created.
*/
void open(const char *path, unsigned mode, access_t access);
/**
* Remove a symbolic link explicitly. Other kinds of files are also
* deleted. This should be used when uncertain about symlinks requiring
* special support.
* @param path to remove.
* @return error number or 0 on success.
*/
static int unlink(const char *path);
/**
* Create a symbolic link.
* @param path to create.
* @param target of link.
* @return error number or 0 on success.
*/
static int link(const char *path, const char *target);
/**
* Create a hard link.
* @param path to create link to.
* @param target of link.
* @return error number or 0 on success.
*/
static int hardlink(const char *path, const char *target);
/**
* Read a symbolic link to get it's target.
* @param path of link.
* @param buffer to save target into.
* @param size of buffer.
*/
static int linkinfo(const char *path, char *buffer, size_t size);
/**
* Close a fsys resource.
* @return error code as needed.
*/
int close(void);
/**
* Get last error.
* @return error number.
*/
inline int err(void) const
{return error;}
/**
* Direct means to open a read-only file path and return a descriptor.
* @param path to open.
* @return descriptor on success, invalid handle on failure.
*/
static fd_t input(const char *path);
/**
* Direct means to create or access a writable path and return descriptor.
* @param path to create.
* @return descriptor on success, invalid handle on failure.
*/
static fd_t output(const char *path);
/**
* Direct means to create or append a writable path and return descriptor.
* @param path to create.
* @return descriptor on success, invalid handle on failure.
*/
static fd_t append(const char *path);
/**
* Release a file descriptor.
* @param descriptor to release.
*/
static void release(fd_t descriptor);
/**
* Create pipe. These are created inheritable by default.
* @param input descriptor.
* @param output descriptor.
* @param size of buffer if supported.
* @return 0 or error code.
*/
static int pipe(fd_t& input, fd_t& output, size_t size = 0);
/**
* Changle inheritable handle. On windows this is done by creating a
* duplicate handle and then closing the original. Elsewhere this
* is done simply by setting flags.
* @param descriptor to modify.
* @param enable child process inheritence.
* @return 0 on success, error on failure.
*/
static int inherit(fd_t& descriptor, bool enable);
/**
* Create inheritable /dev/null handle.
* @return null device handle.
*/
static fd_t null(void);
/**
* Load a library into memory.
* @param path to plugin.
* @return 0 on success, else error.
*/
static int load(const char *path);
/**
* Execute a process and get exit code.
* @param path to execute.
* @param argv list.
* @param optional env.
* @return exit code.
*/
static int exec(const char *path, char **argv, char **envp = NULL);
static inline bool is_file(struct stat *inode)
{return S_ISREG(inode->st_mode);}
static inline bool is_dir(struct stat *inode)
{return S_ISDIR(inode->st_mode);}
static inline bool is_link(struct stat *inode)
{return S_ISLNK(inode->st_mode);}
static inline bool is_dev(struct stat *inode)
{return S_ISBLK(inode->st_mode) || S_ISCHR(inode->st_mode);}
static inline bool is_char(struct stat *inode)
{return S_ISCHR(inode->st_mode);}
static inline bool is_disk(struct stat *inode)
{return S_ISBLK(inode->st_mode);}
static inline bool is_sys(struct stat *inode)
{return S_ISSOCK(inode->st_mode) || S_ISFIFO(inode->st_mode);}
};
/**
* Convenience class for library plugins.
* @author David Sugar <dyfet@gnutelephony.org>
*/
class __EXPORT dso
{
private:
friend class fsys;
#ifdef _MSWINDOWS_
HINSTANCE ptr;
#else
void *ptr;
#endif
int error;
public:
#ifdef _MSWINDOWS_
typedef int (FAR WINAPI *addr_t)();
#else
typedef void *addr_t;
#endif
/**
* Create dso object for use by load functions.
*/
dso();
/**
* Create and map a dso object.
* @param path of library to map.
*/
dso(const char *path);
/**
* Destroy dso and release library.
*/
~dso();
/**
* Map library object with library.
* @param name of library to load.
*/
void map(const char *path);
/**
* Release loaded library.
*/
void release(void);
/**
* Find symbol in loaded module.
* @param module to search.
* @param symbol to search for.
* @return address of symbol or NULL if not found.
*/
addr_t find(const char *symbol) const;
inline int err(void) const
{return error;}
inline addr_t operator[](const char *symbol) const
{return find(symbol);}
inline addr_t operator()(const char *symbol) const
{return find(symbol);}
inline operator bool()
{return ptr != NULL;}
inline bool operator!()
{return ptr == NULL;}
};
/**
* Convenience class for directories.
* @author David Sugar <dyfet@gnutelephony.org>
*/
class __EXPORT dir : private fsys
{
private:
#ifdef _MSWINDOWS_
WIN32_FIND_DATA *ptr;
HINSTANCE mem;
#else
void *ptr;
#endif
public:
/**
* Construct and open a directory path.
* @param path of directory.
*/
dir(const char *path);
/**
* Construct an unopened directory.
*/
dir();
/**
* Close and release directory.
*/
~dir();
/**
* Simple direct method to create a directory.
* @param path of directory to create.
* @param mode of directory.
* @return error number or 0 on success.
*/
static int create(const char *path, unsigned mode);
/**
* Remove an empty directory.
* @param path of directory.
* @return error number or 0 on success.
*/
static int remove(const char *path);
/**
* Open a directory path for reading.
* @param path to open.
*/
void open(const char *path);
/**
* Read data from directory.
* @param buffer to read into.
* @param count of bytes to read.
* @return bytes transferred, -1 if error.
*/
ssize_t read(char *buffer, size_t count);
/**
* Close and release directory object.
*/
void close(void);
inline int err(void) const
{return fsys::err();}
inline void reset(void)
{fsys::reset();}
/**
* Test if file descriptor is open.
* @return true if open.
*/
inline operator bool() const
{return ptr != NULL;};
/**
* Test if file descriptor is closed.
* @return true if closed.
*/
inline bool operator!() const
{return ptr == NULL;};
};
/**
* Convience type for fsys.
*/
typedef fsys fsys_t;
typedef dir dir_t;
typedef dso dso_t;
inline bool is_exists(const char *path)
{return fsys::is_exists(path);}
inline bool is_readable(const char *path)
{return fsys::is_readable(path);}
inline bool is_writable(const char *path)
{return fsys::is_writable(path);}
inline bool is_executable(const char *path)
{return fsys::is_executable(path);}
inline bool is_file(const char *path)
{return fsys::is_file(path);}
inline bool is_dir(const char *path)
{return fsys::is_dir(path);}
inline bool is_link(const char *path)
{return fsys::is_link(path);}
inline bool is_device(const char *path)
{return fsys::is_device(path);}
END_NAMESPACE
#endif
|