blob: 0273ee3734f9619a315a7495044bdbec66b0795d [file] [log] [blame]
Richard Hughesb24e48e2013-05-09 20:31:09 +01001/*
2 * Copyright © 2013 Richard Hughes
3 *
Bryce Harringtona0bbfea2015-06-11 15:35:43 -07004 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
Richard Hughesb24e48e2013-05-09 20:31:09 +010011 *
Bryce Harringtona0bbfea2015-06-11 15:35:43 -070012 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
Richard Hughesb24e48e2013-05-09 20:31:09 +010024 */
25
Daniel Stonec228e232013-05-22 18:03:19 +030026#include "config.h"
Richard Hughesb24e48e2013-05-09 20:31:09 +010027
Richard Hughesb24e48e2013-05-09 20:31:09 +010028#include <stdlib.h>
29#include <string.h>
30
31#include "compositor.h"
32#include "cms-helper.h"
Jon Cruz867d50e2015-06-15 15:37:10 -070033#include "shared/helpers.h"
Richard Hughesb24e48e2013-05-09 20:31:09 +010034
35struct cms_static {
36 struct weston_compositor *ec;
37 struct wl_listener destroy_listener;
38 struct wl_listener output_created_listener;
Richard Hughesb24e48e2013-05-09 20:31:09 +010039};
40
41static void
42cms_output_created(struct cms_static *cms, struct weston_output *o)
43{
Richard Hughesb24e48e2013-05-09 20:31:09 +010044 struct weston_color_profile *p;
Kristian Høgsberg7bedae12013-05-23 16:06:56 -040045 struct weston_config_section *s;
46 char *profile;
Richard Hughesb24e48e2013-05-09 20:31:09 +010047
48 weston_log("cms-static: output %i [%s] created\n", o->id, o->name);
49
Kristian Høgsberg115b0f72013-05-26 21:30:14 -040050 if (o->name == NULL)
51 return;
Kristian Høgsberg7bedae12013-05-23 16:06:56 -040052 s = weston_config_get_section(cms->ec->config,
53 "output", "name", o->name);
54 if (s == NULL)
55 return;
56 if (weston_config_section_get_string(s, "icc_profile", &profile, NULL) < 0)
57 return;
58 p = weston_cms_load_profile(profile);
Mario Kleiner7e07db92015-07-18 08:10:58 +020059 if (p == NULL && strlen(profile) > 0) {
Kristian Høgsberg7bedae12013-05-23 16:06:56 -040060 weston_log("cms-static: failed to load %s\n", profile);
61 } else {
62 weston_log("cms-static: loading %s for %s\n",
Mario Kleiner7e07db92015-07-18 08:10:58 +020063 (p != NULL) ? profile : "identity LUT",
64 o->name);
Kristian Høgsberg7bedae12013-05-23 16:06:56 -040065 weston_cms_set_color_profile(o, p);
Richard Hughesb24e48e2013-05-09 20:31:09 +010066 }
67}
68
69static void
70cms_notifier_output_created(struct wl_listener *listener, void *data)
71{
72 struct weston_output *o = (struct weston_output *) data;
Kristian Høgsbergd7ab5b82013-05-21 11:44:22 -040073 struct cms_static *cms =
74 container_of(listener, struct cms_static, output_created_listener);
Richard Hughesb24e48e2013-05-09 20:31:09 +010075 cms_output_created(cms, o);
76}
77
78static void
79cms_module_destroy(struct cms_static *cms)
80{
Richard Hughesb24e48e2013-05-09 20:31:09 +010081 free(cms);
82}
83
84static void
85cms_notifier_destroy(struct wl_listener *listener, void *data)
86{
87 struct cms_static *cms = container_of(listener, struct cms_static, destroy_listener);
88 cms_module_destroy(cms);
89}
90
Richard Hughesb24e48e2013-05-09 20:31:09 +010091
92WL_EXPORT int
93module_init(struct weston_compositor *ec,
Ossama Othmana50e6e42013-05-14 09:48:26 -070094 int *argc, char *argv[])
Richard Hughesb24e48e2013-05-09 20:31:09 +010095{
96 struct cms_static *cms;
97 struct weston_output *output;
98
99 weston_log("cms-static: initialized\n");
100
101 /* create local state object */
Peter Huttererf3d62272013-08-08 11:57:05 +1000102 cms = zalloc(sizeof *cms);
Richard Hughesb24e48e2013-05-09 20:31:09 +0100103 if (cms == NULL)
104 return -1;
Richard Hughesb24e48e2013-05-09 20:31:09 +0100105
Kristian Høgsberg7bedae12013-05-23 16:06:56 -0400106 cms->ec = ec;
Richard Hughesb24e48e2013-05-09 20:31:09 +0100107 cms->destroy_listener.notify = cms_notifier_destroy;
108 wl_signal_add(&ec->destroy_signal, &cms->destroy_listener);
109
110 cms->output_created_listener.notify = cms_notifier_output_created;
111 wl_signal_add(&ec->output_created_signal, &cms->output_created_listener);
112
113 /* discover outputs */
114 wl_list_for_each(output, &ec->output_list, link)
115 cms_output_created(cms, output);
116
117 return 0;
118}