1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// Consume and unmarshall JSON.
//
// In this example JSON lines are added by createJSON in a tight loop.
// Each line is unmarshalled and a field printed.
// Exit with Ctrl+C.
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"strconv"
"github.com/nxadm/tail"
)
type jsonStruct struct {
Counter string `json:"counter"`
}
func main() {
file, err := ioutil.TempFile(os.TempDir(), "")
if err != nil {
panic(err)
}
fmt.Println(file.Name())
defer file.Close()
defer os.Remove(file.Name())
t, err := tail.TailFile(file.Name(), tail.Config{Follow: true})
if err != nil {
panic(err)
}
go createJSON(file)
var js jsonStruct
for line := range t.Lines {
fmt.Printf("JSON: " + line.Text + "\n")
err := json.Unmarshal([]byte(line.Text), &js)
if err != nil {
panic(err)
}
fmt.Printf("JSON counter field: " + js.Counter + "\n")
}
}
func createJSON(file *os.File) {
var counter int
for {
file.WriteString("{ \"counter\": \"" + strconv.Itoa(counter) + "\"}\n")
counter++
}
}
|