Commit Graph

2575 Commits

Author SHA1 Message Date
97c93ea965 libsysprof-analyze: track frame length
That way we don't have to decode this too in the subclasses.
2023-04-25 17:09:04 -07:00
62863f08c3 libsysprof-analyze: add various bswap and cast helpers 2023-04-25 17:08:13 -07:00
e9d5cb733d libsysprof-analyze: move to internal types for documents
We want to have an object hierarchy, but we don't want to expose our class
or other internal details to the public API/ABI. This uses the old form of
class definition so we can maintain that.

An alternative would be to do what GDK does for internal types, should we
find that easier to maintain going forward.
2023-04-25 16:19:54 -07:00
a5dafa5409 libsysprof-analyze: rename some private API
prefix with _, use frame type directly, use needs_swap rather than
is_native so it's more clear to readers.
2023-04-25 16:11:59 -07:00
a3cf041326 libsysprof-analyze: print some basic frame information 2023-04-25 16:04:35 -07:00
69930dc876 libsysprof-analyze: read property access to frame header
Also handle swapping the data when non-native endian so that we can leave
our GMappedFile unperturbed (and therefore not have to keep those bytes as
dirty pages in process).
2023-04-25 15:55:41 -07:00
31003c519c libsysprof-analyze: rename to SysprofDocumentFrame
We will eventually be adding sub-types for the various frame types, and
use this as a common ancestor for item inflation.
2023-04-25 15:32:55 -07:00
ed01673a5e libsysprof-analyzer: rename model to SysprofDocument
This will provide better namespacing for the objects inflated from the
document for various frame types. By creating real objects with real
properties we give ourselves quite a bit of flexibility in the data
filtering language coming forth.
2023-04-25 15:26:06 -07:00
63a9f498ea gitignore: ignore .flatpak-builder directory 2023-04-25 15:24:59 -07:00
a97f6a34b0 build: bump GLib and GTK requirements 2023-04-25 15:23:48 -07:00
efab045006 libsysprof-analyze: start on sysprof-analyze library
The goal here is to break up libsysprof into a library for recording
profiles (using libsysprof-capture) and a library for analyzing profiles
(both used by the sysprof UI).
2023-04-25 11:57:26 -07:00
e888d0602e build: always define SYSPROF_COMPILATION 2023-04-25 11:55:25 -07:00
5cbf11db92 build: bump soname to 6
We are doing a lot of upcoming changes, so just synchronize everything to
our next soname bump.
2023-04-25 11:55:13 -07:00
dcbeb0f87a libsysprof: add SysprofCaptureModel
This adds a GListModel that we can use to load capture files. The goal here
is to map the entire capture into memory so we can avoid reading lots of
buffers. That also allows for the model items to live as long as the model
is alive (or underlying file map, really).

The next goal is to stack features on top of this such as implementing the
callgraph as a filter of the model, or generic filters between the
callgraph model and the actual data source model.
2023-04-24 17:26:45 -07:00
cc7e2820f3 build: bump version for development
This will also attempt to get us on the more modern GNOME versioning
train, hopefully to phase out micro numbers eventually.
2023-04-24 17:26:45 -07:00
a13d66f2d0 Update Korean translation 2023-04-23 02:57:51 +00:00
cfd084c9a5 Add Turkish translation 2023-04-15 05:42:00 +00:00
989303d92e Update Russian translation 2023-04-14 22:52:44 +00:00
9fa911aafd Update Basque translation 2023-04-10 06:51:54 +00:00
56120c79b0 Update Serbian translation
(cherry picked from commit 66c9bb1f829dea2fa8a20e009caaaddc3bf0c2af)
2023-04-09 09:31:50 +00:00
74aedbe283 Update Indonesian translation 2023-03-21 03:27:25 +00:00
815ccfe4a9 Post release version bump 2023-03-17 12:15:35 -07:00
94a6aff06a Release 3.48.0 (GNOME 44.0) 2023-03-17 12:14:21 -07:00
15b6f9385b Update Ukrainian translation 2023-03-13 20:32:53 +00:00
f1606ec2a5 Update Polish translation 2023-03-12 15:27:28 +01:00
ea51f04741 Update German translation 2023-03-08 06:49:23 +00:00
c561d10a65 Merge branch 'headerbar-button-icons' into 'master'
window: Minor cleanups

See merge request GNOME/sysprof!69
2023-03-08 01:07:25 +00:00
1e6674f81e Update Swedish translation 2023-03-07 21:23:31 +00:00
80930201ea Update Hungarian translation 2023-03-07 01:38:08 +00:00
b91fd26dbf general: Remove "visible=true" properties
Widgets are shown by default in GTK4, so using
"visible=true" is no longer necessary.
2023-03-06 11:31:44 -03:00
8230ef951b window: Fix icon of the Main Menu button
Embedding a GtkImage inside the Main Menu button is
no longer necessary. Using the icon_name property already
does the trick.
2023-03-06 11:22:30 -03:00
1cc313a280 Merge branch 'f10-main-menu' into 'master'
window: Main Menu tweaks

See merge request GNOME/sysprof!68
2023-03-04 16:24:43 +00:00
a82dc6475a Update Russian translation 2023-03-04 14:38:50 +00:00
c9650b8e48 Update Russian translation 2023-03-04 13:33:41 +00:00
c45c35b65d window: Allow opening Main Menu with F10
By setting the Main Menu button as primary,
the F10 key is automatically assigned to this button.
2023-03-04 05:12:21 -03:00
70bf448e63 window: Add tooltip to the Main Menu button 2023-03-04 05:11:52 -03:00
6341f2856a Merge branch 'fix-group-insert' into 'master'
visualizer-group: Fix insert()

See merge request GNOME/sysprof!67
2023-02-21 23:32:48 +00:00
49c57c4a6f visualizer-group: Fix insert()
sysprof_visualizer_group_insert() would insert widgets intended for
position 0 at position 1 instead. This caused a bug in the marks section
where the "Timings" row, which is supposed to be at the top, would
instead be at position 1. Because the menu buttons are in the top row,
disabling a row through the menu could cause the menu buttons to
disappear.
2023-02-21 17:21:28 -06:00
5c06845e86 tools: add helper to rewrite a PID
This is mostly useful when troubleshooting PIDs in container namespaces
that don't match the host.
2023-02-20 21:04:21 -08:00
d0e63f8573 tools: symbolize callstacks with dump
This can be useful so we don't have to use other tools to try to figure
out what is already right in there.
2023-02-20 20:08:45 -08:00
d7d073505c sysprof-dump: print allocation call stacks 2023-02-20 19:46:22 -08:00
81909d967a Update Ukrainian translation 2023-02-14 18:00:35 +00:00
d1afa60ce5 Update Georgian translation 2023-02-14 07:27:37 +00:00
36ff2c02c2 Merge branch 'mark-translatable' into 'master'
application: Mark 4 strings translatable

Closes #85

See merge request GNOME/sysprof!66
2023-02-13 19:51:45 +00:00
ca3b4844b0 application: Mark 4 strings translatable 2023-02-13 19:51:45 +00:00
8417c89f83 Update Slovenian translation 2023-02-12 18:31:28 +00:00
c3d9c4390a Merge branch 'typo-pseudo' into 'master'
chore: fix typo in comment: `psuedo` -> `pseudo`

See merge request GNOME/sysprof!65
2023-02-12 18:15:45 +00:00
d2af3d72ac chore: fix typo in comment: psuedo -> pseudo 2023-02-11 20:24:47 +01:00
ade6374856 Update Swedish translation 2023-01-27 20:07:47 +00:00
b6995db978 Update Ukrainian translation 2023-01-27 17:29:48 +00:00