2014-08-18 17:45:43 +04:00
|
|
|
package editor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2014-09-04 19:09:51 +04:00
|
|
|
"runtime"
|
2014-08-18 17:45:43 +04:00
|
|
|
"strconv"
|
2014-09-01 16:50:51 +04:00
|
|
|
"strings"
|
2014-09-07 13:07:25 +04:00
|
|
|
|
|
|
|
"github.com/b3log/wide/conf"
|
|
|
|
"github.com/b3log/wide/user"
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"github.com/gorilla/websocket"
|
2014-08-18 17:45:43 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
var editorWS = map[string]*websocket.Conn{}
|
|
|
|
|
|
|
|
func WSHandler(w http.ResponseWriter, r *http.Request) {
|
2014-08-31 13:39:39 +04:00
|
|
|
session, _ := user.Session.Get(r, "wide-session")
|
2014-08-18 17:45:43 +04:00
|
|
|
sid := session.Values["id"].(string)
|
|
|
|
|
|
|
|
editorWS[sid], _ = websocket.Upgrade(w, r, nil, 1024, 1024)
|
|
|
|
|
|
|
|
ret := map[string]interface{}{"output": "Editor initialized", "cmd": "init-editor"}
|
|
|
|
editorWS[sid].WriteJSON(&ret)
|
|
|
|
|
|
|
|
glog.Infof("Open a new [Editor] with session [%s], %d", sid, len(editorWS))
|
|
|
|
|
|
|
|
args := map[string]interface{}{}
|
|
|
|
for {
|
|
|
|
if err := editorWS[sid].ReadJSON(&args); err != nil {
|
|
|
|
if err.Error() == "EOF" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err.Error() == "unexpected EOF" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.Error("Editor WS ERROR: " + err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
code := args["code"].(string)
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
|
|
ch := int(args["cursorCh"].(float64))
|
|
|
|
|
2014-09-01 16:50:51 +04:00
|
|
|
offset := getCursorOffset(code, line, ch)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
// glog.Infof("offset: %d", offset)
|
|
|
|
|
|
|
|
argv := []string{"-f=json", "autocomplete", strconv.Itoa(offset)}
|
|
|
|
|
|
|
|
var output bytes.Buffer
|
|
|
|
|
|
|
|
cmd := exec.Command("gocode", argv...)
|
|
|
|
cmd.Stdout = &output
|
|
|
|
|
|
|
|
stdin, _ := cmd.StdinPipe()
|
|
|
|
cmd.Start()
|
|
|
|
stdin.Write([]byte(code))
|
|
|
|
stdin.Close()
|
|
|
|
cmd.Wait()
|
|
|
|
|
|
|
|
ret = map[string]interface{}{"output": string(output.Bytes()), "cmd": "autocomplete"}
|
|
|
|
|
|
|
|
if err := editorWS[sid].WriteJSON(&ret); err != nil {
|
|
|
|
glog.Error("Editor WS ERROR: " + err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AutocompleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
decoder := json.NewDecoder(r.Body)
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
|
|
if err := decoder.Decode(&args); err != nil {
|
|
|
|
glog.Error(err)
|
|
|
|
http.Error(w, err.Error(), 500)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-09-03 10:53:42 +04:00
|
|
|
session, _ := user.Session.Get(r, "wide-session")
|
|
|
|
username := session.Values["username"].(string)
|
2014-09-02 20:26:10 +04:00
|
|
|
|
2014-08-18 17:45:43 +04:00
|
|
|
code := args["code"].(string)
|
|
|
|
line := int(args["cursorLine"].(float64))
|
|
|
|
ch := int(args["cursorCh"].(float64))
|
|
|
|
|
2014-09-01 16:50:51 +04:00
|
|
|
offset := getCursorOffset(code, line, ch)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
// glog.Infof("offset: %d", offset)
|
|
|
|
|
2014-09-05 07:07:29 +04:00
|
|
|
userWorkspace := conf.Wide.UserWorkspaces + string(os.PathSeparator) + username
|
|
|
|
|
2014-09-04 19:09:51 +04:00
|
|
|
//glog.Infof("User [%s] workspace [%s]", username, userWorkspace)
|
|
|
|
userLib := userWorkspace + string(os.PathSeparator) + "pkg" + string(os.PathSeparator) +
|
|
|
|
runtime.GOOS + "_" + runtime.GOARCH
|
|
|
|
|
2014-09-05 07:07:29 +04:00
|
|
|
masterWorkspace := conf.Wide.Workspace
|
2014-09-04 19:09:51 +04:00
|
|
|
//glog.Infof("Master workspace [%s]", masterWorkspace)
|
|
|
|
masterLib := masterWorkspace + string(os.PathSeparator) + "pkg" + string(os.PathSeparator) +
|
|
|
|
runtime.GOOS + "_" + runtime.GOARCH
|
|
|
|
|
|
|
|
libPath := userLib + string(os.PathListSeparator) + masterLib
|
|
|
|
//glog.Infof("gocode set lib-path %s", libPath)
|
|
|
|
|
2014-09-04 19:13:11 +04:00
|
|
|
// FIXME: 使用 gocode set lib-path 在多工作空间环境下肯定是有问题的,需要考虑其他实现方式
|
2014-09-04 19:09:51 +04:00
|
|
|
argv := []string{"set", "lib-path", libPath}
|
2014-09-04 19:48:49 +04:00
|
|
|
cmd := exec.Command("gocode", argv...)
|
|
|
|
cmd.Start()
|
2014-08-18 17:45:43 +04:00
|
|
|
|
2014-09-04 19:09:51 +04:00
|
|
|
//argv = []string{"set", "autobuild", "true"}
|
|
|
|
//cmd := exec.Command("gocode", argv...)
|
|
|
|
//cmd.Start()
|
2014-09-02 20:26:10 +04:00
|
|
|
|
2014-09-04 19:09:51 +04:00
|
|
|
argv = []string{"-f=json", "autocomplete", strconv.Itoa(offset)}
|
|
|
|
cmd = exec.Command("gocode", argv...)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
stdin, _ := cmd.StdinPipe()
|
|
|
|
stdin.Write([]byte(code))
|
|
|
|
stdin.Close()
|
2014-09-03 10:53:42 +04:00
|
|
|
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if nil != err {
|
|
|
|
glog.Error(err)
|
|
|
|
http.Error(w, err.Error(), 500)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2014-09-03 10:53:42 +04:00
|
|
|
w.Write(output)
|
2014-08-18 17:45:43 +04:00
|
|
|
}
|
2014-09-01 16:50:51 +04:00
|
|
|
|
|
|
|
func getCursorOffset(code string, line, ch int) (offset int) {
|
|
|
|
lines := strings.Split(code, "\n")
|
|
|
|
|
|
|
|
for i := 0; i < line; i++ {
|
|
|
|
offset += len(lines[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += line + ch
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|