1pub(crate) const MODELS: [(&'static str, &'static str, u32, &'static str); 70] = [
6 ("0002", "000a", 400, "PS/2 IBM Trackpoint"),
8 ("004c", "0269", 1780, "Apple magicmouse 2"),
10 ("03f0", "0490", 800, "HP HyperX Pulsefire Surge RGB"),
12 ("03f0", "0b97", 800, "HyperX Pulsefire Haste 2"),
13 ("03f0", "0d8f", 800, "HP HyperX Pulsefire Core RGB"),
14 ("03f0", "0f8f", 800, "HP HyperX Pulsefire Haste"),
15 ("045e", "0024", 800, "Microsoft Corp. Trackball Explorer*"),
17 ("045e", "0040", 416, "Microsoft Corp. Wheel Mouse Optical"),
18 ("0461", "4d22", 474, "Standard Dell"),
20 ("046d", "1028", 1200, "M570 trackball[u]"),
22 ("046d", "400e", 800, "K400 touchpad[u]"),
23 ("046d", "4024", 800, "K400r touchpad[u]"),
24 ("046d", "b02a", 1000, "Logitech M650"),
25 ("046d", "b02b", 1000, "Logitech M550"),
26 ("046d", "b02c", 1000, "Logitech M750"),
27 ("046d", "b031", 1000, "Logitech LIFT"),
28 ("046d", "b032", 1000, "Logitech M650 For Business"),
29 ("046d", "b033", 1000, "Logitech LIFT B2B"),
30 ("046d", "b36f", 1000, "Logitech BOLT Receiver"),
31 ("046d", "c00*", 385, "Old Logitech Mice (copying 0xc00f setting)"),
32 ("046d", "c00f", 385, "Logitech MouseMan Traveler/Mobile"),
33 ("046d", "c014", 425, "HP branded - Logitech Optical USB Mouse"),
34 ("046d", "c016", 377, "HP branded - Logitech, Inc. Optical Wheel Mouse"),
35 ("046d", "c018", 530, "Logitech, Inc. Optical Wheel Mouse - model M-UAE96"),
36 ("046d", "c03d", 434, "Logitech M-BT96a Pilot Optical Mouse"),
37 ("046d", "c03e", 464, "Logitech Premium Optical Wheel Mouse (M-BT58)"),
38 ("046d", "c40*", 600, "Logitech Trackballs*"),
39 ("046d", "c508", 600, "Cordless Trackball"),
40 ("047d", "1002", 600, "Kensington Turbo Mouse Pro (trackball)*"),
42 ("047d", "1003", 600, "Kensington Orbit TrackBall (trackball)*"),
43 ("047d", "1005", 600, "Kensington TurboBall (trackball)*"),
44 ("047d", "1006", 600, "Kensington TurboRing (trackball)*"),
45 ("047d", "1009", 600, "Kensington Orbit TrackBall for Mac (trackball)*"),
46 ("047d", "1020", 600, "Kensington Expert Mouse (trackball)*"),
47 ("047d", "2041", 600, "Kensington SlimBlade Trackball (trackball)*"),
48 ("04d9", "2519", 800, "FAVI Wireless Keyboard (TouchPad)*"),
50 ("056e", "00e4", 1575, "Elecom EX-G Blue LED Wireless Mouse"),
52 ("056e", "011a", 2100, "Elecom EX-G Blue LED Wired Mouse (2021)"),
53 ("056e", "0141", 1700, "Elecom EPRIM Blue LED 5 Button Mouse 228"),
54 ("056e", "0145", 1400, "Elecom EPRIM Blue LED 3 Button Mouse 542 (2020)"),
55 ("056e", "0158", 1700, "Elecom M Size Mouse Black 227"),
56 ("056e", "0159", 1800, "Elecom M Size Blue LED Mouse 203"),
57 ("056e", "0171", 1700, "Elecom EPRIM Blue LED 3 Button Mouse 542 (2021)"),
58 ("05ac", "*", 373, "Apple mice (other)"),
60 ("05ac", "0304", 400, "Apple USB Optical Mouse (Mighty Mouse)"),
61 ("05ac", "030c", 400, "Apple BT Optical Mouse (Mighty Mouse)"),
62 ("05ac", "030d", 1780, "Apple magicmouse (BT)"),
63 ("06cb", "0009", 400, "USB IBM Trackpoint"),
65 ("093a", "2510", 1600, "PixArt Optical Mouse"),
67 ("0951", "16d3", 800, "Kingston HyperX Pulsefire Surge RGB"),
69 ("0951", "16de", 800, "Kingston HyperX Pulsefire Core RGB"),
70 ("0951", "1727", 800, "Kingston HyperX Pulsefire Haste"),
71 ("0a5c", "8502", 800, "FAVI Wireless Keyboard (TouchPad), Bluetooth*"),
73 ("0c45", "7000", 800, "FAVI Entertainment Wireless Keyboard (TouchPad)*"),
75 ("1038", "1369", 1620, "SteelSeries Sensei Raw"),
77 ("1038", "1830", 1250, "SteelSeries Rival 3 Wireless"),
78 ("1532", "0016", 1714, "Razer USA, Ltd DeathAdder RZ01-0015"),
80 ("1532", "0045", 4280, "Razer USA, Ltd Mamba"),
81 ("17ef", "6009", 400, "Lenovo ThinkPad Keyboard w/ TrackPoint"),
83 ("17ef", "6014", 800, "Lenovo N5901 multimedia keyboard/trackball*"),
84 ("17ef", "602b", 800, "Lenovo N5902 multimedia keyboard/OFN*"),
85 ("17ef", "6047", 400, "Thinkpad Compact USB Keyboard"),
86 ("17ef", "6048", 400, "Thinkpad Compact USB Keyboard - Bluetooth"),
87 ("17ef", "608a", 1600, "Lenovo YOGA Mouse"),
88 ("17ef", "608d", 1750, "Lenovo Essential USB Mouse 4Y50R20863"),
89 ("1997", "0409", 800, "Riitek Rii Mote i6 (TouchPad)*"),
91 ("1b1c", "1b79", 1200, "Corsair Sabre Pro RGB Champion Wired"),
93 ("1b1c", "1b7a", 1200, "Corsair Sabre Pro Champion Wired"),
94 ("1b1c", "1bac", 1500, "Corsair Katar Pro XT Wired"),
95 ("413c", "3012", 502, "Dell Computer Corp. Optical Wheel Mouse"),
97];
98
99#[cfg(test)]
100mod test {
101 use super::super::xorg_conf_parser;
102 use super::*;
103 use std::collections::HashMap;
104 use std::fs;
105
106 fn model_to_string(m: &xorg_conf_parser::MouseModel) -> String {
107 format!(r#"("{}", "{}", {}, "{}"),"#, m.vendor_id, m.product_id, m.cpi, m.identifier,)
108 }
109
110 #[fuchsia::test]
111 fn sync_xorg_file() {
112 let file = fs::read_to_string("/pkg/data/xorg_conf/20-mouse.conf")
113 .expect("should be able to read 20-mouse.conf");
114 let (_, mut models_from_file) =
115 xorg_conf_parser::parse_xorg_file(xorg_conf_parser::NomSpan::new(file.as_str()))
116 .expect("parse 20-mouse.conf failed");
117
118 models_from_file.sort_by(|m1, m2| {
119 if m1.vendor_id != m2.vendor_id {
120 return m1.vendor_id.cmp(&m2.vendor_id);
121 }
122 m1.product_id.cmp(&m2.product_id)
123 });
124
125 models_from_file
127 .dedup_by(|m1, m2| m1.vendor_id == m2.vendor_id && m1.product_id == m2.product_id);
128
129 let mut models_exist: HashMap<String, (String, String, u32, String)> = MODELS
130 .into_iter()
131 .map(|(vid, pid, cpi, identifier)| {
132 (
133 [vid, pid].join(":").to_owned(),
134 (vid.to_owned(), pid.to_owned(), cpi, identifier.to_owned()),
135 )
136 })
137 .collect();
138
139 let mut to_add: Vec<String> = vec![];
140 let mut to_change: Vec<String> = vec![];
141 let mut to_delete: Vec<String> = vec![];
142
143 for m in models_from_file {
144 let k = [m.vendor_id.clone(), m.product_id.clone()].join(":").to_owned();
145 match models_exist.get(&k) {
146 Some((_vid, _pid, cpi, identifier)) => {
147 if *cpi != m.cpi || *identifier != m.identifier {
148 to_change.push(model_to_string(&m));
149 }
150 models_exist.remove(&k);
151 }
152 None => {
153 to_add.push(model_to_string(&m));
154 }
155 }
156 }
157
158 for (_, m) in models_exist {
159 to_delete.push(format!(r#"("{}", "{}", {}, "{}"),"#, m.0, m.1, m.2, m.3));
160 }
161
162 if to_add.len() != 0 || to_change.len() != 0 || to_delete.len() != 0 {
163 let to_add = to_add.join("\n");
164 let to_change = to_change.join("\n");
165 let to_delete = to_delete.join("\n");
166 let output = [
167 "to_add:",
168 to_add.as_str(),
169 "to_change:",
170 to_change.as_str(),
171 "to_delete:",
172 to_delete.as_str(),
173 ]
174 .join("\n\n");
175
176 panic!("{}", output);
177 }
178 }
179}