Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2013 Richard Hughes |
| 3 | * |
Bryce Harrington | a0bbfea | 2015-06-11 15:35:43 -0700 | [diff] [blame] | 4 | * 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 Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 11 | * |
Bryce Harrington | a0bbfea | 2015-06-11 15:35:43 -0700 | [diff] [blame] | 12 | * 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 Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 24 | */ |
| 25 | |
Daniel Stone | c228e23 | 2013-05-22 18:03:19 +0300 | [diff] [blame] | 26 | #include "config.h" |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 27 | |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 28 | #include <stdlib.h> |
| 29 | #include <string.h> |
| 30 | |
| 31 | #include "compositor.h" |
| 32 | #include "cms-helper.h" |
Jon Cruz | 867d50e | 2015-06-15 15:37:10 -0700 | [diff] [blame] | 33 | #include "shared/helpers.h" |
Giulio Camuffo | d52f3b7 | 2016-06-02 21:48:11 +0300 | [diff] [blame] | 34 | #include "weston.h" |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 35 | |
| 36 | struct cms_static { |
| 37 | struct weston_compositor *ec; |
| 38 | struct wl_listener destroy_listener; |
| 39 | struct wl_listener output_created_listener; |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | static void |
| 43 | cms_output_created(struct cms_static *cms, struct weston_output *o) |
| 44 | { |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 45 | struct weston_color_profile *p; |
Kristian Høgsberg | 7bedae1 | 2013-05-23 16:06:56 -0400 | [diff] [blame] | 46 | struct weston_config_section *s; |
| 47 | char *profile; |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 48 | |
| 49 | weston_log("cms-static: output %i [%s] created\n", o->id, o->name); |
| 50 | |
Kristian Høgsberg | 115b0f7 | 2013-05-26 21:30:14 -0400 | [diff] [blame] | 51 | if (o->name == NULL) |
| 52 | return; |
Giulio Camuffo | d52f3b7 | 2016-06-02 21:48:11 +0300 | [diff] [blame] | 53 | s = weston_config_get_section(wet_get_config(cms->ec), |
Kristian Høgsberg | 7bedae1 | 2013-05-23 16:06:56 -0400 | [diff] [blame] | 54 | "output", "name", o->name); |
| 55 | if (s == NULL) |
| 56 | return; |
| 57 | if (weston_config_section_get_string(s, "icc_profile", &profile, NULL) < 0) |
| 58 | return; |
| 59 | p = weston_cms_load_profile(profile); |
Mario Kleiner | 7e07db9 | 2015-07-18 08:10:58 +0200 | [diff] [blame] | 60 | if (p == NULL && strlen(profile) > 0) { |
Kristian Høgsberg | 7bedae1 | 2013-05-23 16:06:56 -0400 | [diff] [blame] | 61 | weston_log("cms-static: failed to load %s\n", profile); |
| 62 | } else { |
| 63 | weston_log("cms-static: loading %s for %s\n", |
Mario Kleiner | 7e07db9 | 2015-07-18 08:10:58 +0200 | [diff] [blame] | 64 | (p != NULL) ? profile : "identity LUT", |
| 65 | o->name); |
Kristian Høgsberg | 7bedae1 | 2013-05-23 16:06:56 -0400 | [diff] [blame] | 66 | weston_cms_set_color_profile(o, p); |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 67 | } |
| 68 | } |
| 69 | |
| 70 | static void |
| 71 | cms_notifier_output_created(struct wl_listener *listener, void *data) |
| 72 | { |
| 73 | struct weston_output *o = (struct weston_output *) data; |
Kristian Høgsberg | d7ab5b8 | 2013-05-21 11:44:22 -0400 | [diff] [blame] | 74 | struct cms_static *cms = |
| 75 | container_of(listener, struct cms_static, output_created_listener); |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 76 | cms_output_created(cms, o); |
| 77 | } |
| 78 | |
| 79 | static void |
| 80 | cms_module_destroy(struct cms_static *cms) |
| 81 | { |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 82 | free(cms); |
| 83 | } |
| 84 | |
| 85 | static void |
| 86 | cms_notifier_destroy(struct wl_listener *listener, void *data) |
| 87 | { |
| 88 | struct cms_static *cms = container_of(listener, struct cms_static, destroy_listener); |
| 89 | cms_module_destroy(cms); |
| 90 | } |
| 91 | |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 92 | |
| 93 | WL_EXPORT int |
Quentin Glidic | 8af2bec | 2016-12-02 14:21:46 +0100 | [diff] [blame] | 94 | wet_module_init(struct weston_compositor *ec, |
| 95 | int *argc, char *argv[]) |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 96 | { |
| 97 | struct cms_static *cms; |
| 98 | struct weston_output *output; |
| 99 | |
| 100 | weston_log("cms-static: initialized\n"); |
| 101 | |
| 102 | /* create local state object */ |
Peter Hutterer | f3d6227 | 2013-08-08 11:57:05 +1000 | [diff] [blame] | 103 | cms = zalloc(sizeof *cms); |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 104 | if (cms == NULL) |
| 105 | return -1; |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 106 | |
Kristian Høgsberg | 7bedae1 | 2013-05-23 16:06:56 -0400 | [diff] [blame] | 107 | cms->ec = ec; |
Richard Hughes | b24e48e | 2013-05-09 20:31:09 +0100 | [diff] [blame] | 108 | cms->destroy_listener.notify = cms_notifier_destroy; |
| 109 | wl_signal_add(&ec->destroy_signal, &cms->destroy_listener); |
| 110 | |
| 111 | cms->output_created_listener.notify = cms_notifier_output_created; |
| 112 | wl_signal_add(&ec->output_created_signal, &cms->output_created_listener); |
| 113 | |
| 114 | /* discover outputs */ |
| 115 | wl_list_for_each(output, &ec->output_list, link) |
| 116 | cms_output_created(cms, output); |
| 117 | |
| 118 | return 0; |
| 119 | } |