mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
74 lines
2.0 KiB
Go
74 lines
2.0 KiB
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package rwmutex provides switch of concurrent safety feature for sync.RWMutex.
|
|
package rwmutex
|
|
|
|
import "sync"
|
|
|
|
// RWMutex is a sync.RWMutex with a switch of concurrent safe feature.
|
|
// If its attribute *sync.RWMutex is not nil, it means it's in concurrent safety usage.
|
|
// Its attribute *sync.RWMutex is nil in default, which makes this struct mush lightweight.
|
|
type RWMutex struct {
|
|
*sync.RWMutex
|
|
}
|
|
|
|
// New creates and returns a new *RWMutex.
|
|
// The parameter <safe> is used to specify whether using this mutex in concurrent safety,
|
|
// which is false in default.
|
|
func New(safe ...bool) *RWMutex {
|
|
mu := Create(safe...)
|
|
return &mu
|
|
}
|
|
|
|
// Create creates and returns a new RWMutex object.
|
|
// The parameter <safe> is used to specify whether using this mutex in concurrent safety,
|
|
// which is false in default.
|
|
func Create(safe ...bool) RWMutex {
|
|
mu := RWMutex{}
|
|
if len(safe) > 0 && safe[0] {
|
|
mu.RWMutex = new(sync.RWMutex)
|
|
}
|
|
return mu
|
|
}
|
|
|
|
// IsSafe checks and returns whether current mutex is in concurrent-safe usage.
|
|
func (mu *RWMutex) IsSafe() bool {
|
|
return mu.RWMutex != nil
|
|
}
|
|
|
|
// Lock locks mutex for writing.
|
|
// It does nothing if it is not in concurrent-safe usage.
|
|
func (mu *RWMutex) Lock() {
|
|
if mu.RWMutex != nil {
|
|
mu.RWMutex.Lock()
|
|
}
|
|
}
|
|
|
|
// Unlock unlocks mutex for writing.
|
|
// It does nothing if it is not in concurrent-safe usage.
|
|
func (mu *RWMutex) Unlock() {
|
|
if mu.RWMutex != nil {
|
|
mu.RWMutex.Unlock()
|
|
}
|
|
}
|
|
|
|
// RLock locks mutex for reading.
|
|
// It does nothing if it is not in concurrent-safe usage.
|
|
func (mu *RWMutex) RLock() {
|
|
if mu.RWMutex != nil {
|
|
mu.RWMutex.RLock()
|
|
}
|
|
}
|
|
|
|
// RUnlock unlocks mutex for reading.
|
|
// It does nothing if it is not in concurrent-safe usage.
|
|
func (mu *RWMutex) RUnlock() {
|
|
if mu.RWMutex != nil {
|
|
mu.RWMutex.RUnlock()
|
|
}
|
|
}
|