iPXE
pixbuf.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 /** @file
27  *
28  * Pixel buffer
29  *
30  */
31 
32 #include <stdlib.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <ipxe/umalloc.h>
36 #include <ipxe/image.h>
37 #include <ipxe/pixbuf.h>
38 
39 /**
40  * Free pixel buffer
41  *
42  * @v refcnt Reference count
43  */
44 static void free_pixbuf ( struct refcnt *refcnt ) {
45  struct pixel_buffer *pixbuf =
47 
48  ufree ( pixbuf->data );
49  free ( pixbuf );
50 }
51 
52 /**
53  * Allocate pixel buffer
54  *
55  * @v width Width
56  * @h height Height
57  * @ret pixbuf Pixel buffer, or NULL on failure
58  */
59 struct pixel_buffer * alloc_pixbuf ( unsigned int width, unsigned int height ) {
60  struct pixel_buffer *pixbuf;
61 
62  /* Allocate and initialise structure */
63  pixbuf = zalloc ( sizeof ( *pixbuf ) );
64  if ( ! pixbuf )
65  goto err_alloc_pixbuf;
66  ref_init ( &pixbuf->refcnt, free_pixbuf );
67  pixbuf->width = width;
68  pixbuf->height = height;
69  pixbuf->pixels = ( width * height );
70  pixbuf->len = ( pixbuf->pixels * sizeof ( uint32_t ) );
71 
72  /* Check for multiplication overflow */
73  if ( ( width != 0 ) &&
74  ( ( pixbuf->len / sizeof ( uint32_t ) ) / width ) != height ) {
75  goto err_overflow;
76  }
77 
78  /* Allocate pixel data buffer */
79  pixbuf->data = umalloc ( pixbuf->len );
80  if ( ! pixbuf->data )
81  goto err_alloc_data;
82 
83  return pixbuf;
84 
85  err_alloc_data:
86  err_overflow:
87  pixbuf_put ( pixbuf );
88  err_alloc_pixbuf:
89  return NULL;
90 }
91 
92 /**
93  * Create pixel buffer from image
94  *
95  * @v image Image
96  * @v pixbuf Pixel buffer to fill in
97  * @ret rc Return status code
98  */
99 int image_pixbuf ( struct image *image, struct pixel_buffer **pixbuf ) {
100  int rc;
101 
102  /* Check that this image can be used to create a pixel buffer */
103  if ( ! ( image->type && image->type->pixbuf ) )
104  return -ENOTSUP;
105 
106  /* Try creating pixel buffer */
107  if ( ( rc = image->type->pixbuf ( image, pixbuf ) ) != 0 ) {
108  DBGC ( image, "IMAGE %s could not create pixel buffer: %s\n",
109  image->name, strerror ( rc ) );
110  return rc;
111  }
112 
113  return 0;
114 }
115 
116 /* Drag in objects via image_pixbuf() */
118 
119 /* Drag in pixel buffer image formats */
120 REQUIRE_OBJECT ( config_pixbuf );
int image_pixbuf(struct image *image, struct pixel_buffer **pixbuf)
Create pixel buffer from image.
Definition: pixbuf.c:99
static __always_inline void ufree(void *ptr)
Free external memory.
Definition: umalloc.h:67
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct pixel_buffer * alloc_pixbuf(unsigned int width, unsigned int height)
Allocate pixel buffer.
Definition: pixbuf.c:59
static void free_pixbuf(struct refcnt *refcnt)
Free pixel buffer.
Definition: pixbuf.c:44
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
Error codes.
unsigned int height
Height.
Definition: pixbuf.h:22
struct image_type * type
Image type, if known.
Definition: image.h:58
#define DBGC(...)
Definition: compiler.h:505
An executable image.
Definition: image.h:23
Pixel buffer.
unsigned int pixels
Total number of pixels.
Definition: pixbuf.h:26
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
A reference counter.
Definition: refcnt.h:26
size_t len
Total length.
Definition: pixbuf.h:28
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
Executable images.
uint32_t * data
32-bit (8:8:8:8) xRGB pixel data, in host-endian order
Definition: pixbuf.h:24
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:661
A pixel buffer.
Definition: pixbuf.h:16
User memory allocation.
struct refcnt refcnt
Reference count.
Definition: pixbuf.h:18
unsigned int uint32_t
Definition: stdint.h:12
static __always_inline void * umalloc(size_t size)
Allocate external memory.
Definition: umalloc.h:56
int(* pixbuf)(struct image *image, struct pixel_buffer **pixbuf)
Create pixel buffer from image.
Definition: image.h:120
REQUIRING_SYMBOL(image_pixbuf)
char * name
Name.
Definition: image.h:37
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
String functions.
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
unsigned int width
Width.
Definition: pixbuf.h:20
REQUIRE_OBJECT(config_pixbuf)