Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shared session contract #2130

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

DavideD
Copy link
Member

@DavideD DavideD commented Feb 19, 2025

A first draft of the shared session contract. I've basically collected the methods we already have in both sessions.

See Mutiny.SharedSessionContract (or Stage.SharedSessionContract).
Personally, I like knowing which methods are not specific to a session.

@DavideD DavideD requested review from FroMage and gavinking February 19, 2025 17:20
@gavinking
Copy link
Member

SharedSessionContract is not a good name, so before anything else, an acceptable name needs to be found.

@@ -28,6 +29,8 @@
@Incubating
public interface ReactiveStatelessSession extends ReactiveQueryProducer, ReactiveSharedSessionContractImplementor {

<E,T> CompletionStage<T> reactiveFetch(E entity, Attribute<E,T> field);

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
ReactiveQueryProducer.reactiveFetch
; it is advisable to add an Override annotation.

/**
* Re-read the state of the given instance from the underlying database,
* requesting the given {@link LockMode}.
* Create an instance of {@link SelectionQuery} for the given SQL query

Check notice

Code scanning / CodeQL

Confusing overloading of methods Note

Method Session.persist(..) could be confused with overloaded method
persist
, since dispatch depends on static types.
* <li>If the result set has a single column, the results will be returned
* as scalars.</li>
* <li>Otherwise, if the result set has multiple columns, the results will
* be returned as elements of arrays of type {@code Object[]}.</li>

Check notice

Code scanning / CodeQL

Confusing overloading of methods Note

Method Session.remove(..) could be confused with overloaded method
remove
, since dispatch depends on static types.
@gavinking
Copy link
Member

Also, please don't move fetch() up. It has different semantics between the two kinds of session.

@gavinking
Copy link
Member

Also not sure it's a good idea to move batchFetchSize onto StatelessSession. That was left off deliberately.

@DavideD
Copy link
Member Author

DavideD commented Feb 20, 2025

OK, I'm going to revert back the fetch and getBatchFetchSize().

@DavideD DavideD force-pushed the 2104-common-shared-contract branch from d1d85a2 to 2e42d90 Compare February 20, 2025 09:52
@DavideD
Copy link
Member Author

DavideD commented Feb 20, 2025

OK, I'm going to revert back the fetch and getBatchFetchSize().

Done

@DavideD
Copy link
Member Author

DavideD commented Feb 20, 2025

By the way, why do we have .persist(Object) and .persist(Object...). Isn't the second one enough?

* {@code session.fetch(book, Book_.isbn).thenAccept(isbn -> print(isbn))}
* </pre>
*/
<E, T> Uni<T> fetch(E entity, Attribute<E, T> field);

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
SharedSessionContract.fetch
; it is advisable to add an Override annotation.
*
* @throws IllegalArgumentException if the given instance is not managed
* @see org.hibernate.Hibernate#unproxy(Object)

Check notice

Code scanning / CodeQL

Confusing overloading of methods Note

Method Session.refresh(..) could be confused with overloaded method
refresh
, since dispatch depends on static types.
@gavinking
Copy link
Member

By the way, why do we have .persist(Object) and .persist(Object...). Isn't the second one enough?

Just avoids an array instantiation in the overwhelmingly more common case that you're only passing one entity. That's unlikely to be a huge overhead, but the overload doesn't cause any problems that I'm aware of.

@DavideD DavideD changed the title Share session contract Shared session contract Feb 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants