Skip to content
Snippets Groups Projects
Commit c7005860 authored by Philip Kaluđerčić's avatar Philip Kaluđerčić :u7121: Committed by Philip Kaluđerčić
Browse files

added abcli

parent 58d7bad2
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ This repository contains a number of client under the `cmd` directory. ...@@ -8,6 +8,7 @@ This repository contains a number of client under the `cmd` directory.
Currently, these are: Currently, these are:
- **abhelp**: Request help - **abhelp**: Request help
- **abcli**: Handle requests in a queue
Meta Meta
---- ----
...@@ -20,3 +21,4 @@ the FAU CS [GitLab][gitlab]. ...@@ -20,3 +21,4 @@ the FAU CS [GitLab][gitlab].
[ab]: https://github.com/noctux/adora-belle [ab]: https://github.com/noctux/adora-belle
[go]: https://golang.org/ [go]: https://golang.org/
[license]: ./LICENSE [license]: ./LICENSE
[gitlab]: https://gitlab.cs.fau.de/oj14ozun/ablib
package main
import (
"ablib"
"fmt"
"os"
"sync"
"golang.org/x/crypto/ssh/terminal"
)
type cmd struct {
cmd ablib.Command
data string
arg string
}
type cli struct {
sync.Mutex
u string
q []*ablib.Request
c chan *cmd
}
func (c *cli) interaction() {
var (
r *ablib.Request
char byte
verb string
)
old, err := terminal.MakeRaw(0)
if err != nil {
panic(err)
}
for {
fmt.Scanf("%c", &char)
switch char {
case 'q', 0x3:
c.Lock()
terminal.Restore(0, old)
os.Exit(0)
case 'd', ' ':
verb = "Discard"
case 'h', '\r':
verb = "Handle"
}
c.Lock()
r = c.q[0]
c.q = c.q[1:]
c.Unlock()
c.c <- &cmd{ablib.Handle, r.ID, verb}
}
}
func (c *cli) HandleError(err error) {
fmt.Fprintf(os.Stderr, "ERROR: %s", err)
}
func (c *cli) OnRequest(r *ablib.Request, handled string) {
if handled != "" {
return
}
c.Lock()
defer c.Unlock()
c.q = append(c.q, r)
fmt.Printf("% 4d: new \"%s\" request by %s (%s)\n",
len(c.q), r.Type, r.User, r.ID)
}
func (c *cli) OnAction(a *ablib.Action) {
// remove request from queue
c.Lock()
defer c.Unlock()
k := -1
for i, r := range c.q {
if r == a.Request {
k = i
break
}
}
if k != -1 {
// from https://github.com/golang/go/wiki/SliceTricks
copy(c.q[k:], c.q[k+1:])
c.q[len(c.q)-1] = nil
c.q = c.q[:len(c.q)-1]
}
if a.Name == c.u {
fmt.Printf("% 4d: handling %s: %s\n",
len(c.q), a.Request.ID, a.Request.Room)
} else {
fmt.Printf("% 4d: request %s handled by %s\n",
len(c.q), a.Request.ID, a.Name)
}
}
func (c *cli) Listen() (ablib.Command, string, string, error) {
cmd := <-c.c
return cmd.cmd, cmd.data, cmd.arg, nil
}
package main
import (
"ablib"
"flag"
"fmt"
"os"
"time"
)
const usage = "Usage: %s [options] [help|serve|request]"
func main() {
var (
interval uint
user, pass, class string
)
// parse flags
flag.UintVar(&interval, "interval", 10, "interval in seconds between re-query")
flag.StringVar(&class, "class", os.Getenv("AB_CLASS"), "name of class")
flag.StringVar(&user, "user", os.Getenv("AB_USER"), "")
flag.StringVar(&pass, "pass", os.Getenv("AB_PASS"), "")
flag.Parse()
// set up api
api := ablib.API{
Interval: time.Duration(interval) * time.Second,
User: user,
Pass: pass,
}
if !api.SetupClass(class) {
fmt.Fprintln(os.Stderr, "Unknown class name \"%s\"", class)
os.Exit(1)
}
// start ui loop
ui := &cli{u: user, c: make(chan *cmd)}
go ui.interaction()
if err := api.Run(ui); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment