This is part of the TSM library creation. We also rename "console" to "screen" as this layer actually manages the screen. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
521 lines
12 KiB
C
521 lines
12 KiB
C
/*
|
|
* kmscon - Text Renderer
|
|
*
|
|
* Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files
|
|
* (the "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:text
|
|
* @short_description: Text Renderer
|
|
* @include: text.h
|
|
*
|
|
* TODO
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <pthread.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "log.h"
|
|
#include "shl_dlist.h"
|
|
#include "text.h"
|
|
#include "uterm.h"
|
|
|
|
#define LOG_SUBSYSTEM "text"
|
|
|
|
struct text_backend {
|
|
struct shl_dlist list;
|
|
const struct kmscon_text_ops *ops;
|
|
};
|
|
|
|
static pthread_mutex_t text_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
static struct shl_dlist text__list = SHL_DLIST_INIT(text__list);
|
|
|
|
static void text_lock()
|
|
{
|
|
pthread_mutex_lock(&text_mutex);
|
|
}
|
|
|
|
static void text_unlock()
|
|
{
|
|
pthread_mutex_unlock(&text_mutex);
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_register:
|
|
* @ops: Text operations and name for new backend
|
|
*
|
|
* This register a new text backend with operations set to @ops. The name
|
|
* @ops->name must be valid.
|
|
*
|
|
* The first font that is registered automatically becomes the default and
|
|
* fallback. So make sure you register a safe fallback as first backend.
|
|
* If this is unregistered, the next in the list becomes the default
|
|
* and fallback.
|
|
*
|
|
* Returns: 0 on success, negative error code on failure
|
|
*/
|
|
int kmscon_text_register(const struct kmscon_text_ops *ops)
|
|
{
|
|
struct shl_dlist *iter;
|
|
struct text_backend *be;
|
|
int ret;
|
|
|
|
if (!ops || !ops->name)
|
|
return -EINVAL;
|
|
|
|
log_debug("register text backend %s", ops->name);
|
|
|
|
text_lock();
|
|
|
|
shl_dlist_for_each(iter, &text__list) {
|
|
be = shl_dlist_entry(iter, struct text_backend, list);
|
|
if (!strcmp(be->ops->name, ops->name)) {
|
|
log_error("registering already available backend %s",
|
|
ops->name);
|
|
ret = -EALREADY;
|
|
goto out_unlock;
|
|
}
|
|
}
|
|
|
|
be = malloc(sizeof(*be));
|
|
if (!be) {
|
|
log_error("cannot allocate memory for backend");
|
|
ret = -ENOMEM;
|
|
goto out_unlock;
|
|
}
|
|
|
|
memset(be, 0, sizeof(*be));
|
|
be->ops = ops;
|
|
shl_dlist_link(&text__list, &be->list);
|
|
|
|
ret = 0;
|
|
|
|
out_unlock:
|
|
text_unlock();
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_unregister:
|
|
* @name: Name of backend
|
|
*
|
|
* This unregisters the text-backend that is registered with name @name. If
|
|
* @name is not found, a warning is printed but nothing else is done.
|
|
*/
|
|
void kmscon_text_unregister(const char *name)
|
|
{
|
|
struct shl_dlist *iter;
|
|
struct text_backend *be;
|
|
|
|
if (!name)
|
|
return;
|
|
|
|
log_debug("unregister backend %s", name);
|
|
|
|
text_lock();
|
|
|
|
shl_dlist_for_each(iter, &text__list) {
|
|
be = shl_dlist_entry(iter, struct text_backend, list);
|
|
if (strcmp(name, be->ops->name))
|
|
continue;
|
|
|
|
shl_dlist_unlink(&be->list);
|
|
break;
|
|
}
|
|
|
|
if (iter == &text__list)
|
|
be = NULL;
|
|
|
|
text_unlock();
|
|
|
|
if (!be) {
|
|
log_error("cannot unregister backend %s: not found", name);
|
|
} else {
|
|
free(be);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_new:
|
|
* @out: A pointer to the new text-renderer is stored here
|
|
* @backend: Backend to use or NULL for default backend
|
|
*
|
|
* Returns: 0 on success, error code on failure
|
|
*/
|
|
int kmscon_text_new(struct kmscon_text **out,
|
|
const char *backend)
|
|
{
|
|
struct kmscon_text *text;
|
|
struct shl_dlist *iter;
|
|
struct text_backend *be, *def;
|
|
int ret;
|
|
|
|
if (!out)
|
|
return -EINVAL;
|
|
|
|
text_lock();
|
|
|
|
if (shl_dlist_empty(&text__list)) {
|
|
log_error("no text backend available");
|
|
ret = -EFAULT;
|
|
} else {
|
|
ret = 0;
|
|
def = shl_dlist_entry(text__list.prev,
|
|
struct text_backend,
|
|
list);
|
|
if (!backend) {
|
|
be = def;
|
|
} else {
|
|
shl_dlist_for_each(iter, &text__list) {
|
|
be = shl_dlist_entry(iter,
|
|
struct text_backend,
|
|
list);
|
|
if (!strcmp(backend, be->ops->name))
|
|
break;
|
|
}
|
|
if (iter == &text__list) {
|
|
log_warning("requested backend %s not found",
|
|
backend);
|
|
be = def;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (ret)
|
|
goto out_unlock;
|
|
|
|
text = malloc(sizeof(*text));
|
|
if (!text) {
|
|
log_error("cannot allocate memory for new text-renderer");
|
|
ret = -ENOMEM;
|
|
goto out_unlock;
|
|
}
|
|
memset(text, 0, sizeof(*text));
|
|
text->ref = 1;
|
|
text->ops = be->ops;
|
|
|
|
if (text->ops->init)
|
|
ret = text->ops->init(text);
|
|
else
|
|
ret = 0;
|
|
|
|
if (ret) {
|
|
if (be == def) {
|
|
log_error("default backend %s cannot create renderer",
|
|
text->ops->name);
|
|
goto err_free;
|
|
}
|
|
|
|
log_warning("backend %s cannot create renderer; trying default backend %s",
|
|
be->ops->name, def->ops->name);
|
|
|
|
memset(text, 0, sizeof(*text));
|
|
text->ref = 1;
|
|
text->ops = def->ops;
|
|
|
|
ret = text->ops->init(text);
|
|
if (ret) {
|
|
log_error("default backend %s cannot create renderer",
|
|
text->ops->name);
|
|
goto err_free;
|
|
}
|
|
}
|
|
|
|
log_debug("using: be: %s", text->ops->name);
|
|
*out = text;
|
|
ret = 0;
|
|
goto out_unlock;
|
|
|
|
err_free:
|
|
free(text);
|
|
out_unlock:
|
|
text_unlock();
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_ref:
|
|
* @text: Valid text-renderer object
|
|
*
|
|
* This increases the reference count of @text by one.
|
|
*/
|
|
void kmscon_text_ref(struct kmscon_text *text)
|
|
{
|
|
if (!text || !text->ref)
|
|
return;
|
|
|
|
++text->ref;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_unref:
|
|
* @text: Valid text-renderer object
|
|
*
|
|
* This decreases the reference count of @text by one. If it drops to zero, the
|
|
* object is freed.
|
|
*/
|
|
void kmscon_text_unref(struct kmscon_text *text)
|
|
{
|
|
if (!text || !text->ref || --text->ref)
|
|
return;
|
|
|
|
log_debug("freeing text renderer");
|
|
kmscon_text_unset(text);
|
|
|
|
text_lock();
|
|
|
|
if (text->ops->destroy)
|
|
text->ops->destroy(text);
|
|
free(text);
|
|
|
|
text_unlock();
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_set:
|
|
* @txt: Valid text-renderer object
|
|
* @font: font object
|
|
* @screen: screen object
|
|
*
|
|
* This makes the text-renderer @txt use the font @font and screen @screen. You
|
|
* can drop your reference to both after calling this.
|
|
* This calls kmscon_text_unset() first to remove all previous associations.
|
|
* None of the arguments can be NULL!
|
|
* If this function fails then you must assume that no font/screen will be set
|
|
* and the object is invalid.
|
|
*
|
|
* Returns: 0 on success, negative error code on failure.
|
|
*/
|
|
int kmscon_text_set(struct kmscon_text *txt,
|
|
struct kmscon_font *font,
|
|
struct uterm_screen *screen)
|
|
{
|
|
int ret;
|
|
|
|
if (!txt || !font || !screen)
|
|
return -EINVAL;
|
|
|
|
kmscon_text_unset(txt);
|
|
|
|
txt->font = font;
|
|
txt->screen = screen;
|
|
|
|
if (txt->ops->set) {
|
|
ret = txt->ops->set(txt);
|
|
if (ret) {
|
|
txt->font = NULL;
|
|
txt->screen = NULL;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
kmscon_font_ref(txt->font);
|
|
uterm_screen_ref(txt->screen);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_unset():
|
|
* @txt: text renderer
|
|
*
|
|
* This redos kmscon_text_set() by dropping the internal references to the font
|
|
* and screen and invalidating the object. You need to call kmscon_text_set()
|
|
* again to make use of this text renderer.
|
|
* This is automatically called when the text renderer is destroyed.
|
|
*/
|
|
void kmscon_text_unset(struct kmscon_text *txt)
|
|
{
|
|
if (!txt || !txt->screen || !txt->font)
|
|
return;
|
|
|
|
if (txt->ops->unset)
|
|
txt->ops->unset(txt);
|
|
|
|
kmscon_font_unref(txt->font);
|
|
uterm_screen_unref(txt->screen);
|
|
txt->font = NULL;
|
|
txt->screen = NULL;
|
|
txt->cols = 0;
|
|
txt->rows = 0;
|
|
txt->rendering = false;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_get_cols:
|
|
* @txt: valid text renderer
|
|
*
|
|
* After setting the arguments with kmscon_text_set(), the renderer will compute
|
|
* the number of columns/rows of the console that it can display on the screen.
|
|
* You can retrieve these values via these functions.
|
|
* If kmscon_text_set() hasn't been called, this will return 0.
|
|
*
|
|
* Returns: Number of columns or 0 if @txt is invalid
|
|
*/
|
|
unsigned int kmscon_text_get_cols(struct kmscon_text *txt)
|
|
{
|
|
if (!txt)
|
|
return 0;
|
|
|
|
return txt->cols;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_get_rows:
|
|
* @txt: valid text renderer
|
|
*
|
|
* After setting the arguments with kmscon_text_set(), the renderer will compute
|
|
* the number of columns/rows of the console that it can display on the screen.
|
|
* You can retrieve these values via these functions.
|
|
* If kmscon_text_set() hasn't been called, this will return 0.
|
|
*
|
|
* Returns: Number of rows or 0 if @txt is invalid
|
|
*/
|
|
unsigned int kmscon_text_get_rows(struct kmscon_text *txt)
|
|
{
|
|
if (!txt)
|
|
return 0;
|
|
|
|
return txt->rows;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_prepare:
|
|
* @txt: valid text renderer
|
|
*
|
|
* This starts a rendering-round. When rendering a console via a text renderer,
|
|
* you have to call this first, then render all your glyphs via
|
|
* kmscon_text_draw() and finally use kmscon_text_render(). If you modify this
|
|
* renderer during rendering or if you activate different OpenGL contexts in
|
|
* between, you need to restart rendering by calling kmscon_text_prepare() again
|
|
* and redoing everything from the beginning.
|
|
*
|
|
* Returns: 0 on success, negative error code on failure.
|
|
*/
|
|
int kmscon_text_prepare(struct kmscon_text *txt)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!txt || !txt->font || !txt->screen)
|
|
return -EINVAL;
|
|
|
|
txt->rendering = true;
|
|
if (txt->ops->prepare)
|
|
ret = txt->ops->prepare(txt);
|
|
if (ret)
|
|
txt->rendering = false;
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_draw:
|
|
* @txt: valid text renderer
|
|
* @id: a unique ID that identifies @ch globally
|
|
* @ch: ucs4 symbol you want to draw
|
|
* @len: length of @ch or 0 for empty cell
|
|
* @posx: X-position of the glyph
|
|
* @posy: Y-position of the glyph
|
|
* @attr: glyph attributes
|
|
*
|
|
* This draws a single glyph at the requested position. The position is a
|
|
* console position, not a pixel position! You must precede this call with
|
|
* kmscon_text_prepare(). Use this function to feed all glyphs into the
|
|
* rendering pipeline and finally call kmscon_text_render().
|
|
*
|
|
* Returns: 0 on success or negative error code if this glyph couldn't be drawn.
|
|
*/
|
|
int kmscon_text_draw(struct kmscon_text *txt,
|
|
uint32_t id, const uint32_t *ch, size_t len,
|
|
unsigned int posx, unsigned int posy,
|
|
const struct tsm_screen_attr *attr)
|
|
{
|
|
if (!txt || !txt->rendering)
|
|
return -EINVAL;
|
|
if (posx >= txt->cols || posy >= txt->rows || !attr)
|
|
return -EINVAL;
|
|
|
|
return txt->ops->draw(txt, id, ch, len, posx, posy, attr);
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_render:
|
|
* @txt: valid text renderer
|
|
*
|
|
* This does the final rendering round after kmscon_text_prepare() has been
|
|
* called and all glyphs were sent to the renderer via kmscon_text_draw().
|
|
*
|
|
* Returns: 0 on success, negative error on failure.
|
|
*/
|
|
int kmscon_text_render(struct kmscon_text *txt)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!txt || !txt->rendering)
|
|
return -EINVAL;
|
|
|
|
if (txt->ops->render)
|
|
ret = txt->ops->render(txt);
|
|
txt->rendering = false;
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* kmscon_text_abort:
|
|
* @txt: valid text renderer
|
|
*
|
|
* If you called kmscon_text_prepare() but you want to abort rendering instead
|
|
* of finishing it with kmscon_text_render(), you can safely call this to reset
|
|
* internal state. It is optional to call this or simply restart rendering.
|
|
* Especially if the other renderers return an error, then they probably already
|
|
* aborted rendering and it is not required to call this.
|
|
*/
|
|
void kmscon_text_abort(struct kmscon_text *txt)
|
|
{
|
|
if (!txt || !txt->rendering)
|
|
return;
|
|
|
|
if (txt->ops->abort)
|
|
txt->ops->abort(txt);
|
|
txt->rendering = false;
|
|
}
|
|
|
|
int kmscon_text_prepare_cb(struct tsm_screen *con, void *data)
|
|
{
|
|
return kmscon_text_prepare(data);
|
|
}
|
|
|
|
int kmscon_text_draw_cb(struct tsm_screen *con,
|
|
uint32_t id, const uint32_t *ch, size_t len,
|
|
unsigned int posx, unsigned int posy,
|
|
const struct tsm_screen_attr *attr, void *data)
|
|
{
|
|
return kmscon_text_draw(data, id, ch, len, posx, posy, attr);
|
|
}
|
|
|
|
int kmscon_text_render_cb(struct tsm_screen *con, void *data)
|
|
{
|
|
return kmscon_text_render(data);
|
|
}
|