vidi/pipelines/
uvc.rs

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
/*
 * SPDX-FileCopyrightText: 2023 Purism, SPC <https://puri.sm>
 * SPDX-FileCopyrightText: 2024 DorotaC
 *
 * SPDX-License-Identifier: MPL-2.0 OR LGPL-2.1-or-later
 */

/*! UVC (USB) cameras.

This doesn't actually have any UVC-specific functionality and the API is currently a mistake.

In the future, this should only control the special UVC controls processing and nothing else.
Meaning: the device and sensor trickery don't need to be here.*/

// FIXME: move generic v4l2 handling to `super` module. But maybe after having more drivers to understand what interfaces need to be exposed.

use crate::actors::camera_list::CreationKit;
use crate::actors::watcher_udev::Device;
use crate::{pipelines, search};
use crate::util::flock::Locked;
use crate::util::media;
use media_subsystem::{MediaV2Entity, EntityName};
use parking_lot::Mutex;
use std::error::Error;
use std::io;
use std::ops::DerefMut;
use std::sync::Arc;
use super::CameraInfo;
use tracing::debug;
use v4l;


struct CameraDevice {
    // TODO: the media device is not a video capture device.
    device: media::Device,
    sensor_id: media_subsystem::EntityId,
}

impl super::UnacquiredCameraImpl for CameraDevice {
    fn acquire(self: Box<Self>)
        -> Result<
            Arc<Mutex<dyn super::CameraImpl>>,
            Box<dyn Error>,
        >
    {
        let topology = self.device.get_topology()?;
        // FIXME: acquire the sensor and all other entities in the pipeline as well
        // FIXME: don't lock the entire media device. Let other applications take pipelines on the same device in parallel
        if let Ok(device) = self.device.try_lock() {
            let sensor_entity = topology.0.entities.iter()
                .find(|e| e.id == self.sensor_id).unwrap()
                .clone();

            let database = search::TopologyDatabase::<_>::new(&topology);
            let interfaces = search::video_capture_interfaces(
                &mut media::Io,
                &database,
                self.sensor_id,
            );
            let interface = interfaces.get(0)
                .ok_or(io::Error::other("No video capture interfaces. Did one disappear?"))?;
            let video_capture_entity = search::entity_for_interface(&database, interface.id)
                .expect("One must exist, because we find the interface from the entity in the first place.")
                .clone();
            let video_capture_device = v4l::Device::with_path(media::Io.interface_find_path(interface)?)?;
            Ok(Arc::new(Mutex::new(Camera {
                device,
                video_capture_device,
                video_capture_entity,
                sensor_entity,
            })))
        } else {
            Err(Box::new(super::AcquireError::AlreadyAcquired))
        }
    }
}

// TODO: store all devices used in the image path
struct Camera {
    /// Keeps the media device exclusively acquired for modification.
    // TODO: multiple cameras may use the same media device with dferent paths (IPU3), so locking must be redesigned
    device: Locked<media::Device>,
    video_capture_device: v4l::Device,
    video_capture_entity: MediaV2Entity,
    sensor_entity: MediaV2Entity,
    // TODO: sensor_device: mediia::Device,
}

impl super::CameraImpl for Camera {
    fn video_capture_device(&self) -> &v4l::Device {
        &self.video_capture_device
    }
    /*
    fn get_knowledge(&self) -> Result<Knowledge, io::Error> {
        let topology = self._device.get_topology()?;
        let database = 
    }*/
    fn media_device(&self) -> &media::Device {
        &self.device
    }
    fn media_device_mut(&mut self) -> &mut media::Device {
        self.device.deref_mut()
    }
    
    
    fn video_capture_entity(&self) -> &MediaV2Entity {
        &self.video_capture_entity
    }
    fn sensor_entity(&self) -> &MediaV2Entity {
        &self.sensor_entity
    }
}

macro_rules! try_soft {
    ($result:expr, $debug:expr) => {
        match $result {
            Ok(r) => r,
            Err(e) => {
                $debug(e);
                return Vec::new();
            }
        }
    };
}

pub fn check_match(device: &Device) -> Vec<CreationKit> {
    let device_path = device.device_node.as_ref();
    let device_path = if let Some(device_path) = device_path {
        device_path
    } else {
        debug!("Device without a node path: {:?}", device);
        return Vec::new();
    };
    
    let d = try_soft!(media::Device::new(device_path), |e| debug!(
        "Failed to open device {:?}: {:?}",
        device_path,
        e,
    ));
    let deviceinfo = try_soft!(d.get_device_info(), |e| debug!(
        "Not a media device {:?}: {:?}",
        device_path,
        e,
    ));
    let mediadevice = d;

    let topology = try_soft!(mediadevice.get_topology(), |e| debug!(
        "Failed to get topology for {:?}: {:?}",
        device_path,
        e,
    ));
    topology.get_sensors()
        .filter_map(|sensor| {
            let database = search::TopologyDatabase::<_>::new(&topology);
            let mut outputs = search::outputs(&database, sensor.id).into_iter();
            if let Some(output) = outputs.next() {
                if let Some(_) = outputs.next() {
                    debug!("Taking first output from sensor {:?}", sensor);
                }
                Some((sensor, output))
            } else {
                debug!("No output found from sensor {:?}", sensor);
                None
            }
        })
        .map(|(sensor, _output)| CreationKit {
            info: CameraInfo {
                device: device.clone(),
             // FIXME: placing ":" in device name and sensor name could cause duplicates
                id: format!(
                    "{}:{}:{:0x}:{}",
                    deviceinfo.get_driver(),
                    deviceinfo.get_device(),
                    device.stable_id(),
                    // FIXME: convert name to hex if raw
                    match &sensor.name {
                        EntityName::Text(s) => s.as_str(),
                        EntityName::Bytes(_) => "",
                    },
                ),
                sensor: sensor.name.clone(),
            },
            builder: build,
        })
        .collect()
}

pub fn build(camera: CameraInfo)
    -> Result<pipelines::UnacquiredCamera, Box<dyn Error>>
{
    let device = media::Device::new(
        camera.device
            .device_node.as_ref()
            .unwrap() // Devices without a node name don't pass check_match.
    )?;
    
    let topology = device.get_topology()?;
    let sensor = topology.0
        .entities.iter()
        .find(|e| e.name == camera.sensor)
        .ok_or(io::Error::other("No sensor with this name. Did it disappear?"))?;
    
    Ok(pipelines::UnacquiredCamera {
        device: Box::new(CameraDevice {
            device,
            sensor_id: sensor.id,
        }),
        id: camera.id,
    })
}