// - async.go -
packagemainimport("fmt""sync")// ----------------
// This is simple "inheritance" via embeding, but beware of such implementations.
// It exposes public methods of embeded structs, as sideeffect.
// ----------------
typeAsyncStructstruct{sync.Oncesync.Mutexsync.WaitGroupvalueint}func(a*AsyncStruct)Increase(){a.Add(1)gofunc(){a.Lock()defera.Unlock()defera.Done()a.value++}()}funcmain(){a:=AsyncStruct{}a.Increase()a.Wait()fmt.Print(a.value)}
// - logger.go -
packagemainimport("fmt""os""github.com/sirupsen/logrus""go.uber.org/zap")// ------
// Dependency injection using structs with interface fields.
// ------
typeLoggerinterface{Panic(args...interface{})Panicf(formatstring,args...interface{})Info(args...interface{})Infof(formatstring,args...interface{})Print(args...interface{})Printf(formatstring,args...interface{})Warn(args...interface{})Warnf(formatstring,args...interface{})Error(args...interface{})Errorf(formatstring,args...interface{})}typeLogstruct{Logger}typeZapFacadestruct{*zap.SugaredLogger}func(z*ZapFacade)Print(args...interface{}){z.Info(args)}func(z*ZapFacade)Printf(formatstring,args...interface{}){z.Infof(format,args)}funcmain(){fmt.Println("Logrus (default)")// Default Logrus
{log:=Log{logrus.New()}log.Info("hi")log.Warn("hi")log.Error("hi")}fmt.Println("Logrus (json)"){log:=Log{&logrus.Logger{Out:os.Stderr,Formatter:new(logrus.JSONFormatter),Hooks:make(logrus.LevelHooks),Level:logrus.DebugLevel,}}log.Info("hi")log.Warn("hi")log.Error("hi")}fmt.Println("UberZap"){logger,_:=zap.NewProduction()deferlogger.Sync()// flushes buffer, if any
log:=Log{&ZapFacade{logger.Sugar()}}log.Info("hi")log.Warn("hi")log.Error("hi")}}
// - struct_tags.go -
packagemainimport("fmt""reflect")// --------------------------------------------
// Some quick example of struct tags (tags).
// -------------------------------------------
funcmain(){data:=struct{Variable1string`json:"name,omitempty"`Variable2string`unformated strings are OK!`}{"dummy1","dummy2",}t:=reflect.TypeOf(data)for_,val:=range[]string{"Variable1","Variable2","Variable3"}{iffield,ok:=t.FieldByName(val);ok{fmt.Printf("\nField: .%s\n",val)fmt.Printf("\tWhole tag : %q\n",field.Tag)fmt.Printf("\tValue of 'json': %q\n",field.Tag.Get("json"))}else{fmt.Printf("\nNo Field: .%s\n",val)}}}