【go 原始碼】sync.Once 詳解
# sync.Once 原始碼閱讀
## 1.Demo
```
package main
import (
"fmt"
"sync"
"time"
)
func main() {
var once sync.Once
for i:=0;i<=10;i++{
go once.Do(func() {
fmt.Println("hello world")
})
}
time.Sleep(time.Second * 2)
}
```
## 2.介紹
sync.Once是sync包中的一個物件,它只有一個方法Do,這個方法很特殊,在程式執行過程中,無論被多少次呼叫,只會執行一次,就與結構體的名稱一樣,once(一次)。那它是如何做的呢?
## 3.使用場景
當程式執行過程中,在會被多次呼叫的地方卻只想執行一次某程式碼塊。就可以全域性宣告一個once,然後用once.Do()來之行此程式碼塊。
## 4.原始碼
```
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package sync
import (
"sync/atomic"
)
// Once is an object that will perform exactly one action.
type Once struct {
m Mutex
done uint32
}
// Do calls the function f if and only if Do is being called for the
// first time for this instance of Once. In other words, given
// var once Once
// if once.Do(f) is called multiple times, only the first call will invoke f,
// even if f has a different value in each invocation. A new instance of
// Once is required for each function to execute.
//
// Do is intended for initialization that must be run exactly once. Since f
// is niladic, it may be necessary to use a function literal to capture the
// arguments to a function to be invoked by Do:
// config.once.Do(func() { config.init(filename) })
//
// Because no call to Do returns until the one call to f returns, if f causes
// Do to be called, it will deadlock.
//
// If f panics, Do considers it to have returned; future calls of Do return
// without calling f.
//
func (o *Once) Do(f func()) {
if atomic.LoadUint32(&o.done) == 1 {
return
}
// Slow-path.
o.m.Lock()
defer o.m.Unlock()
if o.done == 0 {
defer atomic.StoreUint32(&o.done, 1)
f()
}
}
```
## 5.原始碼解析
可以看到once結構體中,有兩個欄位,m是了保證併發安全性的,done是標誌是否已經執行過此方法,如果done是1則表示執行過,0表示未執行。
Do方法中,首先通過atomic.LoadUint32(&o.done),來取得done的值,看是否為1,如果為1就表示已經執行過了,直接返回,未執行則繼續執行。
程式碼很簡單,就不囉嗦了,值得注意的是 `defer atomic.StoreUint32(&o.done, 1)`很精髓,為了防止f()方法中panic,無法為done賦值,作者特地使用defer。值得學習。
----
專案地址:github.com/xmge,更多go原始碼閱讀文章將在公眾號釋出:
![img](https://gosc.oss-cn-beijing.aliyuncs.com/gosc.jpg)
相關文章
- Go sync.Once 的妙用Go
- 從案例中詳解go-errgroup-原始碼Go原始碼
- Go For Web:Golang http 包詳解(原始碼剖析)WebGolangHTTP原始碼
- 詳解Go語言排程迴圈原始碼實現Go原始碼
- redux 原始碼詳解Redux原始碼
- TimSort原始碼詳解原始碼
- HashMap原始碼詳解HashMap原始碼
- HashSet原始碼詳解原始碼
- ProgressHUD原始碼詳解原始碼
- go中panic原始碼解讀Go原始碼
- go中errgroup原始碼解讀Go原始碼
- 七. Go併發程式設計--sync.OnceGo程式設計
- 【Redis原始碼】Redis 6 ACL原始碼詳解Redis原始碼
- ArrayList詳解-原始碼分析原始碼
- LinkedHashMap原始碼詳解HashMap原始碼
- go中waitGroup原始碼解讀GoAI原始碼
- 【Go】我與sync.Once的愛恨糾纏Go
- Android原始碼分析--CircleImageView 原始碼詳解Android原始碼View
- LinkedList詳解-原始碼分析原始碼
- ArrayMap詳解及原始碼分析原始碼
- EventBus詳解及原始碼分析原始碼
- React Scheduler 原始碼詳解(2)React原始碼
- LeakCanary詳解與原始碼分析原始碼
- React Scheduler 原始碼詳解(1)React原始碼
- Spring 原始碼詳解(一)Spring原始碼
- MapReduce 詳解與原始碼分析原始碼
- 詳解HashMap原始碼解析(上)HashMap原始碼
- 詳解HashMap原始碼解析(下)HashMap原始碼
- Android ArrayMap 原始碼詳解Android原始碼
- Android TypedArray 原始碼詳解Android原始碼
- Android SparseArray 原始碼詳解Android原始碼
- Android TypedArray原始碼詳解Android原始碼
- Glide-原始碼詳解IDE原始碼
- go中sync.Mutex原始碼解讀GoMutex原始碼
- go 中 sort 如何排序,原始碼解讀Go排序原始碼
- Go Errors 詳解GoError
- Mapreduce Job提交流程原始碼和切片原始碼詳解原始碼
- 【zookeeper原始碼】啟動流程詳解原始碼