-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tends to be extremely useful.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package xsync | ||
|
||
type ContextMutex struct { | ||
ch chan struct{} | ||
} | ||
|
||
func NewContextMutex() *ContextMutex { | ||
return &ContextMutex{ | ||
ch: make(chan struct{}, 1), | ||
} | ||
} | ||
|
||
func (cm *ContextMutex) TryLock() bool { | ||
select { | ||
case cm.ch <- struct{}{}: | ||
return true | ||
default: | ||
return false | ||
} | ||
} | ||
|
||
func (cm *ContextMutex) Lock(ctx context.Context) error { | ||
select { | ||
case <-ctx.Done(): | ||
return fmt.Errorf("failed to acquire lock: %w", ctx.Err()) | ||
case cm.ch <- struct{}{}: | ||
return nil | ||
} | ||
} | ||
|
||
func (cm *ContextMutex) Unlock() { | ||
select { | ||
case <-cm.ch: | ||
default: | ||
panic("xsync.ContextMutex: Unlock before Lock") | ||
} | ||
} |