finalcut/src/include/final/fsystemimpl.h

201 lines
5.2 KiB
C
Raw Normal View History

/***********************************************************************
* 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 *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
/* Standalone class
*
*
*
* FSystemImpl
*
*/
#ifndef FSYSTEMIMPL_H
#define FSYSTEMIMPL_H
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
2019-05-17 22:29:22 +02:00
#if defined(__linux__)
#if defined(__x86_64__) || defined(__i386) || defined(__arm__)
#include <sys/io.h> // <asm/io.h> is deprecated
#endif // defined(__x86_64__) || defined(__i386) || defined(__arm__)
#endif // defined(__linux__)
2019-07-01 01:07:54 +02:00
#if defined(__sun) && defined(__SVR4)
#include <termio.h>
typedef struct termio SGTTY;
typedef struct termios SGTTYS;
#ifdef _LP64
typedef unsigned int chtype;
#else
typedef unsigned long chtype;
#endif // _LP64
#include <term.h> // termcap
#else
#include <term.h> // termcap
#endif // defined(__sun) && defined(__SVR4)
#ifdef F_HAVE_LIBGPM
#undef buttons // from term.h
#endif
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
2019-05-17 22:29:22 +02:00
#include <fcntl.h>
#include <stdarg.h>
#include <unistd.h>
#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
2019-05-17 22:44:44 +02:00
#if defined(__linux__)
#if defined(__x86_64__) || defined(__i386) || defined(__arm__)
2019-07-14 18:30:35 +02:00
virtual uChar inPortByte (uShort port) override
2019-07-01 01:07:54 +02:00
{
return ::inb (port);
2019-07-01 01:07:54 +02:00
}
2019-05-17 22:52:01 +02:00
#else
2019-07-14 18:30:35 +02:00
virtual uChar inPortByte (uShort) override
2019-07-01 01:07:54 +02:00
{
2019-05-17 22:52:01 +02:00
return 0;
2019-07-01 01:07:54 +02:00
}
2019-05-17 22:44:44 +02:00
#endif
2019-05-17 22:52:01 +02:00
#else
2019-07-14 18:30:35 +02:00
virtual uChar inPortByte (uShort) override
2019-07-01 01:07:54 +02:00
{
2019-05-17 22:52:01 +02:00
return 0;
}
2019-07-01 01:07:54 +02:00
#endif
2019-05-17 22:44:44 +02:00
#if defined(__linux__)
#if defined(__x86_64__) || defined(__i386) || defined(__arm__)
2019-07-14 18:30:35 +02:00
virtual void outPortByte (uChar value, uShort port) override
2019-07-01 01:07:54 +02:00
{
::outb (value, port);
2019-07-01 01:07:54 +02:00
}
#else
2019-07-14 18:30:35 +02:00
virtual void outPortByte (uChar, uShort) override
2019-07-01 01:07:54 +02:00
{ }
2019-05-17 22:44:44 +02:00
#endif
2019-07-01 01:07:54 +02:00
#else
2019-07-14 18:30:35 +02:00
virtual void outPortByte (uChar, uShort) override
2019-07-01 01:07:54 +02:00
{ }
2019-05-17 22:44:44 +02:00
#endif
2019-07-01 01:07:54 +02:00
2019-07-14 18:30:35 +02:00
virtual int isTTY (int fd) override
{
return ::isatty(fd);
}
2019-07-14 18:30:35 +02:00
virtual int ioctl (int fd, uLong request, ...) override
{
va_list args;
va_start (args, request);
void* argp = va_arg (args, void*);
int ret = ::ioctl (fd, request, argp);
va_end (args);
return ret;
}
2019-07-14 18:30:35 +02:00
virtual int open (const char* pathname, int flags, ...) override
{
va_list args;
va_start (args, flags);
2019-05-17 22:44:44 +02:00
mode_t mode = static_cast<mode_t>(va_arg (args, int));
int ret = ::open (pathname, flags, mode);
va_end (args);
return ret;
}
2019-07-14 18:30:35 +02:00
virtual int close (int fildes) override
{
return ::close(fildes);
}
2019-07-14 18:30:35 +02:00
virtual FILE* fopen (const char* path, const char* mode) override
{
return std::fopen (path, mode);
}
2019-07-14 18:30:35 +02:00
virtual int fclose (FILE* fp) override
{
return std::fclose (fp);
}
2019-07-01 01:07:54 +02:00
2019-07-14 18:30:35 +02:00
virtual int putchar (int c) override
2019-07-01 01:07:54 +02:00
{
#if defined(__sun) && defined(__SVR4)
return std::putchar(char(c));
#else
return std::putchar(c);
#endif
}
2019-07-14 18:30:35 +02:00
virtual int tputs (const char* str, int affcnt, int (*putc)(int)) override
2019-07-01 01:07:54 +02:00
{
#if defined(__sun) && defined(__SVR4)
return ::tputs (C_STR(str), affcnt, reinterpret_cast<int (*)(char)>(putc));
#else
return ::tputs (str, affcnt, putc);
#endif
}
2019-07-14 18:30:35 +02:00
virtual uid_t getuid() override
2019-07-04 15:26:26 +02:00
{
return ::getuid();
}
};
#pragma pack(pop)
} // namespace finalcut
#endif // FSYSTEMIMPL_H