コード例 #1
0
ファイル: template.go プロジェクト: yunkaiyueming/go_code
func TestEscapge() {
	str := template.HTMLEscapeString("<br>hello</br>")
	fmt.Println(str)

	jsStr := template.JSEscapeString("<script>alert('123')</script>")
	fmt.Println(jsStr)
}
コード例 #2
0
ファイル: tool.go プロジェクト: pombredanne/camlistore
// printError prints err to Stderr with options. If browserErrors is non-nil, errors are also written for presentation in browser.
func printError(err error, options *gbuild.Options, browserErrors *bytes.Buffer) {
	e := sprintError(err)
	options.PrintError("%s\n", e)
	if browserErrors != nil {
		fmt.Fprintln(browserErrors, `console.error("`+template.JSEscapeString(e)+`");`)
	}
}
コード例 #3
0
ファイル: pac.go プロジェクト: thomasf/alkasir
// UpdateBlockedList updates the list of hosts that are not going through any
// proxy.
func UpdateDirectList(hosts []string) {
	var escaped []string
	for _, v := range hosts {
		escaped = append(escaped, template.JSEscapeString(v))
	}
	dl := strings.Join(escaped, "\",\n\"")
	pac.dLRWMutex.Lock()
	pac.directList = dl
	pac.dLRWMutex.Unlock()
}
コード例 #4
0
ファイル: verify_elk.go プロジェクト: joakim666/ismonitor
func makeBody(query string, minutes int) (string, error) {
	const elkBodyTemplate = `{
  "query": {
    "filtered": {
      "query": {
        "query_string": {
          "query": "{{.Query}}"
        }
      },
      "filter": {
        "bool": {
          "must": [
            {
              "range": {
                "@timestamp": {
                  "gte": "now-{{.Minutes}}m"
                }
              }
            }
          ],
          "must_not": []
        }
      }
    }
  },
  "size": 500,
  "sort": {
    "@timestamp": "desc"
  },
  "fields": [
    "_source"
  ],
  "script_fields": {},
  "fielddata_fields": [
    "timestamp",
    "@timestamp"
  ]
}'
`
	tmpl, err := template.New("body").Parse(elkBodyTemplate)
	if err != nil {
		return "", fmt.Errorf("Failed to parse elk template: %s\n", fmt.Sprint(err))
	}

	templateData := elkBodyTemplateData{template.JSEscapeString(query), fmt.Sprintf("%d", minutes)}

	var b bytes.Buffer
	err = tmpl.Execute(&b, templateData)
	if err != nil {
		return "", fmt.Errorf("Failed to parse elk template: %s\n", fmt.Sprint(err))
	}

	return b.String(), nil
}
コード例 #5
0
ファイル: expand.go プロジェクト: Popog/gotemp
func init() {
	var select_handler_template_string string
	{
		buf := bytes.NewBuffer(nil)
		form_body := `<form action="/expand/{{.Name}}" method="get">
			<fieldset>
				<legend>Description</legend>
				<p>{{.Description}}</p>
			</fieldset>{{range .Inputs}}
			<fieldset>
				<legend>{{.}}</legend>
				<input type="button" value="+{{.}}" class="add" onclick="AddRemoveableFieldHelper($(this), '{{js .}}')" />
			</fieldset>{{end}}
			<div>
				<button type="submit">Expand</button>
			</div>
		</form>`

		field_adder_helper := `<script type="text/javascript">
function AddRemoveableFieldHelper(self, name) {
		AddRemoveableField(self.parent(), [
			"` + template.JSEscapeString(`<input type="text" class="field" name="`) + `" + name + "` + template.JSEscapeString(`" cols="80"/>`) + `",
			"` + template.JSEscapeString(`<input type="button" class="remove" value="-" onclick="$(this).parent().remove()"/>`) + `",
		]);
}
		</script>`

		form := prettyTemplateData{
			Title:   `Expand Template`,
			Scripts: []string{field_adder_script, field_adder_helper},
			Body:    []string{form_body},
		}

		if err := pretty_html_template.Execute(buf, form); err != nil {
			panic(err)
		}
		select_handler_template_string = buf.String()
	}
	template.Must(select_handler_template.Parse(select_handler_template_string))
}
コード例 #6
0
ファイル: context.go プロジェクト: dzhcool/eye
//json接口返回
func (ctx *Context) WriteJson(content []byte) error {
	ctx.Output.Header("Content-Type", "application/x-javascript; charset=utf-8")
	ctx.Output.Status = 200
	callback := template.JSEscapeString(ctx.Input.Query("_callback"))
	if len(callback) > 0 {
		bt := bytes.NewBufferString(" " + callback)
		bt.WriteString("(")
		bt.Write(content)
		bt.WriteString(");\r\n")
		ctx.Output.Body(bt.Bytes())
	} else {
		ctx.Output.Body(content)
	}

	return nil
}
コード例 #7
0
ファイル: pac.go プロジェクト: thomasf/alkasir
// UpdateBlockedList updates the list of hosts that are going through the
// blocked proxy configuration.
func UpdateBlockedList(hosts ...[]string) {
	var allHosts []string
	allHosts = append(allHosts, "alkasir.com")
	for _, h := range hosts {
		allHosts = append(allHosts, h...)
	}

	var escaped []string
	for _, v := range allHosts {
		escaped = append(escaped, template.JSEscapeString(v))
	}
	dl := strings.Join(escaped, "\",\n\"")

	pac.dLRWMutex.Lock()
	pac.blockedList = dl
	pac.dLRWMutex.Unlock()
}
コード例 #8
0
ファイル: encoding_json.go プロジェクト: joao-parana/csfw
// jsonExtendedMarshal encodes a currency into a JSON array: [1234.56, "€", "1.234,56 €"]
func jsonExtendedMarshal(c *Money) ([]byte, error) {
	if c == nil || c.Valid == false {
		return nullString, nil
	}
	var b bytes.Buffer
	b.WriteRune('[')
	b.Write(c.Ftoa())
	b.WriteString(`, "`)
	b.WriteString(template.JSEscapeString(string(c.Symbol())))
	b.WriteString(`", "`)
	lb, err := c.Localize()
	if err != nil {
		if PkgLog.IsDebug() {
			PkgLog.Debug("money.jsonExtendedMarshal.Localize", "err", err, "currency", c, "bytes", lb)
		}
		return nil, errgo.Mask(err)
	}
	template.JSEscape(&b, lb)

	b.WriteRune('"')
	b.WriteRune(']')
	return b.Bytes(), err
}
コード例 #9
0
ファイル: escape.go プロジェクト: ZeusbasePython/appscale
// JSEscapeString returns the escaped JavaScript equivalent of the plain text data s.
func JSEscapeString(s string) string {
	return template.JSEscapeString(s)
}
コード例 #10
0
ファイル: auth.go プロジェクト: kidstuff/auth
// JSONError is a helper function to write json error message to http.ResponseWriter
func JSONError(rw http.ResponseWriter, message string, code int) {
	rw.WriteHeader(code)
	rw.Write([]byte(`{"error":"` + template.JSEscapeString(message) + `"}`))
}
コード例 #11
0
ファイル: expr.go プロジェクト: PuerkitoBio/go2js
// translate translates the Go expression.
func (e *expression) translate(expr ast.Expr) {
	switch typ := expr.(type) {

	// godoc go/ast ArrayType
	//  Lbrack token.Pos // position of "["
	//  Len    Expr      // Ellipsis node for [...]T array types, nil for slice types
	//  Elt    Expr      // element type
	case *ast.ArrayType:
		// Type checking
		if _, ok := typ.Elt.(*ast.Ident); ok {
			if e.tr.getExpression(typ.Elt).hasError {
				return
			}
		}
		if typ.Len == nil { // slice
			break
		}
		e.tr.arrays[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void

		if _, ok := typ.Len.(*ast.Ellipsis); ok {
			e.zero, _ = e.tr.zeroValue(true, typ.Elt)
			e.isEllipsis = true
			break
		}

		if !e.isMultiDim {
			e.WriteString("g.MkArray([")
		} else {
			e.WriteString(",")
		}
		e.WriteString(e.tr.getExpression(typ.Len).String())
		e.tr.isArray = true

		switch t := typ.Elt.(type) {
		case *ast.ArrayType: // multi-dimensional array
			e.isMultiDim = true
			e.translate(typ.Elt)
		case *ast.Ident, *ast.StarExpr: // the type is initialized
			e.zero, _ = e.tr.zeroValue(true, typ.Elt)
			e.WriteString(fmt.Sprintf("],%s", SP+e.zero))
		default:
			panic(fmt.Sprintf("*expression.translate: type unimplemented: %T", t))
		}

	// godoc go/ast BasicLit
	//  Kind     token.Token // token.INT, token.FLOAT, token.IMAG, token.CHAR, or token.STRING
	//  Value    string      // literal string
	case *ast.BasicLit:
		if typ.Value[0] == '`' { // raw string literal
			typ.Value = template.JSEscapeString(typ.Value)
			typ.Value = `"` + typ.Value[1:len(typ.Value)-1] + `"`
		}

		// Replace new lines
		if strings.Contains(typ.Value, "\\n") {
			typ.Value = strings.Replace(typ.Value, "\\n", Char['\n'], -1)
		}
		// Replace tabulators
		if strings.Contains(typ.Value, "\\t") {
			typ.Value = strings.Replace(typ.Value, "\\t", Char['\t'], -1)
		}

		e.WriteString(typ.Value)
		e.isBasicLit = true

	// http://golang.org/doc/go_spec.html#Comparison_operators
	// https://developer.mozilla.org/en/JavaScript/Reference/Operators/Comparison_Operators
	//
	// godoc go/ast BinaryExpr
	//  X     Expr        // left operand
	//  Op    token.Token // operator
	//  Y     Expr        // right operand
	case *ast.BinaryExpr:
		var isBitwise, isComparing, isOpNot bool
		addSpaces := true
		op := typ.Op.String()

		switch typ.Op {
		case token.NEQ:
			isOpNot = true
			fallthrough
		case token.EQL:
			isComparing = true

		// Bitwise operators
		case token.AND_NOT:
			op = "&~"
			fallthrough
		case token.AND, token.OR, token.XOR:
			isBitwise = true
			addSpaces = false
		case token.SHL, token.SHR:
			addSpaces = false
		}

		if addSpaces {
			op = SP + op + SP
		}
		if e.tr.isConst {
			if isBitwise {
				e.WriteString("(")
			}
			e.translate(typ.X)
			e.WriteString(op)
			e.translate(typ.Y)
			if isBitwise {
				e.WriteString(")")
			}
			break
		}

		// * * *
		x := e.tr.getExpression(typ.X)
		y := e.tr.getExpression(typ.Y)

		if isComparing {
			xStr := stripField(x.String())
			yStr := stripField(y.String())

			// Slice
			if y.isNil && e.tr.isType(sliceType, xStr) {
				if isOpNot {
					e.WriteString("!")
				}
				e.WriteString(xStr + ".isNil()")
				break
			}
			if x.isNil && e.tr.isType(sliceType, yStr) {
				if isOpNot {
					e.WriteString("!")
				}
				e.WriteString(yStr + ".isNil()")
				break
			}

			// Map
			if y.isNil && e.tr.isType(mapType, xStr) {
				e.WriteString(fmt.Sprintf("%s.v%sundefined", xStr, op))
				break
			}
			if x.isNil && e.tr.isType(mapType, yStr) {
				e.WriteString(fmt.Sprintf("%s.v%sundefined", yStr, op))
				break
			}
		}

		// * * *
		stringify := false

		// JavaScript only compares basic literals.
		if isComparing && !x.isBasicLit && !x.returnBasicLit && !y.isBasicLit && !y.returnBasicLit {
			stringify = true
		}

		if stringify {
			e.WriteString("JSON.stringify(" + x.String() + ")")
		} else {
			if isBitwise {
				e.WriteString("(")
			}
			e.WriteString(x.String())
		}
		// To know when a pointer is compared with the value nil.
		if y.isNil && !x.isPointer && !x.isVarAddress {
			e.WriteString(NIL)
		}

		e.WriteString(op)

		if stringify {
			e.WriteString("JSON.stringify(" + y.String() + ")")
		} else {
			e.WriteString(y.String())
			if isBitwise {
				e.WriteString(")")
			}
		}
		if x.isNil && !y.isPointer && !y.isVarAddress {
			e.WriteString(NIL)
		}

	// godoc go/ast CallExpr
	//  Fun      Expr      // function expression
	//  Args     []Expr    // function arguments; or nil
	case *ast.CallExpr:
		callName := ""
	S:
		switch call := typ.Fun.(type) {
		// Built-in function
		case *ast.Ident:
			callName = call.Name

		// Library
		case *ast.SelectorExpr:
			e.translate(call)

			str := fmt.Sprintf("%s", e.tr.GetArgs(e.funcName, typ.Args))
			if e.funcName != "fmt.Sprintf" && e.funcName != "fmt.Sprint" {
				str = "(" + str + ")"
			}

			e.WriteString(str)
			break S

		// Conversion: []byte()
		case *ast.ArrayType:
			if call.Elt.(*ast.Ident).Name == "byte" {
				e.translate(typ.Args[0])
			} else {
				panic(fmt.Sprintf("call of conversion unimplemented: []%T()", call))
			}
			break S

		// Anonymous function
		/*case *ast.FuncLit:
		//fmt.Println(typ.Args)
		e.translate(typ.Fun)
		break S*/

		default:
			panic(fmt.Sprintf("call unimplemented: %T()", call))
		}
		if callName == "" {
			break
		}

		// == Built-in functions - golang.org/pkg/builtin/
		switch callName {
		case "make":
			// Type checking
			if e.tr.getExpression(typ.Args[0]).hasError {
				return
			}

			switch argType := typ.Args[0].(type) {
			case *ast.ArrayType: // For slice
				zero, _ := e.tr.zeroValue(true, argType.Elt)

				e.WriteString(fmt.Sprintf("%s,%s%s", zero, SP,
					e.tr.getExpression(typ.Args[1]))) // length

				if len(typ.Args) == 3 { // capacity
					e.WriteString("," + SP + e.tr.getExpression(typ.Args[2]).String())
				}

				e.tr.slices[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void
				e.isMake = true

			case *ast.MapType:
				e.tr.maps[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void
				if !Bootstrap {
					e.WriteString(fmt.Sprintf("g.Map(%s,%s{})", e.tr.zeroOfMap(argType), SP))
				} else {
					e.WriteString("{}")
				}

			case *ast.ChanType:
				e.translate(typ.Fun)

			default:
				panic(fmt.Sprintf("call of 'make' unimplemented: %T", argType))
			}

		case "new":
			switch argType := typ.Args[0].(type) {
			case *ast.ArrayType:
				e.tr.arrays[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void
				for _, arg := range typ.Args {
					e.translate(arg)
				}

			case *ast.Ident:
				value, _ := e.tr.zeroValue(true, argType)
				e.WriteString(value)

			default:
				panic(fmt.Sprintf("call of 'new' unimplemented: %T", argType))
			}

		// == Conversion
		case "string":
			_arg := e.tr.getExpression(typ.Args[0])
			arg := _arg.String()
			argNoField := stripField(arg)

			if e.tr.isType(sliceType, argNoField) || e.tr.isType(arrayType, argNoField) {
				e.WriteString(argNoField + ".str()")
			} else if _arg.isSliceExpr {
				e.WriteString(arg + ".str()")
			} else {
				e.WriteString(arg)
				e.returnBasicLit = true
			}

		case "uint", "uint8", "uint16", "uint32",
			"int", "int8", "int16", "int32",
			"float32", "float64",
			"byte", "rune":
			e.WriteString("g." + strings.Title(callName) + "(")
			e.translate(typ.Args[0])
			e.WriteString(")")
			e.returnBasicLit = true
		// ==

		case "len":
			e.returnBasicLit = true
			e.tr.returnBasicLit = true
			arg := e.tr.getExpression(typ.Args[0]).String()
			argNoField := stripField(arg)
			argNoIndex, index := splitIndex(arg)

			if e.tr.isType(sliceType, argNoField) {
				e.WriteString(argNoField + ".len")

			} else if e.tr.isType(arrayType, argNoField) || e.tr.isType(mapType, argNoField) {
				e.WriteString(argNoField + ".len()")
			} else if argNoIndex != arg &&
				(e.tr.isType(arrayType, argNoIndex) || e.tr.isType(mapType, argNoIndex)) {
				e.WriteString(argNoIndex + ".len(" + index + ")")

			} else {
				e.WriteString(arg + ".length")
			}
			e.tr.returnBasicLit = false

		case "cap":
			e.returnBasicLit = true
			e.tr.returnBasicLit = true
			arg := e.tr.getExpression(typ.Args[0]).String()
			argNoField := stripField(arg)
			argNoIndex, index := splitIndex(arg)

			if e.tr.isType(sliceType, argNoField) {
				if strings.HasSuffix(arg, FIELD_VALUE) || strings.HasSuffix(arg, FIELD_GET) {
					e.WriteString(argNoField + ".cap")
				} else {
					e.WriteString(arg + ".cap")
				}

			} else if e.tr.isType(arrayType, argNoField) {
				e.WriteString(argNoField + ".cap()")
			} else if argNoIndex != arg && e.tr.isType(arrayType, argNoIndex) {
				e.WriteString(argNoIndex + ".cap(" + index + ")")
			}
			e.tr.returnBasicLit = false

		case "append":
			src := ""
			for i, v := range typ.Args[1:] {
				if i != 0 {
					src += "," + SP
				}
				src += e.tr.getExpression(v).String()
			}
			if typ.Ellipsis != 0 { // last argument is an ellipsis
				src += FIELD_GET
			}

			e.WriteString(fmt.Sprintf("g.Append(%s,%s%s)",
				e.tr.getExpression(typ.Args[0]).String(), SP, src))

		case "copy":
			e.WriteString(fmt.Sprintf("g.Copy(%s,%s%s)",
				e.tr.getExpression(typ.Args[0]).String(), SP,
				e.tr.getExpression(typ.Args[1]).String()))

		case "delete":
			e.WriteString(fmt.Sprintf("delete %s%s[%s]",
				e.tr.getExpression(typ.Args[0]).String(),
				FIELD_VALUE,
				e.tr.getExpression(typ.Args[1]).String()))

		case "print", "println":
			e.WriteString(fmt.Sprintf("%s(%s)",
				Function[callName], e.tr.GetArgs(callName, typ.Args)))

		case "panic":
			e.WriteString(fmt.Sprintf("throw new Error(%s)",
				e.tr.getExpression(typ.Args[0])))

		// == Not supported
		case "recover", "complex":
			e.tr.addError("%s: built-in function %s()",
				e.tr.fset.Position(typ.Fun.Pos()), callName)
			e.tr.hasError = true
			return
		case "int64", "uint64":
			e.tr.addError("%s: conversion of type %s",
				e.tr.fset.Position(typ.Fun.Pos()), callName)
			e.tr.hasError = true
			return

		// == Not implemented
		case "close", "uintptr":
			panic(fmt.Sprintf("built-in call unimplemented: %s", callName))

		// Defined functions
		default:
			e.tr.isFunc = true

			args := ""
			for i, v := range typ.Args {
				if i != 0 {
					args += "," + SP
				}
				_arg := e.tr.getExpression(v)

				if _arg.kind == sliceKind {
					args += "g.Slice("
				}
				args += _arg.String()
			}

			e.WriteString(fmt.Sprintf("%s(%s)", callName, args))
			e.tr.isFunc = false
		}

	// godoc go/ast ChanType
	//  Begin token.Pos // position of "chan" keyword or "<-" (whichever comes first)
	//  Dir   ChanDir   // channel direction
	//  Value Expr      // value type
	case *ast.ChanType:
		e.tr.addError("%s: channel type", e.tr.fset.Position(typ.Pos()))
		e.tr.hasError = true
		return

	// godoc go/ast CompositeLit
	//  Type   Expr      // literal type; or nil
	//  Lbrace token.Pos // position of "{"
	//  Elts   []Expr    // list of composite elements; or nil
	//  Rbrace token.Pos // position of "}"
	case *ast.CompositeLit:
		switch compoType := typ.Type.(type) {
		case *ast.ArrayType:
			if !e.arrayHasElts {
				e.translate(typ.Type)
			}

			if e.isEllipsis {
				e.WriteString(fmt.Sprintf("g.MkArray([%s],%s,%s",
					strconv.Itoa(len(typ.Elts)), SP+e.zero, SP))

				e.WriteString("[")
				e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
				e.WriteString("])")

				e.tr.isArray = false // don't add extra ')'
				break
			}

			// Slice
			if compoType.Len == nil {
				e.tr.slices[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void
				e.kind = sliceKind
			} else { // Array
				e.tr.arrays[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void
				//e.kind = arrayKind //TODO: remove
			}
			// Struct
			if elt, ok := compoType.Elt.(*ast.StructType); ok {
				e.tr.getStruct(elt, "", false)
				e.kind = structKind
			}
			// For arrays with elements
			if len(typ.Elts) != 0 {
				if !e.arrayHasElts && compoType.Len != nil {
					e.WriteString("," + SP)
					e.arrayHasElts = true
				}
				if e.kind == sliceKind {
					e.zero, _ = e.tr.zeroValue(true, compoType.Elt)
					e.WriteString(e.zero + "," + SP)
				}
				e.WriteString("[")
				e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
				e.WriteString("]")

				if e.tr.isFunc {
					e.WriteString(")")
				}
			} /*else if e.kind == sliceKind {
				e.WriteString("[]")
			}*/

		case *ast.Ident: // Custom types
			useField := false
			e.isVarAddress = false // it is the address to a type
			e.WriteString("new " + typ.Type.(*ast.Ident).Name)

			if len(typ.Elts) != 0 {
				// Specify the fields
				if _, ok := typ.Elts[0].(*ast.KeyValueExpr); ok {
					useField = true

					e.WriteString("();")
					e.writeTypeElts(typ.Elts, typ.Lbrace)
				}
			}
			if !useField {
				e.WriteString("(")
				e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
				e.WriteString(")")
			}

		case *ast.MapType:
			// Type checking
			if e.tr.getExpression(typ.Type).hasError {
				return
			}
			e.tr.maps[e.tr.funcId][e.tr.blockId][e.tr.lastVarName] = void

			e.WriteString(fmt.Sprintf("g.Map(%s,%s{", e.tr.zeroOfMap(compoType), SP))
			e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
			e.WriteString("})")

		case nil:
			if e.kind == structKind {
				e.WriteString("_(")
				e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
				e.WriteString(")")
			} else {
				e.WriteString("[")
				e.writeElts(typ.Elts, typ.Lbrace, typ.Rbrace)
				e.WriteString("]")
			}

		default:
			panic(fmt.Sprintf("'CompositeLit' unimplemented: %T", compoType))
		}

	// godoc go/ast Ellipsis
	//  Ellipsis token.Pos // position of "..."
	//  Elt      Expr      // ellipsis element type (parameter lists only); or nil
	//case *ast.Ellipsis:

	// http://golang.org/doc/go_spec.html#Function_literals
	// https://developer.mozilla.org/en/JavaScript/Reference/Functions_and_function_scope#Function_constructor_vs._function_declaration_vs._function_expression
	// godoc go/ast FuncLit
	//
	//  Type *FuncType  // function type
	//  Body *BlockStmt // function body
	case *ast.FuncLit:
		e.translate(typ.Type)
		e.tr.getStatement(typ.Body)

	// godoc go/ast FuncType
	//  Func    token.Pos  // position of "func" keyword
	//  Params  *FieldList // (incoming) parameters; or nil
	//  Results *FieldList // (outgoing) results; or nil
	case *ast.FuncType:
		//e.isFunc = true
		e.tr.writeFunc(nil, nil, typ)

	// godoc go/ast Ident
	//  Name    string    // identifier name
	case *ast.Ident:
		name := typ.Name

		switch name {
		case "iota":
			e.WriteString(IOTA)
			e.useIota = true

		// Undefined value in array / slice
		case "_":
			if len(e.lenArray) == 0 {
				e.WriteString(name)
			}
		// https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined
		case "nil":
			e.WriteString("undefined")
			e.isBasicLit = true
			e.isNil = true

		// Not supported
		case "int64", "uint64", "complex64", "complex128":
			e.tr.addError("%s: %s type", e.tr.fset.Position(typ.Pos()), name)
			e.tr.hasError = true
		// Not implemented
		case "uintptr":
			e.tr.addError("%s: unimplemented type %q", e.tr.fset.Position(typ.Pos()), name)
			e.tr.hasError = true

		default:
			name = validIdent(typ.Name)

			if e.isPointer { // `*x` => `x.FIELD_POINTER`
				name += FIELD_POINTER
			} else if e.isVarAddress { // `&x` => `x`
				e.tr.addPointer(name)

			} else {
				if !e.tr.isVar {
					if name == e.tr.recvVar {
						name = "this" + FIELD_TYPE
					}
					if !e.tr.isFunc {
						if !e.tr.wasReturn {
							if e.tr.isType(arrayType, name) {
								name += FIELD_VALUE
							} else if e.tr.isType(sliceType, name) &&
								!e.tr.isType(structType, name) {
								name += FIELD_GET
							}
						} else if !e.tr.resultUseFunc[e.tr.idxResult] { // can return a literal from a composite type
							if e.tr.isType(arrayType, name) {
								name += FIELD_VALUE
							} else if e.tr.isType(sliceType, name) {
								name += FIELD_GET
							}
						}
					}
					if _, ok := e.tr.vars[e.tr.funcId][e.tr.blockId][name]; ok {
						name += tagPointer(false, 'P', e.tr.funcId, e.tr.blockId, name)
					}

				} else {
					e.isIdent = true

					if !e.tr.isFunc && !e.tr.wasReturn && !e.tr.returnBasicLit &&
						e.tr.isType(arrayType, name) {
						name += FIELD_VALUE
					}
				}
			}

			e.WriteString(name)
		}

	// godoc go/ast IndexExpr
	// Represents an expression followed by an index.
	//  X      Expr      // expression
	//  Lbrack token.Pos // position of "["
	//  Index  Expr      // index expression
	//  Rbrack token.Pos // position of "]"
	case *ast.IndexExpr:
		// == Store indexes
		e.index = append(e.index, e.tr.getExpression(typ.Index).String())

		// Could be multi-dimensional
		if _, ok := typ.X.(*ast.IndexExpr); ok {
			e.translate(typ.X)
			return
		}
		// ==

		x := e.tr.getExpression(typ.X).String()
		index := ""
		indexArgs := ""

		for i := len(e.index) - 1; i >= 0; i-- { // inverse order
			idx := e.index[i]
			index += "[" + idx + "]"

			if indexArgs != "" {
				indexArgs += ","
			}
			indexArgs += idx
		}

		if e.tr.isType(mapType, x) {
			e.mapName = x

			if e.tr.isVar && !e.isValue {
				e.WriteString(x + FIELD_VALUE + index)
			} else {
				e.WriteString(x + ".get(" + indexArgs + ")[0]")
			}

		} else if e.tr.isType(sliceType, x) && !e.tr.isType(structType, x) {
			if !e.isValue {
				e.WriteString(fmt.Sprintf("%s.set([%s],", x, indexArgs))
				e.addSet = true
			} else {
				e.WriteString(x + FIELD_GET + index)
			}

		} else {
			e.WriteString(x + index)
		}

	// godoc go/ast InterfaceType
	//  Interface  token.Pos  // position of "interface" keyword
	//  Methods    *FieldList // list of methods
	//  Incomplete bool       // true if (source) methods are missing in the Methods list
	case *ast.InterfaceType: // TODO: review

	// godoc go/ast KeyValueExpr
	//  Key   Expr
	//  Colon token.Pos // position of ":"
	//  Value Expr
	case *ast.KeyValueExpr:
		key := e.tr.getExpression(typ.Key).String()
		exprValue := e.tr.getExpression(typ.Value)
		value := exprValue.String()

		if value[0] == '[' { // multi-dimensional index
			value = "{" + value[1:len(value)-1] + "}"
		}

		if !e.tr.isArray && e.kind != sliceKind {
			e.WriteString(key + ":" + SP + value)
		} else {
			e.WriteString(fmt.Sprintf("{%s:%s}", key, value))
		}

	// godoc go/ast MapType
	//  Map   token.Pos // position of "map" keyword
	//  Key   Expr
	//  Value Expr
	case *ast.MapType:
		// For type checking
		e.tr.getExpression(typ.Key)
		e.tr.getExpression(typ.Value)

	// godoc go/ast ParenExpr
	//  Lparen token.Pos // position of "("
	//  X      Expr      // parenthesized expression
	//  Rparen token.Pos // position of ")"
	case *ast.ParenExpr:
		e.translate(typ.X)

	// godoc go/ast SelectorExpr
	//   X   Expr   // expression
	//   Sel *Ident // field selector
	case *ast.SelectorExpr:
		isPkg := false
		x := ""

		switch t := typ.X.(type) {
		case *ast.SelectorExpr:
			e.translate(typ.X)
		case *ast.CallExpr:
			e.translate(t)
		case *ast.Ident:
			x = t.Name
		case *ast.IndexExpr:
			e.translate(t)
			e.WriteString("." + typ.Sel.Name) // TODO: validIdent?
			return
		default:
			panic(fmt.Sprintf("'SelectorExpr': unimplemented: %T", t))
		}

		if x == e.tr.recvVar {
			x = "this"
		}
		goName := x + "." + validIdent(typ.Sel.Name)

		// Check is the selector is a package
		for _, v := range validImport {
			if v == x {
				isPkg = true
				break
			}
		}

		// Check if it can be translated to its equivalent in JavaScript.
		if isPkg {
			jsName, ok := Function[goName]
			if !ok {
				jsName, ok = Constant[goName]
			}

			if !ok {
				e.tr.addError(fmt.Errorf("%s: %q not supported in JS",
					e.tr.fset.Position(typ.Sel.Pos()), goName))
				e.tr.hasError = true
				break
			}

			e.funcName = goName
			e.WriteString(jsName)
		} else {
			/*if _, ok := e.tr.zeroType[x]; !ok {
				panic("selector: " + x)
			}*/

			e.WriteString(goName)
		}

	// godoc go/ast SliceExpr
	//  X      Expr      // expression
	//  Lbrack token.Pos // position of "["
	//  Low    Expr      // begin of slice range; or nil
	//  High   Expr      // end of slice range; or nil
	//  Rbrack token.Pos // position of "]"
	case *ast.SliceExpr:
		slice := "0"
		x := typ.X.(*ast.Ident).Name

		if typ.Low != nil {
			slice = e.tr.getExpression(typ.Low).String()
		}
		if typ.High != nil {
			slice += "," + SP + e.tr.getExpression(typ.High).String()
		}

		if e.tr.isVar && e.isValue {
			// The JS function is handled in file "var.go"; look for SliceFrom.
			e.WriteString(x + "," + SP + slice)
		} else {
			e.WriteString(fmt.Sprintf("g.SliceFrom(%s,%s)", x, SP+slice))
			//e.tr.slices[e.tr.funcId][e.tr.blockId][x] = void TODO: REMOVE
		}

		e.isSliceExpr = true

	// godoc go/ast StarExpr
	//  Star token.Pos // position of "*"
	//  X    Expr      // operand
	case *ast.StarExpr:
		e.isPointer = true
		e.translate(typ.X)

	// godoc go/ast StructType
	//  Struct     token.Pos  // position of "struct" keyword
	//  Fields     *FieldList // list of field declarations
	//  Incomplete bool       // true if (source) fields are missing in the Fields list
	case *ast.StructType:

	// godoc go/ast UnaryExpr
	//  OpPos token.Pos   // position of Op
	//  Op    token.Token // operator
	//  X     Expr        // operand
	case *ast.UnaryExpr:
		writeOp := true
		op := typ.Op.String()

		switch typ.Op {
		case token.XOR: // bitwise complement
			op = "~"
		case token.AND: // address operator
			e.isVarAddress = true
			writeOp = false
		case token.ARROW: // channel
			e.tr.addError("%s: channel operator", e.tr.fset.Position(typ.OpPos))
			e.tr.hasError = true
			return
		}

		if writeOp {
			e.WriteString(op)
		}
		e.translate(typ.X)

	// The type has not been indicated
	case nil:

	default:
		panic(fmt.Sprintf("unimplemented: %T", expr))
	}
}
コード例 #12
0
ファイル: pkgname.go プロジェクト: mokelab/pkgname
func clean(str string) string {
	return template.JSEscapeString(template.HTMLEscapeString(str))
}
コード例 #13
0
ファイル: directives.go プロジェクト: voidException/soy
func directiveEscapeJsString(value data.Value, _ []data.Value) data.Value {
	return data.String(template.JSEscapeString(value.String()))
}