]> granicus.if.org Git - graphviz/log
graphviz
2 years agotests/CMakeLists.txt: sort test cases
Magnus Jacobsson [Wed, 6 Jul 2022 10:42:02 +0000 (12:42 +0200)]
tests/CMakeLists.txt: sort test cases

2 years agoMerge branch 'smattr/BA128E20-1C11-4C5C-978E-6F16C28B3671' into 'main'
Matthew Fernandez [Sun, 24 Jul 2022 05:52:16 +0000 (05:52 +0000)]
Merge branch 'smattr/BA128E20-1C11-4C5C-978E-6F16C28B3671' into 'main'

rephrase comparators to avoid arithmetic

See merge request graphviz/graphviz!2766

2 years agosparse comp_ascend_int: remove unnecessary parens
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
sparse comp_ascend_int: remove unnecessary parens

2 years agosfdpgen scomp: remove unnecessary parens
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
sfdpgen scomp: remove unnecessary parens

2 years agopatchwork nodecmp: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
patchwork nodecmp: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agopack cmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
pack cmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agoneatogen cmpIpair: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
neatogen cmpIpair: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agoneatogen cmpitem: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
neatogen cmpitem: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agofdpgen ijcmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
fdpgen ijcmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agodotgen edgeposcmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen edgeposcmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agodotgen nodeposcmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen nodeposcmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agodotgen ordercmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen ordercmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agocommon textfont_comparf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
common textfont_comparf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agocommon increasingrankcmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
common increasingrankcmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agocommon decreasingrankcmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
common decreasingrankcmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agocgraph agsubnodeseqcmpf: remove unnecessary casts
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
cgraph agsubnodeseqcmpf: remove unnecessary casts

2 years agocgraph agsubnodeidcmpf: remove unnecessary casts
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
cgraph agsubnodeidcmpf: remove unnecessary casts

2 years agogvcolor cmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
gvcolor cmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agodijkstra cmpf: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dijkstra cmpf: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

2 years agodotgen edgelblcmpfn: remove unnecessary casts
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen edgelblcmpfn: remove unnecessary casts

2 years agodotgen edgecmp: rephrase comparator to avoid arithmetic
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen edgecmp: rephrase comparator to avoid arithmetic

cccb8b1d22a18031fc92d93133c7fa14ef7e1361 fixed an integer overflow in a
`memcmp`-/`strcmp`-like comparator. The same situation exists in the code
touched in this commit. Rather than wait for an edge case to expose an overflow
here, this change makes the same update, removing arithmetic and the consequent
possibility of overflow.

Note that the first comparison in this function appears to be the wrong way
around. But this (mistake?) is left as-is.

2 years agodotgen edgecmp: remove unnecessary casts
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
dotgen edgecmp: remove unnecessary casts

2 years agocircogen: remove commented out 'cleanBlocklist'
Matthew Fernandez [Fri, 8 Jul 2022 00:24:05 +0000 (17:24 -0700)]
circogen: remove commented out 'cleanBlocklist'

This was commented out when first committed in the initial revision,
256ef66663ca0c072554ee3f5e7971911031b3c7. It has never been uncommented or used.

2 years agoMerge branch 'smattr/ac7d6a52-2008-42b9-8ce4-e82b996d2211' into 'main'
Matthew Fernandez [Sat, 23 Jul 2022 01:14:16 +0000 (01:14 +0000)]
Merge branch 'smattr/ac7d6a52-2008-42b9-8ce4-e82b996d2211' into 'main'

squash more -Wunused-parameter warnings

See merge request graphviz/graphviz!2765

2 years agoneatogen getPath: remove unused obstacle parameters
Matthew Fernandez [Sun, 17 Jul 2022 22:51:06 +0000 (15:51 -0700)]
neatogen getPath: remove unused obstacle parameters

This function ignores obstacles when routing.

2 years agodotgen make_flat_adj_edges: remove unused 'P' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:44:42 +0000 (15:44 -0700)]
dotgen make_flat_adj_edges: remove unused 'P' parameter

2 years agodotgen cloneNode: remove unused 'flipped' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:43:31 +0000 (15:43 -0700)]
dotgen cloneNode: remove unused 'flipped' parameter

2 years agodotgen constraining_flat_edge: remove unused 'v' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:32:33 +0000 (15:32 -0700)]
dotgen constraining_flat_edge: remove unused 'v' parameter

2 years agodotgen getCluster: remove unused 'g' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:31:08 +0000 (15:31 -0700)]
dotgen getCluster: remove unused 'g' parameter

This also makes `g` in `makeCompoundEdge` unused, so we remove that parameter
too.

2 years agodotgen make_interclust_chain: remove unused 'g' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:27:14 +0000 (15:27 -0700)]
dotgen make_interclust_chain: remove unused 'g' parameter

2 years agotopfish make_coarse_ex_graph: remove unused 'nvtxs' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:25:34 +0000 (15:25 -0700)]
topfish make_coarse_ex_graph: remove unused 'nvtxs' parameter

2 years agotopfish make_coarse_graph: remove unused 'nvtxs' parameter
Matthew Fernandez [Sun, 17 Jul 2022 22:24:05 +0000 (15:24 -0700)]
topfish make_coarse_graph: remove unused 'nvtxs' parameter

2 years agogvc: remove unused 'gvevent_delete'
Matthew Fernandez [Sun, 17 Jul 2022 22:18:32 +0000 (15:18 -0700)]
gvc: remove unused 'gvevent_delete'

The `del` field was added to `gvdevice_callbacks_t` in
ad82f9fa3212cbaa01625f3c27a1e90c1c990fd2 under the name `delete`, but seemingly
has never been used by any in-tree plugin. This commit removes a no-op,
never-called callback for it, squashing some -Wunused-parameter warnings.

This commit does not remove the member because it is part of the public API. We
are assuming the convention is to check these pointers against null before
calling them, like the other GVC structs. But the struct has no comment
explaining it nor how it is meant to be used, so we cannot be sure how/if users
would be relying on this.

2 years agogvc: remove unused 'gvevent_modify'
Matthew Fernandez [Sun, 17 Jul 2022 22:16:17 +0000 (15:16 -0700)]
gvc: remove unused 'gvevent_modify'

The `modify` field was added to `gvdevice_callbacks_t` in
50df9e82edcb61c5650f81ca317a31c9493ed07e, but seemingly has never been used by
any in-tree plugin. This commit removes a no-op, never-called callback for it,
squashing some -Wunused-parameter warnings.

This commit does not remove the member because it is part of the public API. We
are assuming the convention is to check these pointers against null before
calling them, like the other GVC structs. But the struct has no comment
explaining it nor how it is meant to be used, so we cannot be sure how/if users
would be relying on this.

2 years agogvc: squash -Wunused-parameter warnings in callback functions
Matthew Fernandez [Sun, 17 Jul 2022 22:15:40 +0000 (15:15 -0700)]
gvc: squash -Wunused-parameter warnings in callback functions

These cannot easily be removed as these functions need to conform to a
particular type signature.

2 years agoMerge branch 'smattr/F3BB1D68-083C-4B29-BFA8-4B434E13A729' into 'main'
Matthew Fernandez [Fri, 22 Jul 2022 02:49:06 +0000 (02:49 +0000)]
Merge branch 'smattr/F3BB1D68-083C-4B29-BFA8-4B434E13A729' into 'main'

CI: remove Ubuntu 21.10 jobs

See merge request graphviz/graphviz!2763

2 years agoCI: remove Ubuntu 21.10 jobs
Matthew Fernandez [Sat, 16 Jul 2022 16:35:07 +0000 (09:35 -0700)]
CI: remove Ubuntu 21.10 jobs

Ubuntu 21.10 was EOLed on 2022-07-14.¹

¹ https://wiki.ubuntu.com/Releases

2 years agoCI: upgrade linting jobs from Ubtuntu 21.10 to 22.04
Matthew Fernandez [Sat, 16 Jul 2022 16:31:36 +0000 (09:31 -0700)]
CI: upgrade linting jobs from Ubtuntu 21.10 to 22.04

Ubuntu 21.10 was EOLed on 2022-07-14.¹

¹ https://wiki.ubuntu.com/Releases

2 years agoMerge branch 'smattr/f6073fe4-f775-4723-bb1e-0dcffd065496' into 'main'
Matthew Fernandez [Fri, 22 Jul 2022 01:41:19 +0000 (01:41 +0000)]
Merge branch 'smattr/f6073fe4-f775-4723-bb1e-0dcffd065496' into 'main'

replace strtok with a thread-safe non-allocating API

See merge request graphviz/graphviz!2764

2 years agopathplan make_polyline: fix unchecked allocation failure
Matthew Fernandez [Wed, 13 Jul 2022 04:02:09 +0000 (21:02 -0700)]
pathplan make_polyline: fix unchecked allocation failure

2 years agopathplan make_polyline: squash -Wsign-conversion warning
Matthew Fernandez [Wed, 13 Jul 2022 04:00:09 +0000 (21:00 -0700)]
pathplan make_polyline: squash -Wsign-conversion warning

`npts` is guaranteed greater than 0 here.

2 years agogv2gml: refactor 'parseStyle' to avoid 'strtok'
Matthew Fernandez [Fri, 8 Jul 2022 04:07:31 +0000 (21:07 -0700)]
gv2gml: refactor 'parseStyle' to avoid 'strtok'

This improves thread safety (`strtok` works by modifying global state) and
removes the need for dynamic allocation.

2 years agocommon stylefn: replace 'strtok' with tokenize.h
Matthew Fernandez [Sun, 10 Jul 2022 03:55:23 +0000 (20:55 -0700)]
common stylefn: replace 'strtok' with tokenize.h

This removes dynamic allocation in this code and improves thread safety.

2 years agocommon mkDirlist: switch to cgraph allocation helpers
Matthew Fernandez [Sat, 16 Jul 2022 17:20:05 +0000 (10:20 -0700)]
common mkDirlist: switch to cgraph allocation helpers

These have the advantage of zeroing newly allocated memory, leaving the caller
one fewer thing to worry about.

2 years agocommon mkDirlist: use a 'size_t' for item count
Matthew Fernandez [Sat, 16 Jul 2022 17:05:21 +0000 (10:05 -0700)]
common mkDirlist: use a 'size_t' for item count

Squashes two -Wsign-conversion warnings.

2 years agocommon: manage directory search list as views instead of allocated strings
Matthew Fernandez [Fri, 8 Jul 2022 14:59:20 +0000 (07:59 -0700)]
common: manage directory search list as views instead of allocated strings

This list is derived from the `Gvfilepath` global, something that is live for
the entire run of a program. So we can avoid `strdup`-ing components being
extracted out of it and maintain these as read-only references instead. This is
both faster and decreases memory usage.

2 years agogvc auto_output_filename: avoid 'strdup' when constructing file name
Matthew Fernandez [Sat, 9 Jul 2022 16:05:41 +0000 (09:05 -0700)]
gvc auto_output_filename: avoid 'strdup' when constructing file name

This block of code is scanning a string of `:`-separated entries and writing
them into `buf` in reverse order `.`-separated. We can rewrite it to avoid
dynamic allocation, thus avoiding certain failure cases and locking overhead.

Unfortunately there seems to be no variant of `strrchr` that takes a length. So
we need to write our own loop for locating the last `:` with a limit.

2 years agocgraph tok: add extra check for duplicate separator characters
Matthew Fernandez [Thu, 14 Jul 2022 14:58:17 +0000 (07:58 -0700)]
cgraph tok: add extra check for duplicate separator characters

When a user supplies the same character more than once when constructing a
tokenizer, nothing is functionally incorrect but this is strong indicator of a
bug or misunderstanding by the caller. For example, a bug like this is
documented in #2259.

2 years agocgraph: implement a string tokenization API
Matthew Fernandez [Sat, 9 Jul 2022 05:10:45 +0000 (22:10 -0700)]
cgraph: implement a string tokenization API

This will be used in an upcoming commit.

2 years agoMerge branch 'smattr/gitlab-925' into 'main'
Matthew Fernandez [Tue, 19 Jul 2022 15:29:31 +0000 (15:29 +0000)]
Merge branch 'smattr/gitlab-925' into 'main'

fix UTF-8 character decoding in record labels

Closes #925

See merge request graphviz/graphviz!2760

2 years agofix UTF-8 character decoding in record labels
Matthew Fernandez [Thu, 14 Jul 2022 04:52:21 +0000 (21:52 -0700)]
fix UTF-8 character decoding in record labels

When using `shape=record`, certain characters within labels have alternate
semantics. The switch in `parse_reclbl` handles these, with most characters
having no special semantics and branching to the default case. The trailing loop
in this case was attempting to accrue UTF-8 continuation bytes. But lets take a
look at the Wikipedia table describing UTF-8:¹

  ┌────────────────┬───────────────┬──────────┬──────────┬──────────┬──────────┐
  │First code point│Last code point│  Byte 1  │  Byte 2  │  Byte 3  │  Byte 4  │
  ├────────────────┼───────────────┼──────────┼──────────┼──────────┼──────────┤
  │          U+0000│         U+007F│ 0xxxxxxx │          │          │          │
  │          U+0080│         U+07FF│ 110xxxxx │ 10xxxxxx │          │          │
  │          U+0800│         U+FFFF│ 1110xxxx │ 10xxxxxx │ 10xxxxxx │          │
  │         U+10000│       U+10FFFF│ 11110xxx │ 10xxxxxx │ 10xxxxxx │ 10xxxxxx │
  └────────────────┴───────────────┴──────────┴──────────┴──────────┴──────────┘

Notice that the continuation bytes are distinguished by upper 0b10 bits. Now
consider that the trailing loop was using a mask with 128 (0b10000000) to
identify such bytes. Such a value masks _out_ bit 6. That is, this loop
condition expression was true for all values with upper 0b10 bits _or_ upper
0b11 bits.

The first consequence of this is that this loop thought multiple consecutive
non-ASCII characters were a single character. It treated the 0b11xxxxxx byte 1
of a new non-ASCII character as if it were another continuation byte of the
preceding non-ASCII character.

The second consequence of this is that an ASCII character followed by non-ASCII
characters would be treated as a single character. That is, 0b0xxxxxxx bytes led
to adjacent following 0b1xxxxxxx bytes being consumed along with them.

These factors combine in the #925 example to confuse the state machine of the
containing loop and result in a malformed label being produced.

This fix adjusts the mask such that it takes _both_ bit 7 and bit 6 and compares
against 0b10xxxxxx.

There are a number of other odd things going on with this code that I did not
attempt to change:

  1. ASCII characters are allowed to have following UTF-8 continuation bytes.
     This would be considered malformed, but this code treats it as legal.

  2. UTF-8 permits a maximum of 3 continuation bytes (see table above) but this
     code allows an arbitrary number of continuation bytes. It also does no
     validation that the leading byte’s upper bit values and the number of
     continuation bytes correspond.

  3. There is something called “hard space” mode that this code toggles to keep
     track of when a space that would otherwise be omitted needs to be
     preserved in the output. Once the hard space flag is toggled on, the code
     appears to never toggle it off. This looks like it has the (presumably
     unintended) effect of something like `"\\ "` causing all later spaces in
     the label to become hard spaces.

Gitlab: fixes #925

¹ https://en.wikipedia.org/wiki/UTF-8

2 years agocommon parse_reclbl: reflow some lines
Matthew Fernandez [Thu, 14 Jul 2022 04:36:34 +0000 (21:36 -0700)]
common parse_reclbl: reflow some lines

An attempt to make this dense function slightly more comprehensible.

2 years agoadd a test case for #925
Matthew Fernandez [Thu, 14 Jul 2022 04:07:52 +0000 (21:07 -0700)]
add a test case for #925

2 years agofix test suite 'dot' reliance on locale
Matthew Fernandez [Thu, 14 Jul 2022 14:38:45 +0000 (07:38 -0700)]
fix test suite 'dot' reliance on locale

This function was using the current system locale to encode and decode data sent
to Graphviz and received from Graphviz when using a textual output format. As a
result, encoding exceptions would occur if either the input or the output
contained non-ASCII characters and the system locale was not a UTF-8 one.
Apparently none of the current test suite hits this scenario. However, an
upcoming commit adds a test case that does.

This change forces the encoding and decoding to be done as UTF-8, which is also
what Graphviz unconditionally uses.

2 years agoMerge branch 'smattr/gitlab-2259' into 'main'
Matthew Fernandez [Tue, 19 Jul 2022 04:06:46 +0000 (04:06 +0000)]
Merge branch 'smattr/gitlab-2259' into 'main'

smyrna: fix incorrect use of 'strtok'

Closes #2259

See merge request graphviz/graphviz!2759

2 years agosmyrna: fix incorrect use of 'strtok'
Matthew Fernandez [Thu, 14 Jul 2022 00:45:31 +0000 (17:45 -0700)]
smyrna: fix incorrect use of 'strtok'

This code was using `strtok` as if it splits based on the single separator
passed to it. But `strtok` actually treats the second parameter as a list of
character separators. In this change, we rephrase this code to do what its
original author appears to have intended.

This slightly changes the semantics of this code. But it seems we do not know
the exact intent of the original, so this is hoped to match the author’s
intention.

Gitlab: fixes #2259

2 years agoMerge branch 'smattr/19EA43B7-07EB-4524-8AB9-59BABF4C84F1' into 'main'
Matthew Fernandez [Tue, 19 Jul 2022 03:03:35 +0000 (03:03 +0000)]
Merge branch 'smattr/19EA43B7-07EB-4524-8AB9-59BABF4C84F1' into 'main'

squash Clang -Wmissing-field-initializers warnings

See merge request graphviz/graphviz!2757

2 years agosquash Clang -Wmissing-field-initializers warnings
Matthew Fernandez [Thu, 14 Jul 2022 00:14:14 +0000 (17:14 -0700)]
squash Clang -Wmissing-field-initializers warnings

Clang seems to consider `{NULL}` different from `{0}`, with the latter being an
intent of zero initialization and the former a possible accidental omission of
other fields.

2 years agoMerge branch 'smattr/gitlab-2262' into 'main'
Matthew Fernandez [Tue, 19 Jul 2022 01:57:10 +0000 (01:57 +0000)]
Merge branch 'smattr/gitlab-2262' into 'main'

add missing -I flags to point to perl files

Closes #1576 and #2262

See merge request graphviz/graphviz!2758

2 years agoadd missing -I flags to point to perl files
Matthew Fernandez [Wed, 13 Jul 2022 15:15:11 +0000 (08:15 -0700)]
add missing -I flags to point to perl files

This applies a patch NetBSD has been carrying downstream for some time.

Gitlab: fixes #2262, #1576
Reported-by: Michael Bäuerle <micha@NetBSD.org>
2 years agoMerge branch 'smattr/fe641be3-af28-471f-b861-1478012716ca' into 'main'
Matthew Fernandez [Sun, 17 Jul 2022 05:50:05 +0000 (05:50 +0000)]
Merge branch 'smattr/fe641be3-af28-471f-b861-1478012716ca' into 'main'

squash some unused parameter warnings

See merge request graphviz/graphviz!2756

2 years agodotgen leader_of: remove unused 'g' parameter
Matthew Fernandez [Tue, 12 Jul 2022 03:57:46 +0000 (20:57 -0700)]
dotgen leader_of: remove unused 'g' parameter

2 years agodotgen plain_vnode: remove unused 'orig' parameter
Matthew Fernandez [Tue, 12 Jul 2022 03:56:28 +0000 (20:56 -0700)]
dotgen plain_vnode: remove unused 'orig' parameter

2 years agocircogen getRotation: remove unused 'g' parameter
Matthew Fernandez [Tue, 12 Jul 2022 03:45:45 +0000 (20:45 -0700)]
circogen getRotation: remove unused 'g' parameter

Removing this made a chain of other function parameters unused, so this removes
them too.

2 years agocircogen getRotation: remove commented out code
Matthew Fernandez [Tue, 12 Jul 2022 03:45:28 +0000 (20:45 -0700)]
circogen getRotation: remove commented out code

2 years agocircogen deglist: squash -Wunused-parameter warnings
Matthew Fernandez [Tue, 12 Jul 2022 03:43:29 +0000 (20:43 -0700)]
circogen deglist: squash -Wunused-parameter warnings

These functions are used in a `Dtdisc_t` structure so need to conform to
particular type signatures.

2 years agocircogen edgelist: squash -Wunused-parameter warnings
Matthew Fernandez [Tue, 12 Jul 2022 03:36:08 +0000 (20:36 -0700)]
circogen edgelist: squash -Wunused-parameter warnings

These functions are used in a `Dtdisc_t` structure so need to conform to
particular type signatures.

2 years agocircogen: remove commented out prototypes
Matthew Fernandez [Tue, 12 Jul 2022 03:33:23 +0000 (20:33 -0700)]
circogen: remove commented out prototypes

These functions were removed in e20473ad1f730c3a0550825cc3a79c13bd02346f.

2 years agocircogen: remove unused 'node_position'
Matthew Fernandez [Tue, 12 Jul 2022 03:31:35 +0000 (20:31 -0700)]
circogen: remove unused 'node_position'

2 years agogvc gvrender_ellipse: removed unused 'n' parameter
Matthew Fernandez [Tue, 12 Jul 2022 03:28:53 +0000 (20:28 -0700)]
gvc gvrender_ellipse: removed unused 'n' parameter

2 years agogvc gvrender_begin_edge: remove unused 'e' parameter
Matthew Fernandez [Tue, 12 Jul 2022 03:22:57 +0000 (20:22 -0700)]
gvc gvrender_begin_edge: remove unused 'e' parameter

2 years agogvc gvrender_begin_node: remove unused 'n' parameter
Matthew Fernandez [Tue, 12 Jul 2022 02:58:29 +0000 (19:58 -0700)]
gvc gvrender_begin_node: remove unused 'n' parameter

2 years agogvc gvrender_end_cluster: remove unused 'g' parameter
Matthew Fernandez [Tue, 12 Jul 2022 02:57:24 +0000 (19:57 -0700)]
gvc gvrender_end_cluster: remove unused 'g' parameter

2 years agogvc gvrender_begin_cluster: remove unused 'sg' parameter
Matthew Fernandez [Tue, 12 Jul 2022 02:56:19 +0000 (19:56 -0700)]
gvc gvrender_begin_cluster: remove unused 'sg' parameter

2 years agogvc gvrender_begin_graph: remove unused 'g' parameter
Matthew Fernandez [Tue, 12 Jul 2022 02:54:45 +0000 (19:54 -0700)]
gvc gvrender_begin_graph: remove unused 'g' parameter

2 years agogvc gvrender_begin_graph: remove commented out code
Matthew Fernandez [Tue, 12 Jul 2022 02:54:09 +0000 (19:54 -0700)]
gvc gvrender_begin_graph: remove commented out code

2 years agoMerge branch 'dot-demo-makefile' into 'main'
Matthew Fernandez [Sat, 16 Jul 2022 16:44:47 +0000 (16:44 +0000)]
Merge branch 'dot-demo-makefile' into 'main'

dot.demo: replace LDFLAGS with LDLIBS in Makefile

See merge request graphviz/graphviz!2761

2 years agodot.demo: replace LDFLAGS with LDLIBS in Makefile
Vincent Fu [Fri, 15 Jul 2022 00:19:20 +0000 (20:19 -0400)]
dot.demo: replace LDFLAGS with LDLIBS in Makefile

With LDFLAGS I am unable to build the demo programs using the Makefile
but the Makefile works with LDFLAGS changed to LDLIBS. We are using
pkg-config to obtain the appropriate libraries. So LDLIBS is the
appropriate variable to use.

Gitlab: fixes #2250

Signed-off-by: Vincent Fu <vincentfu@gmail.com>
2 years agoMerge branch 'smattr/B3A96CCC-49D5-41E2-BACB-30F753258B2B' into 'main'
Matthew Fernandez [Sat, 16 Jul 2022 02:53:19 +0000 (02:53 +0000)]
Merge branch 'smattr/B3A96CCC-49D5-41E2-BACB-30F753258B2B' into 'main'

replace 'oldof' with central allocation wrappers

See merge request graphviz/graphviz!2754

2 years agoast: remove now unused 'oldof'
Matthew Fernandez [Sat, 9 Jul 2022 16:57:22 +0000 (09:57 -0700)]
ast: remove now unused 'oldof'

2 years agogvpr addOutputGraph: fix an unchecked allocation failure
Matthew Fernandez [Sat, 9 Jul 2022 16:55:51 +0000 (09:55 -0700)]
gvpr addOutputGraph: fix an unchecked allocation failure

2 years agogvpr parseArgs: fix an unchecked allocation failure
Matthew Fernandez [Sat, 9 Jul 2022 16:52:46 +0000 (09:52 -0700)]
gvpr parseArgs: fix an unchecked allocation failure

2 years agogvpr makef: fix an unchecked allocation failure
Matthew Fernandez [Sat, 9 Jul 2022 16:46:35 +0000 (09:46 -0700)]
gvpr makef: fix an unchecked allocation failure

The previous use of `oldof` was a verbose way of allocating a single element, so
we replace it with the central allocation helper, also avoiding crashes if
allocation fails.

2 years agoexpr expush: remove unnecessary cast
Matthew Fernandez [Sat, 9 Jul 2022 16:32:25 +0000 (09:32 -0700)]
expr expush: remove unnecessary cast

2 years agoMerge branch 'smattr/d2888353-8f83-47f7-b03d-7303042d9142' into 'main'
Matthew Fernandez [Sat, 16 Jul 2022 01:43:59 +0000 (01:43 +0000)]
Merge branch 'smattr/d2888353-8f83-47f7-b03d-7303042d9142' into 'main'

reduce strdup calls

See merge request graphviz/graphviz!2755

2 years agoxdot sprintXDot: steal agxbuf’s buffer instead of double copying
Matthew Fernandez [Sat, 9 Jul 2022 15:39:55 +0000 (08:39 -0700)]
xdot sprintXDot: steal agxbuf’s buffer instead of double copying

8064f6e902cc4c3062cffa2d1d307ee9cf1893bb replaced lib/xdot’s inline copy of a
subset of the agxbuf.h API with an include of the header containing the full
API. This gives us access to `agxbdisown`. This function effectively does the
work of `agxbuse;strdup;agxbfree` by taking the existing dynamically allocated
buffer within the `agxbuf` object, rather than making yet another copy of this
data only to discard the original.

2 years agoedgepaint: remove unnecessary 'strdup' of 'lightness'
Matthew Fernandez [Sat, 9 Jul 2022 15:29:58 +0000 (08:29 -0700)]
edgepaint: remove unnecessary 'strdup' of 'lightness'

Pointers `getopt` returns in `optarg` point into the original `argv` which lives
in immortal storage. There is no need to duplicate such a pointer to prolong its
lifetime.

This commit looks like it is changing the source string, but `arg` and `optarg`
point at the same thing at this point. But `optarg` is not `const` qualified, so
we can do this assignment without a compiler warning.

2 years agosmyrna: remove unnecessary 'strdup' calls in 'mTestgvpr'
Matthew Fernandez [Sat, 9 Jul 2022 15:24:11 +0000 (08:24 -0700)]
smyrna: remove unnecessary 'strdup' calls in 'mTestgvpr'

The strings being duplicated are passed through to `gvpr` which does not modify
its arguments. So by rearranging when we release `bf2`, we can remove the need
to dynamically allocate the members of `argv`.

2 years agosmyrna: fix memory leak in 'mTestgvpr'
Matthew Fernandez [Sat, 9 Jul 2022 15:17:44 +0000 (08:17 -0700)]
smyrna: fix memory leak in 'mTestgvpr'

Even when a text field is empty, calling `gtk_text_buffer_get_text` returns a
dynamically allocated (empty) string that must be freed.

2 years agosmyrna load_attributes: use a string view for 'ss'
Matthew Fernandez [Sun, 10 Jul 2022 18:03:02 +0000 (11:03 -0700)]
smyrna load_attributes: use a string view for 'ss'

This code contained multiple memory leaks and unchecked allocations:¹

  1. `pch` was `strdup`-ed into `ss` on line 58. But `strdup`-ed again when
     being saved to an `attr` field. This lost the memory originating from the
     first `strdup`.

  2. Cases 0, 3, and 4 of the switch do not save the full contents of `ss` at
     all. This means naively removing the `strdup` calls in cases 1, 2, and
     default would not have solved the memory leak in (1) because cases 0, 3,
     and 4 would still leak memory.

  3. None of the `strdup` calls in this function were checked for failure.

This commit attempts to solve all the above. We now take a read-only reference
to the string data on line 58 and only `strdup` it when needed.

¹ It also assumes all lines of the input file are fewer characters than
  `BUFSIZ`, a platform-dependent constant. I do not know why this would be
  guaranteed. However, this problem seems orthogonal to the above.

2 years agocgraph: add a 'strdup' equivalent for 'strview_t'
Matthew Fernandez [Sun, 10 Jul 2022 17:53:54 +0000 (10:53 -0700)]
cgraph: add a 'strdup' equivalent for 'strview_t'

This will be used in an upcoming commit.

2 years agocgraph: add a 'strstr' equivalent for 'strview_t'
Matthew Fernandez [Sun, 10 Jul 2022 17:50:42 +0000 (10:50 -0700)]
cgraph: add a 'strstr' equivalent for 'strview_t'

This will be used in an upcoming commit.

2 years agosmyrna: simplify outer 'load_attributes' loop
Matthew Fernandez [Sat, 9 Jul 2022 15:13:48 +0000 (08:13 -0700)]
smyrna: simplify outer 'load_attributes' loop

This loop contains no `continue` statements, its counter is incremented in a
regular way, and the counter is unused outside the loop. So we can write the
loop more concisely and scope `attrcount` more tightly by using a `for` loop
instead of a `while` loop.

2 years agosmyrna: simplify inner 'load_attributes' loop
Matthew Fernandez [Sat, 9 Jul 2022 15:11:44 +0000 (08:11 -0700)]
smyrna: simplify inner 'load_attributes' loop

This loop contains no `continue` statements, its counter is incremented in a
regular way, and the counter is unused outside the loop. So we can write the
loop more concisely and scope `ind` more tightly by using a `for` loop instead
of a `while` loop.

2 years agosmyrna: remove an unnecessary 'strdup'
Matthew Fernandez [Sat, 9 Jul 2022 15:05:04 +0000 (08:05 -0700)]
smyrna: remove an unnecessary 'strdup'

Pointers `getopt` returns in `optarg` point into the original `argv` which lives
in immortal storage. There is no need to duplicate such a pointer to prolong its
lifetime.

2 years agocgraph: fix a missing header guard
Matthew Fernandez [Sun, 10 Jul 2022 02:44:32 +0000 (19:44 -0700)]
cgraph: fix a missing header guard

2 years agoMerge branch 'smattr/53F5F123-E14D-494D-B685-B8F9C64A50DD' into 'main'
Matthew Fernandez [Fri, 15 Jul 2022 01:17:44 +0000 (01:17 +0000)]
Merge branch 'smattr/53F5F123-E14D-494D-B685-B8F9C64A50DD' into 'main'

mm2gv: remove unused 'mm_typecode_to_str'

See merge request graphviz/graphviz!2753

2 years agomm2gv: remove unused 'mm_typecode_to_str'
Matthew Fernandez [Sun, 10 Jul 2022 19:40:58 +0000 (12:40 -0700)]
mm2gv: remove unused 'mm_typecode_to_str'

2 years agomm2gv SparseMatrix_import_matrix_market: replace an 'assert' with 'UNREACHABLE'
Matthew Fernandez [Sun, 10 Jul 2022 19:39:36 +0000 (12:39 -0700)]
mm2gv SparseMatrix_import_matrix_market: replace an 'assert' with 'UNREACHABLE'

This is slightly clearer and yields more reliable error behavior.

2 years agoMerge branch 'types-h' into 'main'
Matthew Fernandez [Sun, 10 Jul 2022 01:30:24 +0000 (01:30 +0000)]
Merge branch 'types-h' into 'main'

types.h: doxygen comments

See merge request graphviz/graphviz!2742