mirror of
https://github.com/golang/go
synced 2024-11-12 07:40:23 -07:00
Automated g4 rollback of changelist 35383.
*** Reason for rollback *** roll back the changes to the tutorial programs (only) since they break the automated processing used to create the tutorial. *** Original change description *** apply gofmt to the LGTM-marked files from 34501 that have not changed since I applied gofmt. R=rsc DELTA=139 (0 added, 44 deleted, 95 changed) OCL=35670 CL=35670
This commit is contained in:
parent
3139b2031c
commit
7839521335
@ -18,9 +18,9 @@ func rot13(b byte) byte {
|
|||||||
b = 'a' + ((b - 'a') + 13) % 26;
|
b = 'a' + ((b - 'a') + 13) % 26;
|
||||||
}
|
}
|
||||||
if 'A' <= b && b <= 'Z' {
|
if 'A' <= b && b <= 'Z' {
|
||||||
b = 'A' + ((b-'A')+13)%26;
|
b = 'A' + ((b - 'A') + 13) % 26
|
||||||
}
|
}
|
||||||
return b;
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
type reader interface {
|
type reader interface {
|
||||||
@ -33,19 +33,19 @@ type rotate13 struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newRotate13(source reader) *rotate13 {
|
func newRotate13(source reader) *rotate13 {
|
||||||
return &rotate13{source};
|
return &rotate13{source}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r13 *rotate13) Read(b []byte) (ret int, err os.Error) {
|
func (r13 *rotate13) Read(b []byte) (ret int, err os.Error) {
|
||||||
r, e := r13.source.Read(b);
|
r, e := r13.source.Read(b);
|
||||||
for i := 0; i < r; i++ {
|
for i := 0; i < r; i++ {
|
||||||
b[i] = rot13(b[i]);
|
b[i] = rot13(b[i])
|
||||||
}
|
}
|
||||||
return r, e;
|
return r, e
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r13 *rotate13) String() string {
|
func (r13 *rotate13) String() string {
|
||||||
return r13.source.String();
|
return r13.source.String()
|
||||||
}
|
}
|
||||||
// end of rotate13 implementation
|
// end of rotate13 implementation
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ func cat(r reader) {
|
|||||||
var buf [NBUF]byte;
|
var buf [NBUF]byte;
|
||||||
|
|
||||||
if *rot13_flag {
|
if *rot13_flag {
|
||||||
r = newRotate13(r);
|
r = newRotate13(r)
|
||||||
}
|
}
|
||||||
for {
|
for {
|
||||||
switch nr, er := r.Read(&buf); {
|
switch nr, er := r.Read(&buf); {
|
||||||
|
@ -21,12 +21,12 @@ func main() {
|
|||||||
var s string = "";
|
var s string = "";
|
||||||
for i := 0; i < flag.NArg(); i++ {
|
for i := 0; i < flag.NArg(); i++ {
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
s += kSpace;
|
s += kSpace
|
||||||
}
|
}
|
||||||
s += flag.Arg(i);
|
s += flag.Arg(i)
|
||||||
}
|
}
|
||||||
if !*n_flag {
|
if !*n_flag {
|
||||||
s += kNewline;
|
s += kNewline
|
||||||
}
|
}
|
||||||
os.Stdout.WriteString(s);
|
os.Stdout.WriteString(s);
|
||||||
}
|
}
|
||||||
|
@ -16,9 +16,9 @@ type File struct {
|
|||||||
|
|
||||||
func newFile(fd int, name string) *File {
|
func newFile(fd int, name string) *File {
|
||||||
if fd < 0 {
|
if fd < 0 {
|
||||||
return nil;
|
return nil
|
||||||
}
|
}
|
||||||
return &File{fd, name};
|
return &File{fd, name}
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -32,43 +32,43 @@ func Open(name string, mode int, perm int) (file *File, err os.Error) {
|
|||||||
if e != 0 {
|
if e != 0 {
|
||||||
err = os.Errno(e);
|
err = os.Errno(e);
|
||||||
}
|
}
|
||||||
return newFile(r, name), err;
|
return newFile(r, name), err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (file *File) Close() os.Error {
|
func (file *File) Close() os.Error {
|
||||||
if file == nil {
|
if file == nil {
|
||||||
return os.EINVAL;
|
return os.EINVAL
|
||||||
}
|
}
|
||||||
e := syscall.Close(file.fd);
|
e := syscall.Close(file.fd);
|
||||||
file.fd = -1; // so it can't be closed again
|
file.fd = -1; // so it can't be closed again
|
||||||
if e != 0 {
|
if e != 0 {
|
||||||
return os.Errno(e);
|
return os.Errno(e);
|
||||||
}
|
}
|
||||||
return nil;
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (file *File) Read(b []byte) (ret int, err os.Error) {
|
func (file *File) Read(b []byte) (ret int, err os.Error) {
|
||||||
if file == nil {
|
if file == nil {
|
||||||
return -1, os.EINVAL;
|
return -1, os.EINVAL
|
||||||
}
|
}
|
||||||
r, e := syscall.Read(file.fd, b);
|
r, e := syscall.Read(file.fd, b);
|
||||||
if e != 0 {
|
if e != 0 {
|
||||||
err = os.Errno(e);
|
err = os.Errno(e);
|
||||||
}
|
}
|
||||||
return int(r), err;
|
return int(r), err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (file *File) Write(b []byte) (ret int, err os.Error) {
|
func (file *File) Write(b []byte) (ret int, err os.Error) {
|
||||||
if file == nil {
|
if file == nil {
|
||||||
return -1, os.EINVAL;
|
return -1, os.EINVAL
|
||||||
}
|
}
|
||||||
r, e := syscall.Write(file.fd, b);
|
r, e := syscall.Write(file.fd, b);
|
||||||
if e != 0 {
|
if e != 0 {
|
||||||
err = os.Errno(e);
|
err = os.Errno(e);
|
||||||
}
|
}
|
||||||
return int(r), err;
|
return int(r), err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (file *File) String() string {
|
func (file *File) String() string {
|
||||||
return file.name;
|
return file.name
|
||||||
}
|
}
|
||||||
|
@ -11,10 +11,7 @@ func main() {
|
|||||||
fmt.Printf("%d %d\n", u64, int64(u64));
|
fmt.Printf("%d %d\n", u64, int64(u64));
|
||||||
|
|
||||||
// harder stuff
|
// harder stuff
|
||||||
type T struct {
|
type T struct { a int; b string };
|
||||||
a int;
|
|
||||||
b string;
|
|
||||||
}
|
|
||||||
t := T{77, "Sunset Strip"};
|
t := T{77, "Sunset Strip"};
|
||||||
a := []int{1, 2, 3, 4};
|
a := []int{1, 2, 3, 4};
|
||||||
fmt.Printf("%v %v %v\n", u64, t, a);
|
fmt.Printf("%v %v %v\n", u64, t, a);
|
||||||
|
@ -6,16 +6,13 @@ package main
|
|||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
|
||||||
type testType struct {
|
type testType struct { a int; b string }
|
||||||
a int;
|
|
||||||
b string;
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *testType) String() string {
|
func (t *testType) String() string {
|
||||||
return fmt.Sprint(t.a) + " " + t.b;
|
return fmt.Sprint(t.a) + " " + t.b
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
t := &testType{77, "Sunset Strip"};
|
t := &testType{77, "Sunset Strip"};
|
||||||
fmt.Println(t);
|
fmt.Println(t)
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ import "fmt"
|
|||||||
// Send the sequence 2, 3, 4, ... to channel 'ch'.
|
// Send the sequence 2, 3, 4, ... to channel 'ch'.
|
||||||
func generate(ch chan int) {
|
func generate(ch chan int) {
|
||||||
for i := 2; ; i++ {
|
for i := 2; ; i++ {
|
||||||
ch <- i; // Send 'i' to channel 'ch'.
|
ch <- i // Send 'i' to channel 'ch'.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ func filter(in, out chan int, prime int) {
|
|||||||
for {
|
for {
|
||||||
i := <-in; // Receive value of new variable 'i' from 'in'.
|
i := <-in; // Receive value of new variable 'i' from 'in'.
|
||||||
if i % prime != 0 {
|
if i % prime != 0 {
|
||||||
out <- i; // Send 'i' to channel 'out'.
|
out <- i // Send 'i' to channel 'out'.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -33,6 +33,6 @@ func main() {
|
|||||||
fmt.Println(prime);
|
fmt.Println(prime);
|
||||||
ch1 := make(chan int);
|
ch1 := make(chan int);
|
||||||
go filter(ch, ch1, prime);
|
go filter(ch, ch1, prime);
|
||||||
ch = ch1;
|
ch = ch1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ func generate() chan int {
|
|||||||
ch := make(chan int);
|
ch := make(chan int);
|
||||||
go func(){
|
go func(){
|
||||||
for i := 2; ; i++ {
|
for i := 2; ; i++ {
|
||||||
ch <- i;
|
ch <- i
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
return ch;
|
return ch;
|
||||||
@ -23,7 +23,7 @@ func filter(in chan int, prime int) chan int {
|
|||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
if i := <-in; i % prime != 0 {
|
if i := <-in; i % prime != 0 {
|
||||||
out <- i;
|
out <- i
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
|
@ -32,62 +32,32 @@ func IsSorted(data SortInterface) bool {
|
|||||||
|
|
||||||
type IntArray []int
|
type IntArray []int
|
||||||
|
|
||||||
func (p IntArray) Len() int {
|
func (p IntArray) Len() int { return len(p); }
|
||||||
return len(p);
|
func (p IntArray) Less(i, j int) bool { return p[i] < p[j]; }
|
||||||
}
|
func (p IntArray) Swap(i, j int) { p[i], p[j] = p[j], p[i]; }
|
||||||
func (p IntArray) Less(i, j int) bool {
|
|
||||||
return p[i] < p[j];
|
|
||||||
}
|
|
||||||
func (p IntArray) Swap(i, j int) {
|
|
||||||
p[i], p[j] = p[j], p[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
type FloatArray []float
|
type FloatArray []float
|
||||||
|
|
||||||
func (p FloatArray) Len() int {
|
func (p FloatArray) Len() int { return len(p); }
|
||||||
return len(p);
|
func (p FloatArray) Less(i, j int) bool { return p[i] < p[j]; }
|
||||||
}
|
func (p FloatArray) Swap(i, j int) { p[i], p[j] = p[j], p[i]; }
|
||||||
func (p FloatArray) Less(i, j int) bool {
|
|
||||||
return p[i] < p[j];
|
|
||||||
}
|
|
||||||
func (p FloatArray) Swap(i, j int) {
|
|
||||||
p[i], p[j] = p[j], p[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
type StringArray []string
|
type StringArray []string
|
||||||
|
|
||||||
func (p StringArray) Len() int {
|
func (p StringArray) Len() int { return len(p); }
|
||||||
return len(p);
|
func (p StringArray) Less(i, j int) bool { return p[i] < p[j]; }
|
||||||
}
|
func (p StringArray) Swap(i, j int) { p[i], p[j] = p[j], p[i]; }
|
||||||
func (p StringArray) Less(i, j int) bool {
|
|
||||||
return p[i] < p[j];
|
|
||||||
}
|
|
||||||
func (p StringArray) Swap(i, j int) {
|
|
||||||
p[i], p[j] = p[j], p[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Convenience wrappers for common cases
|
// Convenience wrappers for common cases
|
||||||
|
|
||||||
func SortInts(a []int) {
|
func SortInts(a []int) { Sort(IntArray(a)); }
|
||||||
Sort(IntArray(a));
|
func SortFloats(a []float) { Sort(FloatArray(a)); }
|
||||||
}
|
func SortStrings(a []string) { Sort(StringArray(a)); }
|
||||||
func SortFloats(a []float) {
|
|
||||||
Sort(FloatArray(a));
|
|
||||||
}
|
|
||||||
func SortStrings(a []string) {
|
|
||||||
Sort(StringArray(a));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
func IntsAreSorted(a []int) bool {
|
func IntsAreSorted(a []int) bool { return IsSorted(IntArray(a)); }
|
||||||
return IsSorted(IntArray(a));
|
func FloatsAreSorted(a []float) bool { return IsSorted(FloatArray(a)); }
|
||||||
}
|
func StringsAreSorted(a []string) bool { return IsSorted(StringArray(a)); }
|
||||||
func FloatsAreSorted(a []float) bool {
|
|
||||||
return IsSorted(FloatArray(a));
|
|
||||||
}
|
|
||||||
func StringsAreSorted(a []string) bool {
|
|
||||||
return IsSorted(StringArray(a));
|
|
||||||
}
|
|
||||||
|
@ -14,7 +14,7 @@ func ints() {
|
|||||||
a := sort.IntArray(data);
|
a := sort.IntArray(data);
|
||||||
sort.Sort(a);
|
sort.Sort(a);
|
||||||
if !sort.IsSorted(a) {
|
if !sort.IsSorted(a) {
|
||||||
panic();
|
panic()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ func strings() {
|
|||||||
a := sort.StringArray(data);
|
a := sort.StringArray(data);
|
||||||
sort.Sort(a);
|
sort.Sort(a);
|
||||||
if !sort.IsSorted(a) {
|
if !sort.IsSorted(a) {
|
||||||
panic();
|
panic()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -37,15 +37,9 @@ type dayArray struct {
|
|||||||
data []*day;
|
data []*day;
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *dayArray) Len() int {
|
func (p *dayArray) Len() int { return len(p.data); }
|
||||||
return len(p.data);
|
func (p *dayArray) Less(i, j int) bool { return p.data[i].num < p.data[j].num; }
|
||||||
}
|
func (p *dayArray) Swap(i, j int) { p.data[i], p.data[j] = p.data[j], p.data[i]; }
|
||||||
func (p *dayArray) Less(i, j int) bool {
|
|
||||||
return p.data[i].num < p.data[j].num;
|
|
||||||
}
|
|
||||||
func (p *dayArray) Swap(i, j int) {
|
|
||||||
p.data[i], p.data[j] = p.data[j], p.data[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
func days() {
|
func days() {
|
||||||
Sunday := day{ 0, "SUN", "Sunday" };
|
Sunday := day{ 0, "SUN", "Sunday" };
|
||||||
@ -59,12 +53,12 @@ func days() {
|
|||||||
a := dayArray{data};
|
a := dayArray{data};
|
||||||
sort.Sort(&a);
|
sort.Sort(&a);
|
||||||
if !sort.IsSorted(&a) {
|
if !sort.IsSorted(&a) {
|
||||||
panic();
|
panic()
|
||||||
}
|
}
|
||||||
for _, d := range data {
|
for _, d := range data {
|
||||||
fmt.Printf("%s ", d.long_name);
|
fmt.Printf("%s ", d.long_name)
|
||||||
}
|
}
|
||||||
fmt.Printf("\n");
|
fmt.Printf("\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,9 +9,7 @@ import "os"
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
s := "hello";
|
s := "hello";
|
||||||
if s[1] != 'e' {
|
if s[1] != 'e' { os.Exit(1) }
|
||||||
os.Exit(1);
|
|
||||||
}
|
|
||||||
s = "good bye";
|
s = "good bye";
|
||||||
var p *string = &s;
|
var p *string = &s;
|
||||||
*p = "ciao";
|
*p = "ciao";
|
||||||
|
@ -9,9 +9,9 @@ import "fmt"
|
|||||||
func sum(a []int) int { // returns an int
|
func sum(a []int) int { // returns an int
|
||||||
s := 0;
|
s := 0;
|
||||||
for i := 0; i < len(a); i++ {
|
for i := 0; i < len(a); i++ {
|
||||||
s += a[i];
|
s += a[i]
|
||||||
}
|
}
|
||||||
return s;
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user