-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// 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" | ||
"github.com/nxadm/tail" | ||
"io/ioutil" | ||
"os" | ||
"strconv" | ||
) | ||
|
||
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++ | ||
} | ||
} |