gst-plugin-spotify 0.15.0

GStreamer Spotify Plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
// Copyright (C) 2021-2024 Guillaume Desmottes <guillaume@desmottes.be>
//
// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0

use std::sync::{Arc, LazyLock, Mutex};

use futures::future::{AbortHandle, Abortable};
use tokio::runtime;

use gst::glib;
use gst::subclass::prelude::*;
use gst_base::prelude::*;
use gst_base::subclass::{base_src::CreateSuccess, prelude::*};

use librespot_core::SpotifyId;
use librespot_metadata::lyrics;

use crate::common::SetupThread;

static CAT: LazyLock<gst::DebugCategory> = LazyLock::new(|| {
    gst::DebugCategory::new(
        "spotifylyricssrc",
        gst::DebugColorFlags::empty(),
        Some("Spotify lyrics source"),
    )
});

static RUNTIME: LazyLock<runtime::Runtime> = LazyLock::new(|| {
    runtime::Builder::new_multi_thread()
        .enable_all()
        .worker_threads(1)
        .build()
        .unwrap()
});

#[derive(Default, Debug)]
struct Settings {
    common: crate::common::Settings,
    background_color: u32,
    highlight_text_color: u32,
    text_color: u32,
}

struct State {
    /// pending buffers, in reverse order so pop() produces the next one to push
    buffers: Vec<gst::Buffer>,
}

#[derive(Default)]
pub struct SpotifyLyricsSrc {
    setup_thread: Mutex<SetupThread>,
    state: Arc<Mutex<Option<State>>>,
    settings: Mutex<Settings>,
}

#[glib::object_subclass]
impl ObjectSubclass for SpotifyLyricsSrc {
    const NAME: &'static str = "GstSpotifyLyricsSrc";
    type Type = super::SpotifyLyricsSrc;
    type ParentType = gst_base::PushSrc;
}

impl ObjectImpl for SpotifyLyricsSrc {
    fn properties() -> &'static [glib::ParamSpec] {
        static PROPERTIES: LazyLock<Vec<glib::ParamSpec>> = LazyLock::new(|| {
            let mut props = crate::common::Settings::properties();

            props.push(
                glib::ParamSpecUInt::builder("background-color")
                    .nick("Background color")
                    .blurb("The background color of the lyrics, in ARGB")
                    .default_value(0)
                    .read_only()
                    .build(),
            );

            props.push(
                glib::ParamSpecUInt::builder("highlight-text-color")
                    .nick("Highlight Text color")
                    .blurb("The text color of the highlighted lyrics, in ARGB")
                    .default_value(0)
                    .read_only()
                    .build(),
            );

            props.push(
                glib::ParamSpecUInt::builder("text-color")
                    .nick("Text color")
                    .blurb("The text color of the lyrics, in ARGB")
                    .default_value(0)
                    .read_only()
                    .build(),
            );

            props
        });
        PROPERTIES.as_ref()
    }

    fn set_property(&self, _id: usize, value: &glib::Value, pspec: &glib::ParamSpec) {
        let mut settings = self.settings.lock().unwrap();
        settings.common.set_property(value, pspec);
    }

    fn property(&self, _id: usize, pspec: &glib::ParamSpec) -> glib::Value {
        let settings = self.settings.lock().unwrap();

        match pspec.name() {
            "background-color" => settings.background_color.to_value(),
            "highlight-text-color" => settings.highlight_text_color.to_value(),
            "text-color" => settings.text_color.to_value(),
            _ => settings.common.property(pspec),
        }
    }

    fn constructed(&self) {
        self.parent_constructed();

        self.obj().set_format(gst::Format::Time);
    }
}

impl GstObjectImpl for SpotifyLyricsSrc {}

impl ElementImpl for SpotifyLyricsSrc {
    fn metadata() -> Option<&'static gst::subclass::ElementMetadata> {
        static ELEMENT_METADATA: LazyLock<gst::subclass::ElementMetadata> = LazyLock::new(|| {
            gst::subclass::ElementMetadata::new(
                "Spotify lyrics source",
                "Source/Text",
                "Spotify lyrics source",
                "Guillaume Desmottes <guillaume@desmottes.be>",
            )
        });

        Some(&*ELEMENT_METADATA)
    }

    fn pad_templates() -> &'static [gst::PadTemplate] {
        static PAD_TEMPLATES: LazyLock<Vec<gst::PadTemplate>> = LazyLock::new(|| {
            let caps = gst::Caps::builder("text/x-raw")
                .field("format", "utf8")
                .build();

            let src_pad_template = gst::PadTemplate::new(
                "src",
                gst::PadDirection::Src,
                gst::PadPresence::Always,
                &caps,
            )
            .unwrap();

            vec![src_pad_template]
        });

        PAD_TEMPLATES.as_ref()
    }
}

impl BaseSrcImpl for SpotifyLyricsSrc {
    fn start(&self) -> Result<(), gst::ErrorMessage> {
        {
            let state = self.state.lock().unwrap();
            if state.is_some() {
                // already started
                return Ok(());
            }
        }

        {
            // If not started yet and not cancelled, start the setup
            let mut setup_thread = self.setup_thread.lock().unwrap();
            assert!(!matches!(&*setup_thread, SetupThread::Cancelled));
            if matches!(&*setup_thread, SetupThread::None) {
                self.start_setup(&mut setup_thread);
            }
        }

        Ok(())
    }

    fn stop(&self) -> Result<(), gst::ErrorMessage> {
        if let Some(_state) = self.state.lock().unwrap().take() {
            gst::debug!(CAT, imp = self, "stopping");
        }

        Ok(())
    }

    fn unlock(&self) -> Result<(), gst::ErrorMessage> {
        let mut setup_thread = self.setup_thread.lock().unwrap();
        setup_thread.abort();
        Ok(())
    }

    fn unlock_stop(&self) -> Result<(), gst::ErrorMessage> {
        let mut setup_thread = self.setup_thread.lock().unwrap();
        if matches!(&*setup_thread, SetupThread::Cancelled) {
            *setup_thread = SetupThread::None;
        }
        Ok(())
    }
}

impl PushSrcImpl for SpotifyLyricsSrc {
    fn create(
        &self,
        _buffer: Option<&mut gst::BufferRef>,
    ) -> Result<CreateSuccess, gst::FlowError> {
        let state_set = {
            let state = self.state.lock().unwrap();
            state.is_some()
        };

        if !state_set {
            // If not started yet and not cancelled, start the setup
            let mut setup_thread = self.setup_thread.lock().unwrap();
            if matches!(&*setup_thread, SetupThread::Cancelled) {
                return Err(gst::FlowError::Flushing);
            }

            if matches!(&*setup_thread, SetupThread::None) {
                self.start_setup(&mut setup_thread);
            }
        }

        {
            // wait for the setup to be completed
            let mut setup_thread = self.setup_thread.lock().unwrap();
            if let SetupThread::Pending {
                ref mut thread_handle,
                ..
            } = *setup_thread
            {
                let thread_handle = thread_handle.take().expect("Waiting multiple times");
                drop(setup_thread);
                let res = thread_handle.join().unwrap();

                match res {
                    Err(_aborted) => {
                        gst::debug!(CAT, imp = self, "setup has been cancelled");
                        setup_thread = self.setup_thread.lock().unwrap();
                        *setup_thread = SetupThread::Cancelled;
                        return Err(gst::FlowError::Flushing);
                    }
                    Ok(Err(err)) => {
                        gst::error!(CAT, imp = self, "failed to start: {err:?}");
                        gst::element_imp_error!(self, gst::ResourceError::Settings, ["{err:?}"]);
                        setup_thread = self.setup_thread.lock().unwrap();
                        *setup_thread = SetupThread::None;
                        return Err(gst::FlowError::Error);
                    }
                    Ok(Ok(_)) => {
                        setup_thread = self.setup_thread.lock().unwrap();
                        *setup_thread = SetupThread::Done;
                    }
                }
            }
        }

        let mut state = self.state.lock().unwrap();
        let state = state.as_mut().unwrap();

        match state.buffers.pop() {
            Some(buffer) => {
                gst::log!(CAT, imp = self, "created {:?}", buffer);
                Ok(CreateSuccess::NewBuffer(buffer))
            }
            None => {
                gst::debug!(CAT, imp = self, "eos");
                Err(gst::FlowError::Eos)
            }
        }
    }
}

impl SpotifyLyricsSrc {
    fn start_setup(&self, setup_thread: &mut SetupThread) {
        assert!(matches!(setup_thread, SetupThread::None));

        let self_ = self.to_owned();

        // run the runtime from another thread to prevent the "start a runtime from within a runtime" panic
        // when the plugin is statically linked.
        let (abort_handle, abort_registration) = AbortHandle::new_pair();
        let thread_handle = std::thread::spawn(move || {
            RUNTIME.block_on(async move {
                let future = Abortable::new(self_.setup(), abort_registration);
                future.await
            })
        });

        *setup_thread = SetupThread::Pending {
            thread_handle: Some(thread_handle),
            abort_handle,
        };
    }
    async fn setup(&self) -> anyhow::Result<()> {
        {
            let state = self.state.lock().unwrap();

            if state.is_some() {
                // already setup
                return Ok(());
            }
        }

        let src = self.obj();

        let (session, track_id) = {
            let common = {
                let settings = self.settings.lock().unwrap();
                settings.common.clone()
            };

            let session = common.connect_session(src.clone(), &CAT).await?;
            let track_id = SpotifyId::from_base62(&common.track_uri()?.to_id()?);

            (session, track_id)
        };

        let track_id_unpacked = track_id?;
        let reply = lyrics::Lyrics::get(&session, &track_id_unpacked)
            .await
            .map_err(|e| {
                anyhow::anyhow!(
                    "failed to get lyrics for track {} ({})",
                    track_id_unpacked,
                    e
                )
            })?;

        gst::debug!(
            CAT,
            imp = self,
            "got lyrics for track {}",
            track_id_unpacked
        );

        match reply.lyrics.sync_type {
            lyrics::SyncType::Unsynced => {
                // lyrics are not synced so we can't generate timestamps
                anyhow::bail!("lyrics are not synced")
            }
            lyrics::SyncType::LineSynced => {}
        }

        let mut buffers = vec![];

        // create all pending buffers, in reverse order.
        let mut lines = reply.lyrics.lines.into_iter().rev();

        // The last line is always empty as it's meant to calculate the last actual line duration,
        // so we can safely ignore it.
        if let Some(last_line) = lines.next() {
            // ts of the next buffer in chronological order, so the previous one when iterating
            let mut next_ts = start_time(&last_line)?;

            for line in lines {
                let ts = start_time(&line)?;
                // skip consecutive empty lines
                if !line.words.is_empty() {
                    let txt = line.words;
                    let duration = next_ts - ts;

                    gst::trace!(CAT, imp = self, "{}: {} (duration: {})", ts, txt, duration);

                    let mut buffer = gst::Buffer::from_slice(txt);
                    {
                        let buffer = buffer.get_mut().unwrap();

                        buffer.set_pts(ts);
                        buffer.set_duration(duration);
                    }

                    buffers.push(buffer);
                    next_ts = ts;
                }
            }
        } else {
            // no lyrics
        }

        // update color properties
        {
            let mut settings = self.settings.lock().unwrap();
            settings.background_color = reply.colors.background as u32;
            settings.highlight_text_color = reply.colors.highlight_text as u32;
            settings.text_color = reply.colors.text as u32;
        }
        self.obj().notify("background-color");
        self.obj().notify("highlight-text-color");
        self.obj().notify("text-color");

        let mut state = self.state.lock().unwrap();
        state.replace(State { buffers });

        Ok(())
    }
}

fn start_time(line: &lyrics::Line) -> anyhow::Result<gst::ClockTime> {
    let ms = line.start_time_ms.parse()?;
    let ts = gst::ClockTime::from_mseconds(ms);
    Ok(ts)
}