lib: rename "notification" -> "message"
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Sat, 8 Dec 2018 18:07:25 +0000 (13:07 -0500)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 12 Apr 2019 21:25:50 +0000 (17:25 -0400)
commita940e80711b5049978e276be41877ff2dee09425
tree681284ea3f71ea1a9ab6c3bb84f1c445e5324ad8
parent04aed3b864d8c3886ab39fc648fca815d4214083
lib: rename "notification" -> "message"

The term "notification" is usually used, in APIs, for asynchronous
alerts of some sort. You get notified for something that you were not
actively waiting for, like an interrupt.

From Merriam-Webster, a _message_ is:

> a communication in writing, in speech, or by signals

and a _communication_ is:

> information communicated : information transmitted or conveyed

Therefore, "message" seems more adapted than "notification" for
Babeltrace's API, where you actively iterate messages which are
communications from an upstream component to a downstream component.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
128 files changed:
.gitignore
cli/babeltrace.c
configure.ac
include/Makefile.am
include/babeltrace/babeltrace.h
include/babeltrace/graph/component-class-filter.h
include/babeltrace/graph/component-class-internal.h
include/babeltrace/graph/component-class-sink-colander-internal.h
include/babeltrace/graph/component-class-source.h
include/babeltrace/graph/connection-internal.h
include/babeltrace/graph/graph-internal.h
include/babeltrace/graph/message-const.h [new file with mode: 0644]
include/babeltrace/graph/message-event-const.h [new file with mode: 0644]
include/babeltrace/graph/message-event-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-event.h [new file with mode: 0644]
include/babeltrace/graph/message-inactivity-const.h [new file with mode: 0644]
include/babeltrace/graph/message-inactivity-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-inactivity.h [new file with mode: 0644]
include/babeltrace/graph/message-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-iterator-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-iterator.h [new file with mode: 0644]
include/babeltrace/graph/message-packet-const.h [new file with mode: 0644]
include/babeltrace/graph/message-packet-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-packet.h [new file with mode: 0644]
include/babeltrace/graph/message-stream-const.h [new file with mode: 0644]
include/babeltrace/graph/message-stream-internal.h [new file with mode: 0644]
include/babeltrace/graph/message-stream.h [new file with mode: 0644]
include/babeltrace/graph/notification-const.h [deleted file]
include/babeltrace/graph/notification-event-const.h [deleted file]
include/babeltrace/graph/notification-event-internal.h [deleted file]
include/babeltrace/graph/notification-event.h [deleted file]
include/babeltrace/graph/notification-inactivity-const.h [deleted file]
include/babeltrace/graph/notification-inactivity-internal.h [deleted file]
include/babeltrace/graph/notification-inactivity.h [deleted file]
include/babeltrace/graph/notification-internal.h [deleted file]
include/babeltrace/graph/notification-iterator-internal.h [deleted file]
include/babeltrace/graph/notification-iterator.h [deleted file]
include/babeltrace/graph/notification-packet-const.h [deleted file]
include/babeltrace/graph/notification-packet-internal.h [deleted file]
include/babeltrace/graph/notification-packet.h [deleted file]
include/babeltrace/graph/notification-stream-const.h [deleted file]
include/babeltrace/graph/notification-stream-internal.h [deleted file]
include/babeltrace/graph/notification-stream.h [deleted file]
include/babeltrace/graph/port-output-message-iterator.h [new file with mode: 0644]
include/babeltrace/graph/port-output-notification-iterator.h [deleted file]
include/babeltrace/graph/self-component-port-input-message-iterator.h [new file with mode: 0644]
include/babeltrace/graph/self-component-port-input-notification-iterator.h [deleted file]
include/babeltrace/graph/self-message-iterator.h [new file with mode: 0644]
include/babeltrace/graph/self-notification-iterator.h [deleted file]
include/babeltrace/lib-logging-internal.h
include/babeltrace/plugin/plugin-dev.h
include/babeltrace/types.h
lib/graph/Makefile.am
lib/graph/component-class-sink-colander.c
lib/graph/component-class.c
lib/graph/component-source.c
lib/graph/component.c
lib/graph/connection.c
lib/graph/graph.c
lib/graph/iterator.c
lib/graph/message/Makefile.am [new file with mode: 0644]
lib/graph/message/discarded-events.c [new file with mode: 0644]
lib/graph/message/discarded-packets.c [new file with mode: 0644]
lib/graph/message/event.c [new file with mode: 0644]
lib/graph/message/inactivity.c [new file with mode: 0644]
lib/graph/message/message.c [new file with mode: 0644]
lib/graph/message/packet.c [new file with mode: 0644]
lib/graph/message/stream.c [new file with mode: 0644]
lib/graph/notification/Makefile.am [deleted file]
lib/graph/notification/discarded-events.c [deleted file]
lib/graph/notification/discarded-packets.c [deleted file]
lib/graph/notification/event.c [deleted file]
lib/graph/notification/inactivity.c [deleted file]
lib/graph/notification/notification.c [deleted file]
lib/graph/notification/packet.c [deleted file]
lib/graph/notification/stream.c [deleted file]
lib/lib-logging.c
lib/plugin/plugin-so.c
plugins/ctf/common/Makefile.am
plugins/ctf/common/bfcr/bfcr.h
plugins/ctf/common/metadata/visitor-generate-ir.c
plugins/ctf/common/msg-iter/Makefile.am [new file with mode: 0644]
plugins/ctf/common/msg-iter/logging.c [new file with mode: 0644]
plugins/ctf/common/msg-iter/logging.h [new file with mode: 0644]
plugins/ctf/common/msg-iter/msg-iter.c [new file with mode: 0644]
plugins/ctf/common/msg-iter/msg-iter.h [new file with mode: 0644]
plugins/ctf/common/notif-iter/Makefile.am [deleted file]
plugins/ctf/common/notif-iter/logging.c [deleted file]
plugins/ctf/common/notif-iter/logging.h [deleted file]
plugins/ctf/common/notif-iter/notif-iter.c [deleted file]
plugins/ctf/common/notif-iter/notif-iter.h [deleted file]
plugins/ctf/fs-sink/writer.c
plugins/ctf/fs-sink/writer.h
plugins/ctf/fs-src/data-stream-file.c
plugins/ctf/fs-src/data-stream-file.h
plugins/ctf/fs-src/fs.c
plugins/ctf/fs-src/fs.h
plugins/ctf/lttng-live/data-stream.c
plugins/ctf/lttng-live/data-stream.h
plugins/ctf/lttng-live/lttng-live-internal.h
plugins/ctf/lttng-live/lttng-live.c
plugins/ctf/lttng-live/lttng-viewer-abi.h
plugins/ctf/lttng-live/viewer-connection.c
plugins/ctf/plugin.c
plugins/lttng-utils/copy.c
plugins/lttng-utils/debug-info.h
plugins/lttng-utils/plugin.c
plugins/text/dmesg/dmesg.c
plugins/text/dmesg/dmesg.h
plugins/text/plugin.c
plugins/text/pretty/pretty.c
plugins/text/pretty/pretty.h
plugins/text/pretty/print.c
plugins/utils/counter/counter.c
plugins/utils/counter/counter.h
plugins/utils/dummy/dummy.c
plugins/utils/dummy/dummy.h
plugins/utils/muxer/muxer.c
plugins/utils/muxer/muxer.h
plugins/utils/plugin.c
plugins/utils/trimmer/copy.c
plugins/utils/trimmer/iterator.c
plugins/utils/trimmer/iterator.h
tests/lib/Makefile.am
tests/lib/test-plugin-plugins/sfs.c
tests/lib/test_bt_message_iterator.c [new file with mode: 0644]
tests/lib/test_bt_notification_iterator.c [deleted file]
tests/lib/test_graph_topo.c
This page took 0.036178 seconds and 5 git commands to generate.