-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update summary on shipped state #605
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple small comments, otherwise this looks good!
@@ -28,6 +29,15 @@ func NewShipmentRepository(db *gorm.DB) IShipmentRepository { | |||
return &shipmentRepository{db} | |||
} | |||
|
|||
// WithTransaction returns a shallow copy of repository with its db changed to txn. The provided txn must be non-nil. | |||
func (repository *shipmentRepository) WithTransaction(txn *gorm.DB) IShipmentRepository { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm... thinking about the signature of this method - why do we pass the DB in from the outside, rather than use repository.db
? And if we shouldn't be using any property from repository
, why is this a member method on IShipmentRepository
?
// WithTransaction returns a shallow copy of repository with its db changed to txn. The provided txn must be non-nil. | ||
func (repository *shipmentRepository) WithTransaction(txn *gorm.DB) IShipmentRepository { | ||
if txn == nil { | ||
panic("nil transaction") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to panic here or return an error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this case is an error in the code, so i think it's better to fail asap with a panic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can buy that logic.
@@ -97,11 +115,76 @@ func (service *inventoryService) HoldItems(refNum string, skus map[string]int) e | |||
} | |||
|
|||
// get stock items associated with SKUs | |||
items, err := service.stockItemRepo.GetStockItemsBySKUs(skusList) | |||
items, err := service.getStockItemsBySKUs(skusList) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really like you pulling this into this service! 👍
Talked through my concerns 1:1 with @tonypizzicato. These changes look good to me! |
Transactions proxy
Transactions proxy are implemented as a wrapper over gorm.DB
Transactions
is used in repos and knows when it is a repo-itself transaction (created with*sql.DB
instance) or when it is already started transaction (instance of*sql.Tx
). So it just proxies calls to*gorm.DB
when transaction is not started and does nothing when transaction already begun.Usage
In case when transaction was not started (
repository.db
is a regular db connection) it just proxies calls to*gorm.DB
instanceWhen repo was instantiated with transaction (means transaction is managed outside repo)
calls to transaction methods in repo itself do nothing.
Running services with outer-managed transactions
To use a service in a service that already started transaction (e.g. https://github.com/FoxComm/highlander/blob/master/middlewarehouse/services/shipment_service.go#L72)
WithTransaction(txn *gorm.DB) IInventoryService
method for such services was implementedUsage
WithTransaction
method return a copy of a service withtxn *gorm.DB
field set to passed transaction.The same approach was used for repos.
In this case it service runs under outer-managed transaction, it gets a copy of a repo with transaction instead old
*gorm.DB
instace -service.unitRepo.WithTransaction(service.txn)
Using transaction proxy and
WithTransaction
approach togetherIn order to make transactions passing to work this two approaches should be used together.
But, in case of using transaction proxies without
WithTransaction
(means repos would always have own db instance instead one with started transaction) it would take no effect on code running and repo would start it's own transaction every time as it does right now.But, in case of using
WithTransaction
methods without transactions proxy would lead tocan't start transaction
errors fromgorm