cranpose 0.1.97

Cranpose runtime and UI facade
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
//! iOS media playback via `AVAudioPlayer`, `AVAudioSession` and the
//! MediaPlayer framework.
//!
//! Three iOS pieces stand behind the one framework contract:
//!
//! * `AVAudioPlayer` opens and plays the item. It takes a local file, which is
//!   what the framework's desktop backend takes too; a network item belongs to
//!   `AVPlayer` and is reported as
//!   [`MediaError::UnsupportedSource`](cranpose_services::MediaError::UnsupportedSource)
//!   rather than downloaded first.
//! * `AVAudioSession` says when something else needs the output. Its
//!   interruption notification is what the framework's audio-focus policy runs
//!   on, so a call pauses playback and hanging up resumes it without an
//!   application writing a line.
//! * `MPNowPlayingInfoCenter` and `MPRemoteCommandCenter` are the lock screen:
//!   what it shows, and the buttons on it coming back as
//!   [`MediaCommand`](cranpose_services::MediaCommand)s.
//!
//! Analysis samples are not offered. `AVAudioPlayer`'s metering gives an
//! average and a peak per channel, not the samples a visualiser draws, and
//! reporting [`MediaCapabilities::analysis`] as `false` is better than
//! publishing something else under that name.

#![allow(unsafe_code)]

use block2::RcBlock;
use cranpose_services::{
    publish_audio_focus, publish_media_command, publish_playback_progress, publish_playback_state,
    set_platform_media_player, AudioFocus, MediaCapabilities, MediaCommand, MediaError, MediaItem,
    MediaMetadata, MediaPlayer, PlaybackProgress, PlaybackState,
};
use objc2::rc::Retained;
use objc2::runtime::{AnyObject, ProtocolObject};
use objc2::{define_class, msg_send, sel, AllocAnyThread};
use objc2_avf_audio::{
    AVAudioPlayer, AVAudioPlayerDelegate, AVAudioSession, AVAudioSessionCategoryPlayback,
    AVAudioSessionInterruptionNotification, AVAudioSessionInterruptionOptionKey,
    AVAudioSessionInterruptionOptions, AVAudioSessionInterruptionType,
    AVAudioSessionInterruptionTypeKey,
};
use objc2_foundation::{
    NSDictionary, NSNotification, NSNotificationCenter, NSNumber, NSObject, NSObjectProtocol,
    NSString, NSURL,
};
use objc2_media_player::{
    MPChangePlaybackPositionCommandEvent, MPMediaItemPropertyAlbumTitle, MPMediaItemPropertyArtist,
    MPMediaItemPropertyPlaybackDuration, MPMediaItemPropertyTitle, MPNowPlayingInfoCenter,
    MPNowPlayingInfoPropertyElapsedPlaybackTime, MPNowPlayingInfoPropertyPlaybackRate,
    MPRemoteCommandCenter, MPRemoteCommandEvent, MPRemoteCommandHandlerStatus,
};
use std::sync::atomic::{AtomicBool, AtomicU64, Ordering};
use std::sync::{Arc, Mutex, OnceLock};
use std::time::Duration;

/// How often the position is published while something plays.
const PROGRESS_INTERVAL: Duration = Duration::from_millis(250);

/// The open item and the objects iOS holds it in.
///
/// `AVAudioPlayer` is touched from the transport — the composition's thread —
/// and read by the progress thread, which only asks it for its position. The
/// mutex is what serialises the two; marking the holder `Send` is what lets it
/// live behind one.
struct PlayerHolder {
    player: Retained<AVAudioPlayer>,
    _delegate: Retained<EndDelegate>,
    duration: Option<Duration>,
}

unsafe impl Send for PlayerHolder {}

fn player_slot() -> &'static Mutex<Option<PlayerHolder>> {
    static SLOT: OnceLock<Mutex<Option<PlayerHolder>>> = OnceLock::new();
    SLOT.get_or_init(|| Mutex::new(None))
}

/// Bumped whenever a session starts or ends, so the progress thread of a
/// session that is over knows to exit.
static GENERATION: AtomicU64 = AtomicU64::new(0);
static VOLUME: Mutex<f32> = Mutex::new(1.0);
static SPEED: Mutex<f32> = Mutex::new(1.0);
static LOOPING: AtomicBool = AtomicBool::new(false);

/// Installs iOS as the platform media player.
pub(crate) fn register() {
    configure_audio_session();
    install_interruption_observer();
    install_remote_commands();
    set_platform_media_player(Arc::new(IosMediaPlayer));
}

struct IosMediaPlayer;

// --- The audio session --------------------------------------------------------

fn configure_audio_session() {
    unsafe {
        let session = AVAudioSession::sharedInstance();
        if let Some(category) = AVAudioSessionCategoryPlayback {
            if let Err(error) = session.setCategory_error(category) {
                log::warn!("cranpose: iOS audio session category refused: {error:?}");
            }
        }
    }
}

fn activate_audio_session(active: bool) {
    unsafe {
        if let Err(error) = AVAudioSession::sharedInstance().setActive_error(active) {
            log::warn!("cranpose: iOS audio session activation refused: {error:?}");
        }
    }
}

define_class!(
    #[unsafe(super(NSObject))]
    #[name = "CranposeMediaObserver"]
    #[ivars = ()]
    struct SessionObserver;

    unsafe impl NSObjectProtocol for SessionObserver {}

    impl SessionObserver {
        /// Something else took the output, or gave it back.
        ///
        /// The framework's policy decides what that means for playback; this
        /// only translates iOS's vocabulary into it.
        #[unsafe(method(cranposeAudioSessionInterrupted:))]
        fn interrupted(&self, notification: &NSNotification) {
            let Some(info) = notification.userInfo() else {
                return;
            };
            let Some(kind) = number_for_key(&info, unsafe { AVAudioSessionInterruptionTypeKey })
            else {
                return;
            };
            let kind = AVAudioSessionInterruptionType(kind.unsignedLongValue() as usize);
            if kind == AVAudioSessionInterruptionType::Began {
                publish_audio_focus(AudioFocus::LostTransient);
                return;
            }
            // An interruption that ends without `ShouldResume` is one the
            // system does not want followed by sound — an alarm the user is
            // still looking at. Reporting it as a permanent loss is what stops
            // the framework resuming into it.
            let resume = number_for_key(&info, unsafe { AVAudioSessionInterruptionOptionKey })
                .map(|options| {
                    AVAudioSessionInterruptionOptions(options.unsignedLongValue() as usize)
                        .contains(AVAudioSessionInterruptionOptions::ShouldResume)
                })
                .unwrap_or(false);
            if resume {
                activate_audio_session(true);
                publish_audio_focus(AudioFocus::Gained);
            } else {
                publish_audio_focus(AudioFocus::Lost);
            }
        }
    }
);

impl SessionObserver {
    fn new() -> Retained<Self> {
        let this = Self::alloc().set_ivars(());
        unsafe { msg_send![super(this), init] }
    }
}

fn number_for_key(
    info: &NSDictionary,
    key: Option<&'static NSString>,
) -> Option<Retained<NSNumber>> {
    let value = info.objectForKey(key?)?;
    value.downcast::<NSNumber>().ok()
}

fn install_interruption_observer() {
    static OBSERVER: OnceLock<SendRetained<SessionObserver>> = OnceLock::new();
    let observer = OBSERVER.get_or_init(|| SendRetained(SessionObserver::new()));
    let Some(name) = (unsafe { AVAudioSessionInterruptionNotification }) else {
        return;
    };
    unsafe {
        NSNotificationCenter::defaultCenter().addObserver_selector_name_object(
            &observer.0,
            sel!(cranposeAudioSessionInterrupted:),
            Some(name),
            None,
        );
    }
}

/// An Objective-C object held for the life of the process.
///
/// The observer is registered once and never removed, and the notification
/// centre only ever calls it on the main thread; the wrapper is what lets a
/// `static` hold it.
struct SendRetained<T: ?Sized>(Retained<T>);

unsafe impl<T: ?Sized> Send for SendRetained<T> {}
unsafe impl<T: ?Sized> Sync for SendRetained<T> {}

// --- The lock screen ----------------------------------------------------------

fn install_remote_commands() {
    unsafe {
        let center = MPRemoteCommandCenter::sharedCommandCenter();
        for (command, action) in [
            (center.playCommand(), MediaCommand::Play),
            (center.pauseCommand(), MediaCommand::Pause),
            (
                center.togglePlayPauseCommand(),
                MediaCommand::TogglePlayPause,
            ),
            (center.stopCommand(), MediaCommand::Stop),
            (center.nextTrackCommand(), MediaCommand::Next),
            (center.previousTrackCommand(), MediaCommand::Previous),
        ] {
            let handler = RcBlock::new(
                move |_event: std::ptr::NonNull<MPRemoteCommandEvent>| -> MPRemoteCommandHandlerStatus {
                    publish_media_command(action);
                    MPRemoteCommandHandlerStatus::Success
                },
            );
            command.setEnabled(true);
            let _ = command.addTargetWithHandler(&handler);
        }

        let seek = center.changePlaybackPositionCommand();
        let handler = RcBlock::new(
            move |event: std::ptr::NonNull<MPRemoteCommandEvent>| -> MPRemoteCommandHandlerStatus {
                let event = event.as_ref();
                let Some(event) = event.downcast_ref::<MPChangePlaybackPositionCommandEvent>()
                else {
                    return MPRemoteCommandHandlerStatus::CommandFailed;
                };
                let seconds = event.positionTime();
                if !seconds.is_finite() || seconds < 0.0 {
                    return MPRemoteCommandHandlerStatus::CommandFailed;
                }
                publish_media_command(MediaCommand::SeekTo(Duration::from_secs_f64(seconds)));
                MPRemoteCommandHandlerStatus::Success
            },
        );
        seek.setEnabled(true);
        let _ = seek.addTargetWithHandler(&handler);
    }
}

fn publish_now_playing(metadata: &MediaMetadata, position: Duration, rate: f32) {
    unsafe {
        let title = NSString::from_str(&metadata.title);
        let artist = NSString::from_str(&metadata.artist);
        let album = NSString::from_str(&metadata.album);
        let duration = NSNumber::new_f64(
            metadata
                .duration
                .map(|duration| duration.as_secs_f64())
                .unwrap_or(0.0),
        );
        let elapsed = NSNumber::new_f64(position.as_secs_f64());
        let rate = NSNumber::new_f32(rate);

        let keys: [&NSString; 6] = [
            MPMediaItemPropertyTitle,
            MPMediaItemPropertyArtist,
            MPMediaItemPropertyAlbumTitle,
            MPMediaItemPropertyPlaybackDuration,
            MPNowPlayingInfoPropertyElapsedPlaybackTime,
            MPNowPlayingInfoPropertyPlaybackRate,
        ];
        let values: [&AnyObject; 6] = [
            title.as_ref(),
            artist.as_ref(),
            album.as_ref(),
            duration.as_ref(),
            elapsed.as_ref(),
            rate.as_ref(),
        ];
        let info = NSDictionary::from_slices(&keys, &values);
        MPNowPlayingInfoCenter::defaultCenter().setNowPlayingInfo(Some(&info));
    }
}

// --- The item -----------------------------------------------------------------

define_class!(
    #[unsafe(super(NSObject))]
    #[name = "CranposeMediaEndDelegate"]
    #[ivars = ()]
    struct EndDelegate;

    unsafe impl NSObjectProtocol for EndDelegate {}

    unsafe impl AVAudioPlayerDelegate for EndDelegate {
        #[unsafe(method(audioPlayerDidFinishPlaying:successfully:))]
        unsafe fn did_finish(&self, _player: &AVAudioPlayer, successfully: bool) {
            // A looping player never reports finishing, so reaching here means
            // the item is over — or that decoding gave up part way through.
            if successfully {
                publish_end_of_item();
            } else {
                publish_playback_state(PlaybackState::Failed(MediaError::Failed(
                    "playback stopped part way through the item".to_string(),
                )));
            }
        }
    }
);

impl EndDelegate {
    fn new() -> Retained<Self> {
        let this = Self::alloc().set_ivars(());
        unsafe { msg_send![super(this), init] }
    }
}

fn publish_end_of_item() {
    if let Some(duration) = duration_of_open_item() {
        publish_playback_progress(PlaybackProgress::new(duration, duration));
    }
    GENERATION.fetch_add(1, Ordering::AcqRel);
    publish_playback_state(PlaybackState::Ended);
}

fn duration_of_open_item() -> Option<Duration> {
    player_slot()
        .lock()
        .ok()
        .and_then(|holder| holder.as_ref().and_then(|holder| holder.duration))
}

/// The URL an item addresses, or `None` for anything that is not a local file.
fn url_for(uri: &str) -> Option<Retained<NSURL>> {
    let path = cranpose_services::media::path_from_uri(uri)?;
    let path = path.to_str()?;
    Some(NSURL::fileURLWithPath(&NSString::from_str(path)))
}

fn progress_at(position: Duration, duration: Option<Duration>) -> PlaybackProgress {
    PlaybackProgress {
        position,
        duration,
        // A local file is entirely on disk, so it is entirely buffered.
        buffered: duration.unwrap_or(position),
    }
}

fn start_progress_thread() {
    let generation = GENERATION.fetch_add(1, Ordering::AcqRel) + 1;
    let spawned = std::thread::Builder::new()
        .name("cranpose-media-progress".to_string())
        .spawn(move || loop {
            std::thread::sleep(PROGRESS_INTERVAL);
            if GENERATION.load(Ordering::Acquire) != generation {
                return;
            }
            // Read and release before publishing: an observer reacting to the
            // position calls straight back into the transport, and would meet
            // this lock on the way in.
            let Some((position, duration)) = observe_position() else {
                return;
            };
            publish_playback_progress(progress_at(position, duration));
        });
    if let Err(error) = spawned {
        log::warn!("cranpose: no iOS media progress thread: {error}");
    }
}

fn observe_position() -> Option<(Duration, Option<Duration>)> {
    let holder = player_slot().lock().ok()?;
    let holder = holder.as_ref()?;
    Some((
        Duration::from_secs_f64(unsafe { holder.player.currentTime() }.max(0.0)),
        holder.duration,
    ))
}

fn with_player<R>(action: impl FnOnce(&AVAudioPlayer) -> R) -> Option<R> {
    let holder = player_slot().lock().ok()?;
    let holder = holder.as_ref()?;
    Some(action(&holder.player))
}

impl MediaPlayer for IosMediaPlayer {
    fn capabilities(&self) -> MediaCapabilities {
        MediaCapabilities {
            seeking: true,
            speed: true,
            looping: true,
            analysis: false,
            session: true,
            // Building an `AVAudioPlayer` reads the container's duration; no
            // output route is claimed until something is played.
            probing: true,
            // `AVAudioPlayer` plays a file to the output; shaping it needs an
            // `AVAudioEngine` graph, which this backend does not build.
            equalizer: false,
        }
    }

    fn probe_duration(&self, item: &MediaItem) -> Option<Duration> {
        let url = url_for(&item.uri)?;
        let player =
            unsafe { AVAudioPlayer::initWithContentsOfURL_error(AVAudioPlayer::alloc(), &url) }
                .ok()?;
        let duration = unsafe { player.duration() };
        (duration.is_finite() && duration > 0.0).then(|| Duration::from_secs_f64(duration))
    }

    fn prepare(&self, item: &MediaItem) -> Result<(), MediaError> {
        self.stop();
        let url =
            url_for(&item.uri).ok_or_else(|| MediaError::UnsupportedSource(item.uri.clone()))?;
        let player =
            unsafe { AVAudioPlayer::initWithContentsOfURL_error(AVAudioPlayer::alloc(), &url) }
                .map_err(|error| MediaError::Failed(format!("{error:?}")))?;
        let delegate = EndDelegate::new();
        let duration = unsafe { player.duration() };
        let duration = (duration.is_finite() && duration > 0.0)
            .then(|| Duration::from_secs_f64(duration))
            .or(item.metadata.duration);
        unsafe {
            player.setDelegate(Some(ProtocolObject::from_ref(&*delegate)));
            player.setEnableRate(true);
            player.setVolume(*VOLUME.lock().unwrap_or_else(|error| error.into_inner()));
            player.setRate(*SPEED.lock().unwrap_or_else(|error| error.into_inner()));
            player.setNumberOfLoops(if LOOPING.load(Ordering::Acquire) {
                -1
            } else {
                0
            });
            player.prepareToPlay();
        }
        if let Ok(mut slot) = player_slot().lock() {
            *slot = Some(PlayerHolder {
                player,
                _delegate: delegate,
                duration,
            });
        }
        publish_playback_progress(progress_at(Duration::ZERO, duration));
        publish_playback_state(PlaybackState::Paused);
        publish_now_playing(&item.metadata, Duration::ZERO, 0.0);
        Ok(())
    }

    fn play(&self) -> Result<(), MediaError> {
        let started =
            with_player(|player| unsafe { player.play() }).ok_or(MediaError::NothingLoaded)?;
        if !started {
            return Err(MediaError::Failed(
                "the audio session refused to start the item".to_string(),
            ));
        }
        activate_audio_session(true);
        start_progress_thread();
        publish_playback_state(PlaybackState::Playing);
        Ok(())
    }

    fn pause(&self) {
        with_player(|player| unsafe { player.pause() });
        GENERATION.fetch_add(1, Ordering::AcqRel);
        publish_playback_state(PlaybackState::Paused);
    }

    fn stop(&self) {
        GENERATION.fetch_add(1, Ordering::AcqRel);
        if let Ok(mut slot) = player_slot().lock() {
            if let Some(holder) = slot.take() {
                unsafe {
                    holder.player.stop();
                    holder.player.setDelegate(None);
                }
            }
        }
        unsafe {
            MPNowPlayingInfoCenter::defaultCenter().setNowPlayingInfo(None);
        }
        activate_audio_session(false);
    }

    fn seek_to(&self, position: Duration) -> Result<(), MediaError> {
        let duration = duration_of_open_item();
        with_player(|player| unsafe { player.setCurrentTime(position.as_secs_f64()) })
            .ok_or(MediaError::NothingLoaded)?;
        publish_playback_progress(progress_at(position, duration));
        Ok(())
    }

    fn set_volume(&self, volume: f32) {
        let volume = volume.clamp(0.0, 1.0);
        *VOLUME.lock().unwrap_or_else(|error| error.into_inner()) = volume;
        with_player(|player| unsafe { player.setVolume(volume) });
    }

    fn set_speed(&self, speed: f32) -> bool {
        let speed = speed.clamp(0.25, 4.0);
        *SPEED.lock().unwrap_or_else(|error| error.into_inner()) = speed;
        with_player(|player| unsafe { player.setRate(speed) });
        true
    }

    fn set_looping(&self, looping: bool) {
        LOOPING.store(looping, Ordering::Release);
        with_player(|player| unsafe {
            player.setNumberOfLoops(if looping { -1 } else { 0 });
        });
    }

    fn set_session_metadata(&self, metadata: &MediaMetadata) {
        let position =
            with_player(|player| Duration::from_secs_f64(unsafe { player.currentTime() }.max(0.0)))
                .unwrap_or_default();
        let rate = with_player(|player| {
            if unsafe { player.isPlaying() } {
                unsafe { player.rate() }
            } else {
                0.0
            }
        })
        .unwrap_or(0.0);
        let mut metadata = metadata.clone();
        if metadata.duration.is_none() {
            metadata.duration = duration_of_open_item();
        }
        publish_now_playing(&metadata, position, rate);
    }
}