diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-12-14 20:28:14 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-12-14 20:28:14 +0800 |
commit | 03f090b30bdee27bfd8e45b0532b6674d808c8ae (patch) | |
tree | 4b2a5b32a4f7df45b47d560bf314d183e778ebba /cmd/geth/library_android.go | |
parent | b2ffb76ca2bc043ddf2f17d2ec5ac5bba0038c19 (diff) | |
download | go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar.gz go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar.bz2 go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar.lz go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar.xz go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.tar.zst go-tangerine-03f090b30bdee27bfd8e45b0532b6674d808c8ae.zip |
Makefile, cmd/geth: support building Android archives
Diffstat (limited to 'cmd/geth/library_android.go')
-rw-r--r-- | cmd/geth/library_android.go | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/cmd/geth/library_android.go b/cmd/geth/library_android.go new file mode 100644 index 000000000..fb021bfe0 --- /dev/null +++ b/cmd/geth/library_android.go @@ -0,0 +1,56 @@ +// Copyright 2015 The go-ethereum Authors +// This file is part of go-ethereum. +// +// go-ethereum is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// go-ethereum is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. + +// Contains specialized code for running Geth on Android. + +package main + +// #include <android/log.h> +// #cgo LDFLAGS: -llog +import "C" +import ( + "bufio" + "os" +) + +func init() { + // Redirect the standard output and error to logcat + oldStdout, oldStderr := os.Stdout, os.Stderr + + outRead, outWrite, _ := os.Pipe() + errRead, errWrite, _ := os.Pipe() + + os.Stdout = outWrite + os.Stderr = errWrite + + go func() { + scanner := bufio.NewScanner(outRead) + for scanner.Scan() { + line := scanner.Text() + C.__android_log_write(C.ANDROID_LOG_INFO, C.CString("Stdout"), C.CString(line)) + oldStdout.WriteString(line + "\n") + } + }() + + go func() { + scanner := bufio.NewScanner(errRead) + for scanner.Scan() { + line := scanner.Text() + C.__android_log_write(C.ANDROID_LOG_INFO, C.CString("Stderr"), C.CString(line)) + oldStderr.WriteString(line + "\n") + } + }() +} |