-
Notifications
You must be signed in to change notification settings - Fork 64
/
startswith.go
48 lines (35 loc) · 1.08 KB
/
startswith.go
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
package string
import (
"fmt"
"strings"
"github.com/project-flogo/core/data"
"github.com/project-flogo/core/data/coerce"
"github.com/project-flogo/core/support/log"
"github.com/project-flogo/core/data/expression/function"
)
type StartsWith struct {
}
func init() {
function.Register(&StartsWith{})
}
func (s *StartsWith) Name() string {
return "startsWith"
}
func (s *StartsWith) GetCategory() string {
return "string"
}
func (s *StartsWith) Sig() (paramTypes []data.Type, isVariadic bool) {
return []data.Type{data.TypeString, data.TypeString}, false
}
func (s *StartsWith) Eval(params ...interface{}) (interface{}, error) {
str, err := coerce.ToString(params[0])
if err != nil {
return nil, fmt.Errorf("string.startsWith function first parameter [%+v] must be string", params[0])
}
substr, err := coerce.ToString(params[1])
if err != nil {
return nil, fmt.Errorf("string.startsWith function second parameter [%+v] must be string", params[1])
}
log.RootLogger().Debugf("Reports whether \"%s\" begins with \"%s\"", str, substr)
return strings.HasPrefix(str, substr), nil
}