mirror of
https://gitlab.freedesktop.org/emersion/libdisplay-info.git
synced 2024-11-16 19:48:30 +01:00
7834b6ba22
This can be used by parsers (EDID, CTA, DisplayID, etc) to report errors. Signed-off-by: Simon Ser <contact@emersion.fr>
89 lines
1.7 KiB
C
89 lines
1.7 KiB
C
#include <inttypes.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "edid.h"
|
|
#include "info.h"
|
|
#include "log.h"
|
|
|
|
struct di_info *
|
|
di_info_parse_edid(const void *data, size_t size)
|
|
{
|
|
struct di_edid *edid;
|
|
struct di_info *info;
|
|
char *failure_msg = NULL;
|
|
size_t failure_msg_size;
|
|
FILE *failure_msg_file;
|
|
|
|
failure_msg_file = open_memstream(&failure_msg,
|
|
&failure_msg_size);
|
|
if (!failure_msg_file)
|
|
return NULL;
|
|
|
|
edid = _di_edid_parse(data, size, failure_msg_file);
|
|
if (!edid)
|
|
goto err_failure_msg_file;
|
|
|
|
info = calloc(1, sizeof(*info));
|
|
if (!info)
|
|
goto err_edid;
|
|
|
|
info->edid = edid;
|
|
|
|
if (fflush(failure_msg_file) != 0)
|
|
goto err_info;
|
|
fclose(failure_msg_file);
|
|
if (failure_msg && failure_msg[0] != '\0')
|
|
info->failure_msg = failure_msg;
|
|
else
|
|
free(failure_msg);
|
|
|
|
return info;
|
|
|
|
err_info:
|
|
free(info);
|
|
err_edid:
|
|
_di_edid_destroy(edid);
|
|
err_failure_msg_file:
|
|
fclose(failure_msg_file);
|
|
free(failure_msg);
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
di_info_destroy(struct di_info *info)
|
|
{
|
|
_di_edid_destroy(info->edid);
|
|
free(info->failure_msg);
|
|
free(info);
|
|
}
|
|
|
|
const struct di_edid *
|
|
di_info_get_edid(const struct di_info *info)
|
|
{
|
|
return info->edid;
|
|
}
|
|
|
|
const char *
|
|
di_info_get_failure_msg(const struct di_info *info)
|
|
{
|
|
return info->failure_msg;
|
|
}
|
|
|
|
char *
|
|
di_info_get_product_name(const struct di_info *info)
|
|
{
|
|
char name[64];
|
|
const struct di_edid_vendor_product *edid_vendor_product;
|
|
|
|
edid_vendor_product = di_edid_get_vendor_product(info->edid);
|
|
|
|
/* TODO: use strings from Detailed Timing Descriptors, if any */
|
|
snprintf(name, sizeof(name), "%.3s 0x%X" PRIu16 " 0x%X" PRIu32,
|
|
edid_vendor_product->manufacturer,
|
|
edid_vendor_product->product,
|
|
edid_vendor_product->serial);
|
|
|
|
return strdup(name);
|
|
}
|