vexy-vsvg-plugin-sdk 2.4.2

Plugin SDK for vexy-vsvg
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
// this_file: crates/vexy-vsvg-plugin-sdk/src/plugins/convert_ellipse_to_circle.rs

//! Replace circles disguised as ellipses.
//!
//! This plugin ports SVGO's `convertEllipseToCircle` plugin. When an `<ellipse>` has
//! equal horizontal and vertical radii (`rx == ry`), it's actually a circle. Converting
//! to `<circle>` saves bytes and makes intent clearer.
//!
//! # Before
//! ```xml
//! <ellipse cx="50" cy="50" rx="10" ry="10"/>
//! ```
//!
//! # After
//! ```xml
//! <circle cx="50" cy="50" r="10"/>
//! ```
//!
//! # Savings
//! - Removes one attribute (`rx` and `ry` → `r`)
//! - Changes element name (`ellipse` → `circle` saves 2 bytes)
//! - Total: typically 8-12 bytes per element
//!
//! SVG Reference: https://www.w3.org/TR/SVG11/shapes.html

use crate::Plugin;
use anyhow::Result;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use vexy_vsvg::ast::{Document, Element, Node};

/// Configuration parameters for convert ellipse to circle plugin (currently empty)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
#[derive(Default)]
pub struct ConvertEllipseToCircleConfig {
    // No configuration options - matches SVGO behavior
}

/// Plugin that converts ellipse elements to circle elements when appropriate
pub struct ConvertEllipseToCirclePlugin {
    #[allow(dead_code)]
    config: ConvertEllipseToCircleConfig,
}

impl ConvertEllipseToCirclePlugin {
    /// Create a new ConvertEllipseToCirclePlugin
    pub fn new() -> Self {
        Self {
            config: ConvertEllipseToCircleConfig::default(),
        }
    }

    /// Create a new ConvertEllipseToCirclePlugin with config
    pub fn with_config(config: ConvertEllipseToCircleConfig) -> Self {
        Self { config }
    }

    /// Parse configuration from JSON
    fn parse_config(params: &Value) -> Result<ConvertEllipseToCircleConfig> {
        if params.is_null() || (params.is_object() && params.as_object().unwrap().is_empty()) {
            Ok(ConvertEllipseToCircleConfig::default())
        } else if params.is_object() {
            serde_json::from_value(params.clone())
                .map_err(|e| anyhow::anyhow!("Invalid configuration: {}", e))
        } else {
            Ok(ConvertEllipseToCircleConfig::default())
        }
    }

    /// Recursively convert eligible ellipse elements to circle elements.
    ///
    /// An ellipse becomes a circle when:
    /// - `rx == ry` (both radii are equal, making it perfectly circular)
    /// - Either radius is `"auto"` (SVG spec says `auto` inherits from the other radius)
    ///
    /// When converting, we replace both `rx` and `ry` with a single `r` attribute.
    fn convert_ellipse_to_circle_recursive(&self, element: &mut Element) {
        // Only process ellipse elements
        if element.name == "ellipse" {
            // Get radii, defaulting to "0" per SVG spec if missing
            let rx = element
                .attributes
                .get("rx")
                .cloned()
                .unwrap_or_else(|| "0".into());
            let ry = element
                .attributes
                .get("ry")
                .cloned()
                .unwrap_or_else(|| "0".into());

            // Check if this ellipse is actually a circle
            // (equal radii or either is "auto" which means "use the other radius")
            if rx == ry || rx == "auto" || ry == "auto" {
                // Convert element name
                element.name = "circle".into();

                // Choose which radius value to use: if rx is "auto", use ry; otherwise use rx
                let radius = if rx == "auto" { ry } else { rx };

                // Remove the ellipse-specific attributes
                element.attributes.shift_remove("rx");
                element.attributes.shift_remove("ry");

                // Add the circle-specific attribute
                element.attributes.insert("r".into(), radius);
            }
        }

        // Recursively process all child elements
        for child in &mut element.children {
            if let Node::Element(elem) = child {
                self.convert_ellipse_to_circle_recursive(elem);
            }
        }
    }
}

impl Default for ConvertEllipseToCirclePlugin {
    fn default() -> Self {
        Self::new()
    }
}

impl Plugin for ConvertEllipseToCirclePlugin {
    fn name(&self) -> &'static str {
        "convertEllipseToCircle"
    }

    fn description(&self) -> &'static str {
        "converts non-eccentric <ellipse>s to <circle>s"
    }

    fn validate_params(&self, params: &Value) -> Result<()> {
        Self::parse_config(params)?;
        Ok(())
    }

    fn apply(&self, document: &mut Document) -> Result<()> {
        // Convert ellipse elements to circle elements
        self.convert_ellipse_to_circle_recursive(&mut document.root);
        Ok(())
    }
}

#[cfg(test)]
mod unit_tests {
    use super::*;
    use serde_json::json;
    use std::borrow::Cow;
    use vexy_vsvg::ast::{Document, Element, Node};

    fn create_element(name: &'static str) -> Element<'static> {
        let mut element = Element::new(name);
        element.name = Cow::Borrowed(name);
        element
    }

    fn count_elements_by_name(element: &Element, name: &str) -> usize {
        let mut count = 0;
        for child in &element.children {
            if let Node::Element(elem) = child {
                if elem.name == name {
                    count += 1;
                }
                count += count_elements_by_name(elem, name);
            }
        }
        count
    }

    #[test]
    fn test_plugin_creation() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        assert_eq!(plugin.name(), "convertEllipseToCircle");
        assert_eq!(
            plugin.description(),
            "converts non-eccentric <ellipse>s to <circle>s"
        );
    }

    #[test]
    fn test_parameter_validation() {
        let plugin = ConvertEllipseToCirclePlugin::new();

        // Valid parameters (empty object)
        assert!(plugin.validate_params(&json!({})).is_ok());

        // Invalid parameters (non-empty object)
        assert!(plugin.validate_params(&json!({"param": "value"})).is_err());
    }

    #[test]
    fn test_convert_ellipse_equal_radii() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse with equal rx and ry
        let mut ellipse = create_element("ellipse");
        ellipse.attributes.insert("rx".into(), "10".into());
        ellipse.attributes.insert("ry".into(), "10".into());
        ellipse.attributes.insert("cx".into(), "50".into());
        ellipse.attributes.insert("cy".into(), "50".into());
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted to circle
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);

        // Check attributes
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "circle");
            assert_eq!(elem.attributes.get("r"), Some(&"10".into()));
            assert_eq!(elem.attributes.get("cx"), Some(&"50".into()));
            assert_eq!(elem.attributes.get("cy"), Some(&"50".into()));
            assert!(!elem.attributes.contains_key("rx"));
            assert!(!elem.attributes.contains_key("ry"));
        }
    }

    #[test]
    fn test_convert_ellipse_auto_rx() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse with rx="auto"
        let mut ellipse = create_element("ellipse");
        ellipse.attributes.insert("rx".into(), "auto".into());
        ellipse.attributes.insert("ry".into(), "15".into());
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted to circle with r=ry
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);

        // Check attributes
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "circle");
            assert_eq!(elem.attributes.get("r"), Some(&"15".into()));
            assert!(!elem.attributes.contains_key("rx"));
            assert!(!elem.attributes.contains_key("ry"));
        }
    }

    #[test]
    fn test_convert_ellipse_auto_ry() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse with ry="auto"
        let mut ellipse = create_element("ellipse");
        ellipse.attributes.insert("rx".into(), "20".into());
        ellipse.attributes.insert("ry".into(), "auto".into());
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted to circle with r=rx
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);

        // Check attributes
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "circle");
            assert_eq!(elem.attributes.get("r"), Some(&"20".into()));
            assert!(!elem.attributes.contains_key("rx"));
            assert!(!elem.attributes.contains_key("ry"));
        }
    }

    #[test]
    fn test_keep_ellipse_different_radii() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse with different rx and ry
        let mut ellipse = create_element("ellipse");
        ellipse.attributes.insert("rx".into(), "10".into());
        ellipse.attributes.insert("ry".into(), "20".into());
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should keep as ellipse
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 1);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 0);

        // Check attributes unchanged
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "ellipse");
            assert_eq!(elem.attributes.get("rx"), Some(&"10".into()));
            assert_eq!(elem.attributes.get("ry"), Some(&"20".into()));
        }
    }

    #[test]
    fn test_ellipse_default_attributes() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse without rx/ry (defaults to 0)
        let ellipse = create_element("ellipse");
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted to circle with r=0
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);

        // Check attributes
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "circle");
            assert_eq!(elem.attributes.get("r"), Some(&"0".into()));
        }
    }

    #[test]
    fn test_ellipse_with_only_rx() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create ellipse with only rx (ry defaults to 0)
        let mut ellipse = create_element("ellipse");
        ellipse.attributes.insert("rx".into(), "0".into());
        doc.root.children.push(Node::Element(ellipse));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted to circle with r=0
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);

        // Check attributes
        if let Node::Element(elem) = &doc.root.children[0] {
            assert_eq!(elem.name, "circle");
            assert_eq!(elem.attributes.get("r"), Some(&"0".into()));
        }
    }

    #[test]
    fn test_nested_ellipses() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Create a group with nested ellipses
        let mut group = create_element("g");

        // Ellipse that should be converted
        let mut ellipse1 = create_element("ellipse");
        ellipse1.attributes.insert("rx".into(), "5".into());
        ellipse1.attributes.insert("ry".into(), "5".into());
        group.children.push(Node::Element(ellipse1));

        // Ellipse that should remain unchanged
        let mut ellipse2 = create_element("ellipse");
        ellipse2.attributes.insert("rx".into(), "5".into());
        ellipse2.attributes.insert("ry".into(), "10".into());
        group.children.push(Node::Element(ellipse2));

        doc.root.children.push(Node::Element(group));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have converted one ellipse to circle
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 1);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);
    }

    #[test]
    fn test_no_ellipses() {
        let plugin = ConvertEllipseToCirclePlugin::new();
        let mut doc = Document::new();

        // Add non-ellipse elements
        let rect = create_element("rect");
        doc.root.children.push(Node::Element(rect));

        let circle = create_element("circle");
        doc.root.children.push(Node::Element(circle));

        // Apply plugin
        plugin.apply(&mut doc).unwrap();

        // Should have no changes
        assert_eq!(count_elements_by_name(&doc.root, "ellipse"), 0);
        assert_eq!(count_elements_by_name(&doc.root, "circle"), 1);
        assert_eq!(count_elements_by_name(&doc.root, "rect"), 1);
    }

    #[test]
    fn test_config_parsing() {
        let config = ConvertEllipseToCirclePlugin::parse_config(&json!({})).unwrap();
        // No fields to check since config is empty
        let _ = config;
    }
}

// Use parameterized testing framework for SVGO fixture tests
#[cfg(test)]
#[cfg(test)]
vexy_vsvg_test_utils::plugin_fixture_tests!(ConvertEllipseToCirclePlugin, "convertEllipseToCircle");