2012-08-01 15:40:14 -04:00
|
|
|
/*******************************************************************************
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of Sortix.
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
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.
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
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.
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-01 15:40:14 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
logterminal.h
|
|
|
|
A simple terminal that writes to the kernel log.
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2012-08-01 15:40:14 -04:00
|
|
|
*******************************************************************************/
|
2012-02-09 17:55:03 -05:00
|
|
|
|
|
|
|
#ifndef SORTIX_LOGTERMINAL_H
|
|
|
|
#define SORTIX_LOGTERMINAL_H
|
|
|
|
|
2012-08-01 15:40:14 -04:00
|
|
|
#include <sortix/kernel/kthread.h>
|
2012-08-07 18:19:44 -04:00
|
|
|
#include <sortix/kernel/inode.h>
|
|
|
|
#include <sortix/kernel/keyboard.h>
|
2012-12-29 17:09:24 -05:00
|
|
|
#include <sortix/kernel/poll.h>
|
2012-02-09 17:55:03 -05:00
|
|
|
#include "linebuffer.h"
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
namespace Sortix {
|
2012-02-09 17:55:03 -05:00
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
class LogTerminal : public AbstractInode, public KeyboardOwner
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LogTerminal(dev_t dev, mode_t mode, uid_t owner, gid_t group,
|
|
|
|
Keyboard* keyboard, KeyboardLayout* 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);
|
|
|
|
virtual int tcgetwinsize(ioctx_t* ctx, struct winsize* ws);
|
|
|
|
virtual int settermmode(ioctx_t* ctx, unsigned termmode);
|
|
|
|
virtual int gettermmode(ioctx_t* ctx, unsigned* termmode);
|
2012-12-29 17:09:24 -05:00
|
|
|
virtual int poll(ioctx_t* ctx, PollNode* node);
|
2012-08-07 18:19:44 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void OnKeystroke(Keyboard* keyboard, void* user);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ProcessKeystroke(int kbkey);
|
|
|
|
void QueueUnicode(uint32_t unicode);
|
|
|
|
void CommitLineBuffer();
|
2012-12-29 17:09:24 -05:00
|
|
|
short PollEventStatus();
|
2012-08-07 18:19:44 -04:00
|
|
|
|
|
|
|
private:
|
2012-12-29 17:09:24 -05:00
|
|
|
PollChannel poll_channel;
|
2012-08-07 18:19:44 -04:00
|
|
|
mutable kthread_mutex_t termlock;
|
|
|
|
kthread_cond_t datacond;
|
|
|
|
size_t numwaiting;
|
|
|
|
size_t numeofs;
|
|
|
|
Keyboard* keyboard;
|
|
|
|
KeyboardLayout* kblayout;
|
|
|
|
LineBuffer linebuffer;
|
|
|
|
size_t partiallywritten;
|
|
|
|
unsigned termmode;
|
|
|
|
bool control;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Sortix
|
2012-02-09 17:55:03 -05:00
|
|
|
|
|
|
|
#endif
|