sortix-mirror/kernel/logterminal.h

89 lines
2.7 KiB
C
Raw Normal View History

/*******************************************************************************
2014-04-22 12:02:04 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2012, 2014.
This file is part of Sortix.
Sortix is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Sortix 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 General Public License for more
details.
You should have received a copy of the GNU General Public License along with
Sortix. If not, see <http://www.gnu.org/licenses/>.
logterminal.h
A simple terminal that writes to the kernel log.
*******************************************************************************/
#ifndef SORTIX_LOGTERMINAL_H
#define SORTIX_LOGTERMINAL_H
#include <sortix/kernel/kthread.h>
#include <sortix/kernel/inode.h>
#include <sortix/kernel/keyboard.h>
2012-12-29 22:09:24 +00:00
#include <sortix/kernel/poll.h>
2014-04-22 12:02:04 +00:00
#include "kb/kblayout.h"
#include "linebuffer.h"
namespace Sortix {
class LogTerminal : public AbstractInode, public KeyboardOwner
{
public:
LogTerminal(dev_t dev, mode_t mode, uid_t owner, gid_t group,
2014-04-22 12:02:04 +00:00
Keyboard* keyboard, KeyboardLayoutExecutor* kblayout);
virtual ~LogTerminal();
public:
virtual int sync(ioctx_t* ctx);
virtual ssize_t read(ioctx_t* ctx, uint8_t* buf, size_t count);
virtual ssize_t write(ioctx_t* ctx, const uint8_t* buf, size_t count);
2013-12-20 20:55:05 +00:00
virtual int tcgetwincurpos(ioctx_t* ctx, struct wincurpos* wcp);
virtual int tcgetwinsize(ioctx_t* ctx, struct winsize* ws);
2013-06-12 00:18:07 +00:00
virtual int tcsetpgrp(ioctx_t* ctx, pid_t pgid);
virtual pid_t tcgetpgrp(ioctx_t* ctx);
virtual int settermmode(ioctx_t* ctx, unsigned termmode);
virtual int gettermmode(ioctx_t* ctx, unsigned* termmode);
2012-12-29 22:09:24 +00:00
virtual int poll(ioctx_t* ctx, PollNode* node);
2014-05-05 19:36:40 +00:00
virtual ssize_t tcgetblob(ioctx_t* ctx, const char* name, void* buffer, size_t count);
virtual ssize_t tcsetblob(ioctx_t* ctx, const char* name, const void* buffer, size_t count);
public:
virtual void OnKeystroke(Keyboard* keyboard, void* user);
private:
void ProcessKeystroke(int kbkey);
void QueueUnicode(uint32_t unicode);
void CommitLineBuffer();
2012-12-29 22:09:24 +00:00
short PollEventStatus();
private:
2012-12-29 22:09:24 +00:00
PollChannel poll_channel;
mutable kthread_mutex_t termlock;
kthread_cond_t datacond;
size_t numwaiting;
size_t numeofs;
Keyboard* keyboard;
2014-04-22 12:02:04 +00:00
KeyboardLayoutExecutor* kblayout;
LineBuffer linebuffer;
size_t partiallywritten;
unsigned termmode;
2013-06-12 00:18:07 +00:00
pid_t foreground_pgid;
bool control;
};
} // namespace Sortix
#endif