/*********************************************************************** * fsystemimpl.h - FSystem implementation * * * * This file is part of the Final Cut widget toolkit * * * * Copyright 2019 Markus Gans * * * * The Final Cut 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. * * * * The Final Cut 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 this program. If not, see * * . * ***********************************************************************/ /* Standalone class * ════════════════ * * ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▏ * ▕ FSystemImpl ▏ * ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▏ */ #ifndef FSYSTEMIMPL_H #define FSYSTEMIMPL_H #if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT) #error "Only can be included directly." #endif #if defined(__linux__) #if defined(__x86_64__) || defined(__i386) || defined(__arm__) #include // is deprecated #endif // defined(__x86_64__) || defined(__i386) || defined(__arm__) #endif // defined(__linux__) #if defined(__sun) && defined(__SVR4) #include typedef struct termio SGTTY; typedef struct termios SGTTYS; #ifdef _LP64 typedef unsigned int chtype; #else typedef unsigned long chtype; #endif // _LP64 #include // termcap #else #include // termcap #endif // defined(__sun) && defined(__SVR4) #ifdef F_HAVE_LIBGPM #undef buttons // from term.h #endif #include #include #include #include #include #include #include "final/fc.h" #include "final/fsystem.h" namespace finalcut { //---------------------------------------------------------------------- // class FSystemImpl //---------------------------------------------------------------------- #pragma pack(push) #pragma pack(1) class FSystemImpl : public FSystem { public: // Constructor FSystemImpl(); // Destructor virtual ~FSystemImpl(); // Methods #if defined(__linux__) #if defined(__x86_64__) || defined(__i386) || defined(__arm__) virtual uChar inPortByte (uShort port) { return ::inb (port); } #else virtual uChar inPortByte (uShort) { return 0; } #endif #else virtual uChar inPortByte (uShort) { return 0; } #endif #if defined(__linux__) #if defined(__x86_64__) || defined(__i386) || defined(__arm__) virtual void outPortByte (uChar value, uShort port) { ::outb (value, port); } #else virtual void outPortByte (uChar, uShort) { } #endif #else virtual void outPortByte (uChar, uShort) { } #endif virtual int isTTY (int fd) { return ::isatty(fd); } virtual int ioctl (int fd, uLong request, ...) { va_list args; va_start (args, request); void* argp = va_arg (args, void*); int ret = ::ioctl (fd, request, argp); va_end (args); return ret; } virtual int open (const char* pathname, int flags, ...) { va_list args; va_start (args, flags); mode_t mode = static_cast(va_arg (args, int)); int ret = ::open (pathname, flags, mode); va_end (args); return ret; } virtual int close (int fildes) { return ::close(fildes); } virtual FILE* fopen (const char* path, const char* mode) { return std::fopen (path, mode); } virtual int fclose (FILE* fp) { return std::fclose (fp); } virtual int putchar (int c) { #if defined(__sun) && defined(__SVR4) return std::putchar(char(c)); #else return std::putchar(c); #endif } virtual int tputs (const char* str, int affcnt, int (*putc)(int)) { #if defined(__sun) && defined(__SVR4) return ::tputs (C_STR(str), affcnt, reinterpret_cast(putc)); #else return ::tputs (str, affcnt, putc); #endif } virtual uid_t getuid() { return ::getuid(); } }; #pragma pack(pop) } // namespace finalcut #endif // FSYSTEMIMPL_H