2013-10-06 21:06:47 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"text/template"
|
|
|
|
)
|
|
|
|
|
|
|
|
var packageTmpl = template.Must(template.New("package").Parse(`package {{.Name}}
|
|
|
|
|
|
|
|
import "github.com/huin/goupnp/soap"
|
|
|
|
|
|
|
|
const ({{range .DeviceTypes}}
|
|
|
|
{{.Const}} = "{{.URN}}"
|
|
|
|
{{end}})
|
|
|
|
|
|
|
|
const ({{range .ServiceTypes}}
|
|
|
|
{{.Const}} = "{{.URN}}"
|
|
|
|
{{end}})
|
|
|
|
|
|
|
|
{{range .Services}}
|
|
|
|
{{$srv := .}}
|
|
|
|
{{$srvIdent := printf "%s%s" .Name .Version}}
|
|
|
|
|
|
|
|
// {{$srvIdent}} is a client for UPnP SOAP service with URN "{{.URN}}".
|
|
|
|
type {{$srvIdent}} struct {
|
|
|
|
SOAPClient soap.SOAPClient
|
|
|
|
}
|
|
|
|
|
|
|
|
{{range .SCPD.Actions}}{{/* loops over *SCPDWithURN values */}}
|
|
|
|
|
|
|
|
{{$reqType := printf "_%s_%s_Request" $srvIdent .Name}}
|
|
|
|
{{$respType := printf "_%s_%s_Response" $srvIdent .Name}}
|
|
|
|
|
|
|
|
// {{$reqType}} is the XML structure for the input arguments for action {{.Name}}.
|
|
|
|
type {{$reqType}} struct {{"{"}}{{range .Arguments}}{{if .IsInput}}
|
2013-10-06 21:39:16 +00:00
|
|
|
{{.Name}} {{$srv.SCPD.GoKindNameForVariable .RelatedStateVariable "string"}}
|
2013-10-06 21:06:47 +00:00
|
|
|
{{end}}{{end}}}
|
|
|
|
|
|
|
|
// {{$respType}} is the XML structure for the output arguments for action {{.Name}}.
|
|
|
|
type {{$respType}} struct {{"{"}}{{range .Arguments}}{{if .IsOutput}}
|
2013-10-06 21:39:16 +00:00
|
|
|
{{.Name}} {{$srv.SCPD.GoKindNameForVariable .RelatedStateVariable "string"}}
|
2013-10-06 21:06:47 +00:00
|
|
|
{{end}}{{end}}}
|
|
|
|
|
2013-10-06 22:16:25 +00:00
|
|
|
// {{.Name}} action.
|
|
|
|
// Arguments:
|
|
|
|
//{{range .Arguments}}{{if .IsInput}}
|
|
|
|
// * {{.Name}}: {{$v := $srv.SCPD.GetStateVariable .RelatedStateVariable}}
|
|
|
|
{{if $v}}// (related state variable: {{$v.Name}})
|
|
|
|
// - {{if $v.AllowedValueRange}}allowed range: {{$v.AllowedValueRange.Minimum}} to {{$v.AllowedValueRange.Maximum}}{{end}}
|
|
|
|
// - {{if $v.AllowedValues}}allowed values:
|
|
|
|
// {{range $i, $val := $v.AllowedValues}}{{if $i}}|{{end}}{{$val}}{{end}}{{end}}
|
|
|
|
//{{else}}
|
|
|
|
// (unknown){{end}}
|
|
|
|
//{{end}}{{end}}
|
|
|
|
//
|
|
|
|
// Return values:
|
|
|
|
//{{range .Arguments}}{{if .IsOutput}}
|
|
|
|
// * {{.Name}}: {{$v := $srv.SCPD.GetStateVariable .RelatedStateVariable}}
|
|
|
|
{{if $v}}// (related state variable: {{$v.Name}})
|
|
|
|
// - {{if $v.AllowedValueRange}}allowed range: {{$v.AllowedValueRange.Minimum}} to {{$v.AllowedValueRange.Maximum}}{{end}}
|
|
|
|
// - {{if $v.AllowedValues}}allowed values:
|
|
|
|
// {{range $i, $val := $v.AllowedValues}}{{if $i}}|{{end}}{{$val}}{{end}}{{end}}
|
|
|
|
//{{else}}
|
|
|
|
// (unknown){{end}}
|
|
|
|
//{{end}}{{end}}
|
2013-10-06 21:06:47 +00:00
|
|
|
func (client *{{$srvIdent}}) {{.Name}}({{range .Arguments}}{{if .IsInput}}
|
2013-10-06 21:39:16 +00:00
|
|
|
{{.Name}} {{$srv.SCPD.GoKindNameForVariable .RelatedStateVariable "string"}},
|
2013-10-06 21:06:47 +00:00
|
|
|
{{end}}{{end}}) ({{range .Arguments}}{{if .IsOutput}}
|
2013-10-06 21:39:16 +00:00
|
|
|
{{.Name}} {{$srv.SCPD.GoKindNameForVariable .RelatedStateVariable "string"}},
|
2013-10-06 21:06:47 +00:00
|
|
|
{{end}}{{end}} err error) {
|
|
|
|
request := {{$reqType}}{
|
|
|
|
{{range .Arguments}}{{if .IsInput}}
|
|
|
|
{{.Name}}: {{.Name}},
|
|
|
|
{{end}}{{end}}
|
|
|
|
}
|
|
|
|
var response {{$respType}}
|
2013-10-06 21:45:11 +00:00
|
|
|
err = client.SOAPClient.PerformAction({{$srv.URNParts.Const}}, "{{.Name}}", &request, &response)
|
2013-10-06 21:06:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
{{range .Arguments}}{{if .IsOutput}}
|
|
|
|
{{.Name}} = response.{{.Name}}
|
|
|
|
{{end}}{{end}}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
{{end}}{{/* range .SCPD.Actions */}}
|
|
|
|
{{end}}{{/* range .Services */}}
|
|
|
|
`))
|