SoftwareQuality/jabref/docs/decisions/0034-use-citation-key-for-grouping-chat-messages.md
Artem Semenovykh 415abbc47b import jabref
2024-11-16 11:43:42 +01:00

70 lines
2.3 KiB
Markdown

---
nav_order: 0034
parent: Decision Records
---
# Use Citation Key for Grouping Chat Messages
## Context and Problem Statement
Because we store chat messages not inside a BIB entry in `.bib` filecc, the chats file is represented as a map to
BIB entry and a list of messages. We need to specify the key of this map. Turns out, it is not that easy.
## Decision Drivers
* The key should exist for every BIB entry
* The key should be unique along other BIB entries in one library file
* The key should not change at run-time, between launches of JabRef, and should be cross-platform (most important)
## Considered Options
* `BibEntry` Java object
* `BibEntry`'s `id`
* `BibEntry`'s Citation key
* `BibEntry`'s `ShareId`
## Decision Outcome
Chosen option: "`BibEntry`'s Citation key", because this is the only choice that complains to the third point in Decision Drivers.
### Positive Consequences
* Easy to implement
* Cross-platform
### Negative Consequences
* If the citation key is changed externally, then the chats file becomes out-of-sync
* Additional user interaction in order to make the citation key complain the first and second points of Decision Drivers
## Pros and Cons of the Options
### `BibEntry` Java object
Very bad, because it works only at run-time and is not stable.
### `BibEntry`'s `id`
JabRef stores a unique identifier for each `BibEntry`.
This identifier is created on each load of a library (and not stored permanently).
Very bad, for the same reasons as `BibEntry` Java object.
### `BibEntry`'s Citation key
* Good, because it is cross-platform, stable (meaning stays the same across launches of JabRef)
* Bad, because it is not guaranteed that citation key exists on `BibEntry`, and that it is unique across other
`BibEntriy`'s' in the library
### `BibEntry`'s `ShareId`
[ADR-0027](0027-synchronization.md) describes the procedure of synchronization of a Bib(La)TeX library with a server.
Thereby, also local and remote entries need to be kept consistent.
The solution chosen there is that the **server** creates a UUID for each entry.
This approach cannot be used here, because there is no server running which we can ask for an UUID of an entry.
## More Information
Refer to [issue #160](https://github.com/JabRef/jabref/issues/160) in JabRef main repository