395 lines
9.3 KiB
Go
395 lines
9.3 KiB
Go
// Copyright (c) 2014-present, b3log.org
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Package editor includes editor related manipulations.
|
|
package editor
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/88250/gulu"
|
|
"github.com/88250/wide/conf"
|
|
"github.com/88250/wide/file"
|
|
"github.com/88250/wide/session"
|
|
)
|
|
|
|
// Logger.
|
|
var logger = gulu.Log.NewLogger(os.Stdout)
|
|
|
|
// AutocompleteHandler handles request of code autocompletion.
|
|
func AutocompleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
var args map[string]interface{}
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
session, _ := session.HTTPSession.Get(r, session.CookieName)
|
|
if session.IsNew {
|
|
http.Error(w, "Forbidden", http.StatusForbidden)
|
|
|
|
return
|
|
}
|
|
uid := session.Values["uid"].(string)
|
|
|
|
path := args["path"].(string)
|
|
fout, err := os.Create(path)
|
|
if nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
code := args["code"].(string)
|
|
fout.WriteString(code)
|
|
if err := fout.Close(); nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
ch := int(args["cursorCh"].(float64))
|
|
offset := getCursorOffset(code, line, ch)
|
|
logger.Tracef("offset: %d", offset)
|
|
|
|
userWorkspace := conf.GetUserWorkspace(uid)
|
|
workspaces := filepath.SplitList(userWorkspace)
|
|
libPath := ""
|
|
for _, workspace := range workspaces {
|
|
userLib := workspace + conf.PathSeparator + "pkg" + conf.PathSeparator +
|
|
runtime.GOOS + "_" + runtime.GOARCH
|
|
libPath += userLib + conf.PathListSeparator
|
|
}
|
|
|
|
logger.Tracef("gocode set lib-path [%s]", libPath)
|
|
|
|
gocode := gulu.Go.GetExecutableInGOBIN("gocode")
|
|
// FIXME: using gocode set lib-path has some issues while accrossing workspaces
|
|
exec.Command(gocode, []string{"set", "lib-path", libPath}...).Run()
|
|
|
|
argv := []string{"-f=json", "--in=" + path, "autocomplete", strconv.Itoa(offset)}
|
|
cmd := exec.Command(gocode, argv...)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
if nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.Write(output)
|
|
}
|
|
|
|
// GetExprInfoHandler handles request of getting expression infomation.
|
|
func GetExprInfoHandler(w http.ResponseWriter, r *http.Request) {
|
|
result := gulu.Ret.NewResult()
|
|
defer gulu.Ret.RetResult(w, r, result)
|
|
|
|
session, _ := session.HTTPSession.Get(r, session.CookieName)
|
|
uid := session.Values["uid"].(string)
|
|
|
|
var args map[string]interface{}
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
path := args["path"].(string)
|
|
curDir := filepath.Dir(path)
|
|
filename := filepath.Base(path)
|
|
|
|
fout, err := os.Create(path)
|
|
|
|
if nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
code := args["code"].(string)
|
|
fout.WriteString(code)
|
|
|
|
if err := fout.Close(); nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
ch := int(args["cursorCh"].(float64))
|
|
|
|
offset := getCursorOffset(code, line, ch)
|
|
|
|
logger.Tracef("offset [%d]", offset)
|
|
|
|
ideStub := gulu.Go.GetExecutableInGOBIN("gotools")
|
|
argv := []string{"types", "-pos", filename + ":" + strconv.Itoa(offset), "-info", "."}
|
|
cmd := exec.Command(ideStub, argv...)
|
|
cmd.Dir = curDir
|
|
|
|
setCmdEnv(cmd, uid)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
if nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
exprInfo := strings.TrimSpace(string(output))
|
|
if "" == exprInfo {
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
result.Data = exprInfo
|
|
}
|
|
|
|
// FindDeclarationHandler handles request of finding declaration.
|
|
func FindDeclarationHandler(w http.ResponseWriter, r *http.Request) {
|
|
result := gulu.Ret.NewResult()
|
|
defer gulu.Ret.RetResult(w, r, result)
|
|
|
|
session, _ := session.HTTPSession.Get(r, session.CookieName)
|
|
if session.IsNew {
|
|
http.Error(w, "Forbidden", http.StatusForbidden)
|
|
|
|
return
|
|
}
|
|
uid := session.Values["uid"].(string)
|
|
|
|
var args map[string]interface{}
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
path := args["path"].(string)
|
|
curDir := filepath.Dir(path)
|
|
filename := filepath.Base(path)
|
|
|
|
fout, err := os.Create(path)
|
|
|
|
if nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
code := args["code"].(string)
|
|
fout.WriteString(code)
|
|
|
|
if err := fout.Close(); nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
ch := int(args["cursorCh"].(float64))
|
|
|
|
offset := getCursorOffset(code, line, ch)
|
|
|
|
logger.Tracef("offset [%d]", offset)
|
|
|
|
ideStub := gulu.Go.GetExecutableInGOBIN("gotools")
|
|
argv := []string{"types", "-pos", filename + ":" + strconv.Itoa(offset), "-def", "."}
|
|
cmd := exec.Command(ideStub, argv...)
|
|
cmd.Dir = curDir
|
|
|
|
setCmdEnv(cmd, uid)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
if nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
found := strings.TrimSpace(string(output))
|
|
if "" == found {
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
part := found[:strings.LastIndex(found, ":")]
|
|
cursorSep := strings.LastIndex(part, ":")
|
|
path = found[:cursorSep]
|
|
|
|
cursorLine, _ := strconv.Atoi(found[cursorSep+1 : strings.LastIndex(found, ":")])
|
|
cursorCh, _ := strconv.Atoi(found[strings.LastIndex(found, ":")+1:])
|
|
|
|
data := map[string]interface{}{}
|
|
result.Data = &data
|
|
|
|
data["path"] = filepath.ToSlash(path)
|
|
data["cursorLine"] = cursorLine
|
|
data["cursorCh"] = cursorCh
|
|
}
|
|
|
|
// FindUsagesHandler handles request of finding usages.
|
|
func FindUsagesHandler(w http.ResponseWriter, r *http.Request) {
|
|
result := gulu.Ret.NewResult()
|
|
defer gulu.Ret.RetResult(w, r, result)
|
|
|
|
session, _ := session.HTTPSession.Get(r, session.CookieName)
|
|
if session.IsNew {
|
|
http.Error(w, "Forbidden", http.StatusForbidden)
|
|
|
|
return
|
|
}
|
|
uid := session.Values["uid"].(string)
|
|
|
|
var args map[string]interface{}
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
filePath := args["path"].(string)
|
|
curDir := filepath.Dir(filePath)
|
|
filename := filepath.Base(filePath)
|
|
|
|
fout, err := os.Create(filePath)
|
|
|
|
if nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
code := args["code"].(string)
|
|
fout.WriteString(code)
|
|
|
|
if err := fout.Close(); nil != err {
|
|
logger.Error(err)
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
ch := int(args["cursorCh"].(float64))
|
|
|
|
offset := getCursorOffset(code, line, ch)
|
|
logger.Tracef("offset [%d]", offset)
|
|
|
|
ideStub := gulu.Go.GetExecutableInGOBIN("gotools")
|
|
argv := []string{"types", "-pos", filename + ":" + strconv.Itoa(offset), "-use", "."}
|
|
cmd := exec.Command(ideStub, argv...)
|
|
cmd.Dir = curDir
|
|
|
|
setCmdEnv(cmd, uid)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
if nil != err {
|
|
logger.Error(err)
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
}
|
|
|
|
out := strings.TrimSpace(string(output))
|
|
if "" == out {
|
|
result.Code = -1
|
|
|
|
return
|
|
}
|
|
|
|
founds := strings.Split(out, "\n")
|
|
usages := []*file.Snippet{}
|
|
for _, found := range founds {
|
|
found = strings.TrimSpace(found)
|
|
|
|
part := found[:strings.LastIndex(found, ":")]
|
|
cursorSep := strings.LastIndex(part, ":")
|
|
path := filepath.ToSlash(found[:cursorSep])
|
|
cursorLine, _ := strconv.Atoi(found[cursorSep+1 : strings.LastIndex(found, ":")])
|
|
cursorCh, _ := strconv.Atoi(found[strings.LastIndex(found, ":")+1:])
|
|
|
|
usage := &file.Snippet{Path: path, Line: cursorLine, Ch: cursorCh, Contents: []string{""}}
|
|
usages = append(usages, usage)
|
|
}
|
|
|
|
result.Data = usages
|
|
}
|
|
|
|
// getCursorOffset calculates the cursor offset.
|
|
//
|
|
// line is the line number, starts with 0 that means the first line
|
|
// ch is the column number, starts with 0 that means the first column
|
|
func getCursorOffset(code string, line, ch int) (offset int) {
|
|
lines := strings.Split(code, "\n")
|
|
|
|
// calculate sum length of lines before
|
|
for i := 0; i < line; i++ {
|
|
offset += len(lines[i])
|
|
}
|
|
|
|
// calculate length of the current line and column
|
|
curLine := lines[line]
|
|
var buffer bytes.Buffer
|
|
r := []rune(curLine)
|
|
for i := 0; i < ch; i++ {
|
|
buffer.WriteString(string(r[i]))
|
|
}
|
|
|
|
offset += len(buffer.String()) // append length of current line
|
|
offset += line // append number of '\n'
|
|
|
|
return offset
|
|
}
|
|
|
|
func setCmdEnv(cmd *exec.Cmd, userId string) {
|
|
userWorkspace := conf.GetUserWorkspace(userId)
|
|
|
|
cmd.Env = append(cmd.Env,
|
|
"GOPATH="+userWorkspace,
|
|
"GOOS="+runtime.GOOS,
|
|
"GOARCH="+runtime.GOARCH,
|
|
"GOROOT="+runtime.GOROOT(),
|
|
"PATH="+os.Getenv("PATH"))
|
|
}
|