File: event.go

package info (click to toggle)
go-dlib 5.6.0.9%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,200 kB
  • sloc: ansic: 4,664; xml: 1,456; makefile: 20; sh: 15
file content (143 lines) | stat: -rw-r--r-- 3,234 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
 *
 * Author:     jouyouyun <jouyouwen717@gmail.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

// fork from https://github.com/pocke/goevent
package event

import (
	"errors"
	"fmt"
	"reflect"
	"sync"
)

type Event struct {
	listeners []reflect.Value
	lmu       sync.RWMutex
	argTypes  []reflect.Type
}

// New
func New(f interface{}) *Event {
	fn := reflect.ValueOf(f)
	if fn.Kind() != reflect.Func {
		panic("not a function")
	}
	fnType := fn.Type()
	fnNum := fnType.NumIn()
	argTypes := make([]reflect.Type, fnNum)
	for i := 0; i < fnNum; i++ {
		argTypes[i] = fnType.In(i)
	}
	return &Event{
		argTypes: argTypes,
	}
}

// On
func (e *Event) On(f interface{}) error {
	fn, err := e.checkFuncSignature(f)
	if err != nil {
		return err
	}

	e.lmu.Lock()
	e.listeners = append(e.listeners, *fn)
	e.lmu.Unlock()
	return nil
}

// Off
func (e *Event) Off(f interface{}) error {
	fn := reflect.ValueOf(f)

	e.lmu.Lock()
	l := len(e.listeners)
	m := l // for error check
	for i := 0; i < l; i++ {
		if fn == e.listeners[i] {
			// XXX: GC Ref: http://jxck.hatenablog.com/entry/golang-slice-internals
			e.listeners = append(e.listeners[:i], e.listeners[i+1:]...)
			l--
			i--
		}
	}
	e.lmu.Unlock()

	if l == m {
		return fmt.Errorf("Listener does't exists")
	}
	return nil
}

// Trigger
func (e *Event) Trigger(args ...interface{}) error {
	// check args len
	if len(e.argTypes) != len(args) {
		return fmt.Errorf("argument length expected %d, but got %d", len(e.argTypes), len(args))
	}
	// check each arg type
	for i, t := range e.argTypes {
		t0 := reflect.TypeOf(args[i])
		if t != t0 {
			return fmt.Errorf("args[%d] type expected %s, but got %s", i, t, t0)
		}
	}

	arguments := make([]reflect.Value, len(args))
	for i, v := range args {
		arguments[i] = reflect.ValueOf(v)
	}

	e.lmu.RLock()
	defer e.lmu.RUnlock()

	wg := sync.WaitGroup{}
	wg.Add(len(e.listeners))
	for _, fn := range e.listeners {
		go func(f reflect.Value) {
			defer wg.Done()
			f.Call(arguments)
		}(fn)
	}
	wg.Wait()
	return nil
}

func (e *Event) checkFuncSignature(f interface{}) (*reflect.Value, error) {
	fn := reflect.ValueOf(f)
	if fn.Kind() != reflect.Func {
		return nil, errors.New("not a function")
	}
	fnType := fn.Type()
	fnNum := fnType.NumIn()
	// check args len
	if len(e.argTypes) != fnNum {
		return nil, fmt.Errorf("argument length expected %d, but got %d", len(e.argTypes), fnNum)
	}

	// check each arg type
	for i, t := range e.argTypes {
		t0 := fnType.In(i)
		if t != t0 {
			return nil, fmt.Errorf("args[%d] type expected %s, but got %s", i, t, t0)
		}
	}
	return &fn, nil
}