cpml: correct close bug in cpml_segment_reverse
[adg.git] / src / cpml / cpml-segment.c
blob087036d363db5491c4ef8c517a0efb786ff897de
1 /* CPML - Cairo Path Manipulation Library
2 * Copyright (C) 2007-2015 Nicola Fontana <ntd at entidi.it>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 /**
22 * SECTION:cpml-segment
23 * @Section_Id:Segment
24 * @title: CpmlSegment
25 * @short_description: Contiguous segment that can be a fragment
26 * or a whole cairo path
28 * A segment is a single contiguous line got from a cairo path. The
29 * CPML library relies on one assumption to let the data be independent
30 * from the current point (and thus from the cairo context): any segment
31 * MUST be preceded by at least one %CPML_MOVE primitive.
32 * This means a valid segment in cairo could be rejected by CPML.
34 * #CpmlSegment provides an unobtrusive way to access a cairo path.
35 * This means #CpmlSegment itsself does not hold any coordinates but
36 * instead a bunch of pointers to the original #cairo_path_t struct:
37 * modifying data throught this struct also changes the original path.
39 * Every #cairo_path_t struct can contain more than one segment: the CPML
40 * library provides iteration APIs to browse the segments of a path.
41 * Use cpml_segment_reset() to reset the iterator at the start of the
42 * cairo path (will point the first segment) and cpml_segment_next()
43 * to get the next segment. Getting the previous segment is not provided
44 * as the underlying cairo struct is not accessible in reverse order.
46 * When initialized, #CpmlSegment yet refers to the first segment so
47 * the initial reset is not required.
49 * Since: 1.0
50 **/
52 /**
53 * CpmlSegment:
54 * @path: the source #cairo_path_t struct
55 * @data: the data points of the segment; the first primitive
56 * will always be a %CPML_MOVE
57 * @num_data: size of @data
59 * This is an unobtrusive struct to identify a segment inside a
60 * cairo path. Unobtrusive means that the real coordinates are
61 * still stored in @path: CpmlSegment only provides a way to
62 * access them.
64 * Since: 1.0
65 **/
68 #include "cpml-internal.h"
69 #include "cpml-extents.h"
70 #include "cpml-segment.h"
71 #include "cpml-primitive.h"
72 #include "cpml-curve.h"
73 #include <stdio.h>
74 #include <string.h>
76 static int normalize (CpmlSegment *segment);
77 static int ensure_one_leading_move (CpmlSegment *segment);
78 static int reshape (CpmlSegment *segment);
81 /**
82 * cpml_segment_from_cairo:
83 * @segment: a #CpmlSegment
84 * @path: (type gpointer): the source #cairo_path_t
86 * Builds a CpmlSegment from a #cairo_path_t structure. This operation
87 * involves stripping the duplicate %CPML_MOVE primitives at the
88 * start of the path and setting <structfield>num_data</structfield>
89 * field to the end of the contiguous line, that is when another
90 * %CPML_MOVE primitive is found or at the end of the path.
91 * A pointer to the source cairo path is kept though.
93 * This function will fail if @path is null, empty or if its
94 * <structfield>status</structfield> member is not %CAIRO_STATUS_SUCCESS.
95 * Also, the first primitive must be a %CPML_MOVE, so no
96 * dependency on the cairo context is needed.
98 * Returns: (type gboolean): 1 if @segment has been succesfully computed, 0 on errors.
100 * Since: 1.0
103 cpml_segment_from_cairo(CpmlSegment *segment, cairo_path_t *path)
105 /* segment and path must be non-NULL and path must be valid */
106 if (path == NULL || segment == NULL ||
107 path->num_data == 0 || path->status != CAIRO_STATUS_SUCCESS)
108 return 0;
110 segment->path = path;
111 segment->data = path->data;
112 segment->num_data = path->num_data;
114 return normalize(segment);
118 * cpml_segment_copy:
119 * @segment: a #CpmlSegment
120 * @src: the source segment to copy
122 * Makes a shallow copy of @src into @segment.
124 * Since: 1.0
126 void
127 cpml_segment_copy(CpmlSegment *segment, const CpmlSegment *src)
129 memcpy(segment, src, sizeof(CpmlSegment));
133 * cpml_segment_reset:
134 * @segment: a #CpmlSegment
136 * Modifies @segment to point to the first segment of the source cairo path.
138 * Since: 1.0
140 void
141 cpml_segment_reset(CpmlSegment *segment)
143 segment->data = segment->path->data;
144 segment->num_data = segment->path->num_data;
145 normalize(segment);
149 * cpml_segment_next:
150 * @segment: a #CpmlSegment
152 * Modifies @segment to point to the next segment of the source cairo path.
154 * Returns: (type gboolean): 1 on success, 0 if no next segment found or errors.
156 * Since: 1.0
159 cpml_segment_next(CpmlSegment *segment)
161 cairo_path_data_t *new_data;
162 const cairo_path_data_t *end_data;
164 new_data = segment->data + segment->num_data;
165 end_data = segment->path->data + segment->path->num_data;
167 if (new_data >= end_data)
168 return 0;
170 segment->data = new_data;
171 segment->num_data = end_data - new_data;
173 return normalize(segment);
177 * cpml_segment_get_length:
178 * @segment: a #CpmlSegment
180 * Gets the whole length of @segment.
182 * Returns: the requested length
184 * Since: 1.0
186 double
187 cpml_segment_get_length(const CpmlSegment *segment)
189 CpmlPrimitive primitive;
190 double length;
192 if (segment == NULL)
193 return 0;
195 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
196 length = 0;
198 do {
199 length += cpml_primitive_get_length(&primitive);
200 } while (cpml_primitive_next(&primitive));
202 return length;
206 * cpml_segment_put_extents:
207 * @segment: a #CpmlSegment
208 * @extents: where to store the extents
210 * Gets the whole extents of @segment.
212 * Since: 1.0
214 void
215 cpml_segment_put_extents(const CpmlSegment *segment, CpmlExtents *extents)
217 CpmlPrimitive primitive;
218 CpmlExtents primitive_extents;
220 extents->is_defined = 0;
222 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
224 do {
225 cpml_primitive_put_extents(&primitive, &primitive_extents);
226 cpml_extents_add(extents, &primitive_extents);
227 } while (cpml_primitive_next(&primitive));
231 * cpml_segment_put_pair_at:
232 * @segment: a #CpmlSegment
233 * @pos: the position value
234 * @pair: the destination #CpmlPair
236 * Gets the coordinates of the point lying on @segment at position
237 * @pos. @pos is an homogeneous factor where 0 is the start point,
238 * 1 the end point, 0.5 the mid point and so on.
239 * The relation <constant>0 < @pos < 1</constant> should be satisfied,
240 * although some cases accept value outside this range.
242 * <important>
243 * <title>TODO</title>
244 * <itemizedlist>
245 * <listitem>The actual implementation returns only the start and end points,
246 * that is only when @pos is 0 or 1.</listitem>
247 * </itemizedlist>
248 * </important>
250 * Since: 1.0
252 void
253 cpml_segment_put_pair_at(const CpmlSegment *segment, double pos,
254 CpmlPair *pair)
256 CpmlPrimitive primitive;
258 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
260 /* Handle the common cases: start and end points */
261 if (pos == 0) {
262 cpml_primitive_put_pair_at(&primitive, 0, pair);
263 } if (pos == 1) {
264 while (cpml_primitive_next(&primitive))
266 cpml_primitive_put_pair_at(&primitive, 1, pair);
271 * cpml_segment_put_vector_at:
272 * @segment: a #CpmlSegment
273 * @pos: the position value
274 * @vector: the destination #CpmlVector
276 * Gets the steepness of the point lying on @segment at position
277 * @pos. @pos is an homogeneous factor where 0 is the start point,
278 * 1 the end point, 0.5 the mid point and so on.
279 * The relation <constant>0 < @pos < 1</constant> should be satisfied,
280 * although some cases accept value outside this range.
282 * <important>
283 * <title>TODO</title>
284 * <itemizedlist>
285 * <listitem>The actual implementation returns only the start and end
286 * steepness, that is only when @pos is 0 or 1.</listitem>
287 * </itemizedlist>
288 * </important>
290 * Since: 1.0
292 void
293 cpml_segment_put_vector_at(const CpmlSegment *segment, double pos,
294 CpmlVector *vector)
296 CpmlPrimitive primitive;
298 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
300 /* Handle the common cases: start and end points */
301 if (pos == 0) {
302 cpml_primitive_put_vector_at(&primitive, 0, vector);
303 return;
306 if (pos == 1) {
307 while (cpml_primitive_next(&primitive))
309 cpml_primitive_put_vector_at(&primitive, 1, vector);
310 return;
315 * cpml_segment_put_intersections:
316 * @segment: the first #CpmlSegment
317 * @segment2: the second #CpmlSegment
318 * @n_dest: maximum number of intersections to return
319 * @dest: the destination vector of #CpmlPair
321 * Computes the intersections between @segment and @segment2 and
322 * returns the found points in @dest. If the intersections are more
323 * than @n_dest, only the first @n_dest pairs are stored in @dest.
325 * To get the job done, the primitives of @segment are sequentially
326 * scanned for intersections with any primitive in @segment2. This
327 * means @segment has a higher precedence over @segment2.
329 * Returns: the number of intersections found
331 * Since: 1.0
333 size_t
334 cpml_segment_put_intersections(const CpmlSegment *segment,
335 const CpmlSegment *segment2,
336 size_t n_dest, CpmlPair *dest)
338 CpmlPrimitive portion;
339 size_t partial, total;
341 cpml_primitive_from_segment(&portion, (CpmlSegment *) segment);
342 total = 0;
344 if (segment == NULL || segment2 == NULL || dest == NULL)
345 return 0;
347 do {
348 partial = cpml_primitive_put_intersections_with_segment(&portion,
349 segment2,
350 n_dest - total,
351 dest + total);
352 total += partial;
353 } while (total < n_dest && cpml_primitive_next(&portion));
355 return total;
359 * cpml_segment_offset:
360 * @segment: a #CpmlSegment
361 * @offset: the offset distance
363 * Offsets a segment of the specified amount, that is builds a "parallel"
364 * segment at the @offset distance from the original one and returns the
365 * result by replacing the original @segment.
367 * <important>
368 * <title>TODO</title>
369 * <itemizedlist>
370 * <listitem>Closed path are not yet managed: an elegant solution is not
371 * so obvious: use <function>cpml_close_offset</function> when
372 * will be available.</listitem>
373 * <listitem>Degenerated primitives, such as lines of length 0, are not
374 * managed properly.</listitem>
375 * </itemizedlist>
376 * </important>
378 * Since: 1.0
380 void
381 cpml_segment_offset(CpmlSegment *segment, double offset)
383 CpmlPrimitive primitive;
384 CpmlPrimitive last_primitive;
385 CpmlPair old_end;
386 cairo_path_data_t org, *old_org;
387 int first_cycle;
389 cpml_primitive_from_segment(&primitive, segment);
390 first_cycle = 1;
392 do {
393 if (! first_cycle) {
394 cpml_pair_to_cairo(&old_end, &org);
395 old_org = primitive.org;
396 primitive.org = &org;
399 cpml_primitive_put_point(&primitive, -1, &old_end);
400 cpml_primitive_offset(&primitive, offset);
402 if (! first_cycle) {
403 cpml_primitive_join(&last_primitive, &primitive);
404 primitive.org = old_org;
407 cpml_primitive_copy(&last_primitive, &primitive);
408 first_cycle = 0;
409 } while (cpml_primitive_next(&primitive));
413 * cpml_segment_transform:
414 * @segment: a #CpmlSegment
415 * @matrix: the matrix to be applied
417 * Applies @matrix on all the points of @segment.
419 * Since: 1.0
421 void
422 cpml_segment_transform(CpmlSegment *segment, const cairo_matrix_t *matrix)
424 CpmlPrimitive primitive;
425 cairo_path_data_t *data;
426 size_t n_points;
428 cpml_primitive_from_segment(&primitive, segment);
429 cairo_matrix_transform_point(matrix, &(primitive.org)->point.x,
430 &(primitive.org)->point.y);
432 do {
433 data = primitive.data;
434 if (data->header.type != CAIRO_PATH_CLOSE_PATH) {
435 n_points = cpml_primitive_get_n_points(&primitive);
437 while (--n_points > 0) {
438 ++data;
439 cairo_matrix_transform_point(matrix,
440 &data->point.x, &data->point.y);
443 } while (cpml_primitive_next(&primitive));
447 * cpml_segment_reverse:
448 * @segment: a #CpmlSegment
450 * Reverses @segment in-place. The resulting rendering will be the same,
451 * but with the primitives generated in reverse order.
453 * It is assumed that @segment has already been sanitized, such as when
454 * it is returned by some CPML function or it is a cairo path already
455 * conforming to the * segment rules described by the
456 * cpml_segment_from_cairo() function.
458 * Since: 1.0
460 void
461 cpml_segment_reverse(CpmlSegment *segment)
463 cairo_path_data_t *data, *dst_data;
464 size_t data_size;
465 double end_x, end_y;
466 int n, length;
467 size_t n_points, n_point;
468 const cairo_path_data_t *src_data;
470 if (segment == NULL)
471 return;
473 data_size = sizeof(cairo_path_data_t) * segment->num_data;
474 data = malloc(data_size);
475 end_x = segment->data[1].point.x;
476 end_y = segment->data[1].point.y;
478 n = segment->data->header.length;
479 data->header.type = CPML_MOVE;
480 data->header.length = n;
482 while (n < segment->num_data) {
483 src_data = segment->data + n;
484 /* While usually CPML_CLOSE is treated as a CPML_LINE, in this case
485 * it must not, because it does not have a trailing data point */
486 n_points = src_data->header.type == CAIRO_PATH_CLOSE_PATH ? 1 :
487 cpml_primitive_type_get_n_points(src_data->header.type);
488 length = src_data->header.length;
489 n += length;
490 dst_data = data + segment->num_data - n + data->header.length;
491 dst_data->header.type = src_data->header.type;
492 dst_data->header.length = length;
494 for (n_point = 1; n_point < n_points; ++n_point) {
495 dst_data[n_points - n_point].point.x = end_x;
496 dst_data[n_points - n_point].point.y = end_y;
497 end_x = src_data[n_point].point.x;
498 end_y = src_data[n_point].point.y;
501 /* Copy also the embedded data, if any */
502 if (n_points < length) {
503 size_t size = (length - n_points) * sizeof(cairo_path_data_t);
504 memcpy(dst_data + n_points, src_data + n_points, size);
508 data[1].point.x = end_x;
509 data[1].point.y = end_y;
510 memcpy(segment->data, data, data_size);
512 free(data);
516 * cpml_segment_to_cairo:
517 * @segment: a #CpmlSegment
518 * @cr: the destination cairo context
520 * Appends the path of @segment to @cr. The segment is "flattened",
521 * that is %CPML_ARC primitives are approximated by one or more
522 * %CPML_CURVE using cpml_arc_to_cairo(). Check its documentation
523 * for further details.
525 * Since: 1.0
527 void
528 cpml_segment_to_cairo(const CpmlSegment *segment, cairo_t *cr)
530 CpmlPrimitive primitive;
532 if (segment == NULL || cr == NULL)
533 return;
535 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
537 do {
538 cpml_primitive_to_cairo(&primitive, cr);
539 } while (cpml_primitive_next(&primitive));
543 * cpml_segment_dump:
544 * @segment: a #CpmlSegment
546 * Dumps the specified @segment to stdout. Useful for debugging purposes.
548 * Since: 1.0
550 void
551 cpml_segment_dump(const CpmlSegment *segment)
553 CpmlPrimitive primitive;
554 int first_call;
556 if (segment == NULL) {
557 printf("NULL segment\n");
558 return;
561 cpml_primitive_from_segment(&primitive, (CpmlSegment *) segment);
563 first_call = 1;
564 do {
565 cpml_primitive_dump(&primitive, first_call);
566 first_call = 0;
567 } while (cpml_primitive_next(&primitive));
572 * normalize:
573 * @segment: a #CpmlSegment
575 * Sanitizes @segment by calling ensure_one_leading_move() and reshape().
577 * Returns: 1 on success, 0 on no leading MOVE_TOs or on errors.
579 static int
580 normalize(CpmlSegment *segment)
582 if (!ensure_one_leading_move(segment))
583 return 0;
585 return reshape(segment);
589 * ensure_one_leading_move:
590 * @segment: a #CpmlSegment
592 * Strips the leading %CPML_MOVE primitives, updating the
593 * <structname>CpmlSegment</structname> structure accordingly.
594 * One, and only one, %CPML_MOVE primitive is left.
596 * Returns: 1 on success, 0 on no leading MOVE_TOs or on empty path
598 static int
599 ensure_one_leading_move(CpmlSegment *segment)
601 cairo_path_data_t *new_data;
602 int new_num_data, move_length;
604 /* Check for at least one move to */
605 if (segment->data->header.type != CAIRO_PATH_MOVE_TO)
606 return 0;
608 new_data = segment->data;
609 new_num_data = segment->num_data;
611 while (1) {
612 move_length = new_data->header.length;
614 /* Check for the end of cairo path data, that is when
615 * @segment is composed by only CAIRO_PATH_MOVE_TO */
616 if (new_num_data <= move_length)
617 return 0;
619 /* Check if this is the last CAIRO_PATH_MOVE_TO */
620 if (new_data[move_length].header.type != CAIRO_PATH_MOVE_TO)
621 break;
623 new_data += move_length;
624 new_num_data -= move_length;
627 segment->data = new_data;
628 segment->num_data = new_num_data;
630 return 1;
634 * reshape:
635 * @segment: a #CpmlSegment
637 * Looks for the segment termination, that is the end of the underlying
638 * cairo path or a %CPML_MOVE operation. <structfield>num_data</structfield>
639 * field is modified to properly point to the end of @segment.
640 * @segment must have only one leading %CPML_MOVE and it is supposed
641 * to be non-empty, conditions yet imposed by the ensure_one_leading_move().
643 * This function also checks that all the components of @segment
644 * are valid primitives.
646 * Returns: 1 on success, 0 on invalid primitive found.
648 static int
649 reshape(CpmlSegment *segment)
651 const cairo_path_data_t *data;
652 int trailing_data, new_num_data, length;
654 data = segment->data;
655 new_num_data = 0;
656 trailing_data = segment->num_data;
658 while (1) {
659 length = data->header.length;
660 new_num_data += length;
661 trailing_data -= length;
662 data += length;
664 /* Check for invalid data size */
665 if (trailing_data < 0)
666 return 0;
668 if (trailing_data == 0 || data->header.type == CAIRO_PATH_MOVE_TO)
669 break;
671 /* Ensure that all the components are valid primitives */
672 if (cpml_primitive_type_get_n_points(data->header.type) == 0)
673 return 0;
676 segment->num_data = new_num_data;
677 return 1;