diff --git a/doc/go_tutorial.txt b/doc/go_tutorial.txt index 1242232f0c..89ac59fa17 100644 --- a/doc/go_tutorial.txt +++ b/doc/go_tutorial.txt @@ -4,7 +4,7 @@ Let's Go Rob Pike ---- -(February 4, 2009) +(March 17, 2009) This document is a tutorial introduction to the basics of the Go systems programming @@ -51,7 +51,7 @@ program that doesn't depend on "print()": --PROG progs/helloworld2.go This version imports the ''os'' package to acess its "Stdout" variable, of type -"*os.FD". The "import" statement is a declaration: it names the identifier ("os") +"*os.File". The "import" statement is a declaration: it names the identifier ("os") that will be used to access members of the package imported from the file ("os"), found in the current directory or in a standard location. Given "os.Stdout" we can use its "WriteString" method to print the string. @@ -307,11 +307,11 @@ An I/O Package ---- Next we'll look at a simple package for doing file I/O with the usual -sort of open/close/read/write interface. Here's the start of "fd.go": +sort of open/close/read/write interface. Here's the start of "file.go": ---PROG progs/fd.go /package/ /^}/ +--PROG progs/file.go /package/ /^}/ -The first line declares the name of the package -- "fd" for ''file descriptor'' -- +The first line declares the name of the package -- "file" -- and then we import two packages. The "os" package hides the differences between various operating systems to give a consistent view of files and so on; here we're only going to use its error handling utilities @@ -321,11 +321,11 @@ The other item is the low-level, external "syscall" package, which provides a primitive interface to the underlying operating system's calls. Next is a type definition: the "type" keyword introduces a type declaration, -in this case a data structure called "FD". -To make things a little more interesting, our "FD" includes the name of the file +in this case a data structure called "File". +To make things a little more interesting, our "File" includes the name of the file that the file descriptor refers to. -Because "FD" starts with a capital letter, the type is available outside the package, +Because "File" starts with a capital letter, the type is available outside the package, that is, by users of the package. In Go the rule about visibility of information is simple: if a name (of a top-level type, function, method, constant, variable, or of a structure field) is capitalized, users of the package may see it. Otherwise, the @@ -333,37 +333,37 @@ name and hence the thing being named is visible only inside the package in which it is declared. This is more than a convention; the rule is enforced by the compiler. In Go, the term for publicly visible names is ''exported''. -In the case of "FD", all its fields are lower case and so invisible to users, but we +In the case of "File", all its fields are lower case and so invisible to users, but we will soon give it some exported, upper-case methods. First, though, here is a factory to create them: ---PROG progs/fd.go /newFD/ /^}/ +--PROG progs/file.go /newFile/ /^}/ -This returns a pointer to a new "FD" structure with the file descriptor and name +This returns a pointer to a new "File" structure with the file descriptor and name filled in. This code uses Go's notion of a ''composite literal'', analogous to the ones used to build maps and arrays, to construct a new heap-allocated object. We could write - n := new(FD); - n.fildes = fd; + n := new(File); + n.fd = fd; n.name = name; return n -but for simple structures like "FD" it's easier to return the address of a nonce +but for simple structures like "File" it's easier to return the address of a nonce composite literal, as is done here on line 17. -We can use the factory to construct some familiar, exported variables of type "*FD": +We can use the factory to construct some familiar, exported variables of type "*File": ---PROG progs/fd.go /var/ /^.$/ +--PROG progs/file.go /var/ /^.$/ -The "newFD" function was not exported because it's internal. The proper, +The "newFile" function was not exported because it's internal. The proper, exported factory to use is "Open": ---PROG progs/fd.go /func.Open/ /^}/ +--PROG progs/file.go /func.Open/ /^}/ There are a number of new things in these few lines. First, "Open" returns -multiple values, an "FD" and an error (more about errors in a moment). +multiple values, an "File" and an error (more about errors in a moment). We declare the multi-value return as a parenthesized list of declarations; syntactically they look just like a second parameter list. The function @@ -371,9 +371,9 @@ they look just like a second parameter list. The function also has a multi-value return, which we can grab with the multi-variable declaration on line 27; it declares "r" and "e" to hold the two values, both of type "int64" (although you'd have to look at the "syscall" package -to see that). Finally, line 28 returns two values: a pointer to the new "FD" +to see that). Finally, line 28 returns two values: a pointer to the new "File" and the error. If "syscall.Open" fails, the file descriptor "r" will -be negative and "NewFD" will return "nil". +be negative and "NewFile" will return "nil". About those errors: The "os" library includes a general notion of an error string, maintaining a unique set of errors throughout the program. It's a @@ -382,13 +382,13 @@ consistent error handling throughout Go code. In "Open" we use the routine "os.ErrnoToError" to translate Unix's integer "errno" value into an error string, which will be stored in a unique instance of "*os.Error". -Now that we can build "FDs", we can write methods for them. To declare +Now that we can build "Files", we can write methods for them. To declare a method of a type, we define a function to have an explicit receiver of that type, placed -in parentheses before the function name. Here are some methods for "*FD", -each of which declares a receiver variable "fd". +in parentheses before the function name. Here are some methods for "*File", +each of which declares a receiver variable "file". ---PROG progs/fd.go /Close/ END +--PROG progs/file.go /Close/ END There is no implicit "this" and the receiver variable must be used to access members of the structure. Methods are not declared within @@ -417,7 +417,7 @@ and run the program: Rotting cats ---- -Building on the "fd" package, here's a simple version of the Unix utility "cat(1)", +Building on the "file" package, here's a simple version of the Unix utility "cat(1)", "progs/cat.go": --PROG progs/cat.go @@ -425,7 +425,7 @@ Building on the "fd" package, here's a simple version of the Unix utility "cat(1 By now this should be easy to follow, but the "switch" statement introduces some new features. Like a "for" loop, an "if" or "switch" can include an initialization statement. The "switch" on line 12 uses one to create variables -"nr" and "er" to hold the return values from "fd.Read()". (The "if" on line 19 +"nr" and "er" to hold the return values from "f.Read()". (The "if" on line 19 has the same idea.) The "switch" statement is general: it evaluates the cases from top to bottom looking for the first case that matches the value; the case expressions don't need to be constants or even integers, as long as @@ -444,7 +444,7 @@ Now let's make a variant of "cat" that optionally does "rot13" on its input. It's easy to do by just processing the bytes, but instead we will exploit Go's notion of an interface. -The "cat()" subroutine uses only two methods of "fd": "Read()" and "String()", +The "cat()" subroutine uses only two methods of "f": "Read()" and "String()", so let's start by defining an interface that has exactly those two methods. Here is code from "progs/cat_rot13.go": @@ -452,9 +452,9 @@ Here is code from "progs/cat_rot13.go": Any type that implements the two methods of "reader" -- regardless of whatever other methods the type may also contain -- is said to implement the -interface. Since "fd.FD" implements these methods, it implements the +interface. Since "file.File" implements these methods, it implements the "reader" interface. We could tweak the "cat" subroutine to accept a "reader" -instead of a "*fd.FD" and it would work just fine, but let's embellish a little +instead of a "*file.File" and it would work just fine, but let's embellish a little first by writing a second type that implements "reader", one that wraps an existing "reader" and does "rot13" on the data. To do this, we just define the type and implement the methods and with no other bookkeeping, @@ -497,7 +497,7 @@ type if the type implements all the methods declared in the interface. This means that a type may implement an arbitrary number of different interfaces. There is no type hierarchy; things can be much more ad hoc, -as we saw with "rot13". The type "fd.FD" implements "reader"; it could also +as we saw with "rot13". The type "file.File" implements "reader"; it could also implement a "writer", or any other interface built from its methods that fits the current situation. Consider the empty interface diff --git a/doc/progs/cat.go b/doc/progs/cat.go index 5925c8da26..b46487fd2a 100644 --- a/doc/progs/cat.go +++ b/doc/progs/cat.go @@ -5,23 +5,23 @@ package main import ( - "fd"; + "file"; "flag"; ) -func cat(file *fd.FD) { +func cat(f *file.File) { const NBUF = 512; var buf [NBUF]byte; for { - switch nr, er := file.Read(buf); true { + switch nr, er := f.Read(buf); true { case nr < 0: - print("error reading from ", file.String(), ": ", er.String(), "\n"); + print("error reading from ", f.String(), ": ", er.String(), "\n"); sys.Exit(1); case nr == 0: // EOF return; case nr > 0: - if nw, ew := fd.Stdout.Write(buf[0:nr]); nw != nr { - print("error writing from ", file.String(), ": ", ew.String(), "\n"); + if nw, ew := file.Stdout.Write(buf[0:nr]); nw != nr { + print("error writing from ", f.String(), ": ", ew.String(), "\n"); } } } @@ -30,15 +30,15 @@ func cat(file *fd.FD) { func main() { flag.Parse(); // Scans the arg list and sets up flags if flag.NArg() == 0 { - cat(fd.Stdin); + cat(file.Stdin); } for i := 0; i < flag.NArg(); i++ { - file, err := fd.Open(flag.Arg(i), 0, 0); - if file == nil { + f, err := file.Open(flag.Arg(i), 0, 0); + if f == nil { print("can't open ", flag.Arg(i), ": error ", err, "\n"); sys.Exit(1); } - cat(file); - file.Close(); + cat(f); + f.Close(); } } diff --git a/doc/progs/cat_rot13.go b/doc/progs/cat_rot13.go index d2b017bd2c..27d1e467fe 100644 --- a/doc/progs/cat_rot13.go +++ b/doc/progs/cat_rot13.go @@ -5,7 +5,7 @@ package main import ( - "fd"; + "file"; "flag"; "os"; ) @@ -63,7 +63,7 @@ func cat(r reader) { case nr == 0: // EOF return; case nr > 0: - nw, ew := fd.Stdout.Write(buf[0:nr]); + nw, ew := file.Stdout.Write(buf[0:nr]); if nw != nr { print("error writing from ", r.String(), ": ", ew.String(), "\n"); } @@ -74,15 +74,15 @@ func cat(r reader) { func main() { flag.Parse(); // Scans the arg list and sets up flags if flag.NArg() == 0 { - cat(fd.Stdin); + cat(file.Stdin); } for i := 0; i < flag.NArg(); i++ { - file, err := fd.Open(flag.Arg(i), 0, 0); - if file == nil { + f, err := file.Open(flag.Arg(i), 0, 0); + if f == nil { print("can't open ", flag.Arg(i), ": error ", err, "\n"); sys.Exit(1); } - cat(file); - file.Close(); + cat(f); + f.Close(); } } diff --git a/doc/progs/fd.go b/doc/progs/fd.go deleted file mode 100644 index c99c87777a..0000000000 --- a/doc/progs/fd.go +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright 2009 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package fd - -import ( - "os"; - "syscall"; -) - -type FD struct { - fildes int64; // file descriptor number - name string; // file name at Open time -} - -func newFD(fd int64, name string) *FD { - if fd < 0 { - return nil - } - return &FD{fd, name} -} - -var ( - Stdin = newFD(0, "/dev/stdin"); - Stdout = newFD(1, "/dev/stdout"); - Stderr = newFD(2, "/dev/stderr"); -) - -func Open(name string, mode int64, perm int64) (fd *FD, err *os.Error) { - r, e := syscall.Open(name, mode, perm); - return newFD(r, name), os.ErrnoToError(e) -} - -func (fd *FD) Close() *os.Error { - if fd == nil { - return os.EINVAL - } - r, e := syscall.Close(fd.fildes); - fd.fildes = -1; // so it can't be closed again - return nil -} - -func (fd *FD) Read(b []byte) (ret int, err *os.Error) { - if fd == nil { - return -1, os.EINVAL - } - r, e := syscall.Read(fd.fildes, &b[0], int64(len(b))); - return int(r), os.ErrnoToError(e) -} - -func (fd *FD) Write(b []byte) (ret int, err *os.Error) { - if fd == nil { - return -1, os.EINVAL - } - r, e := syscall.Write(fd.fildes, &b[0], int64(len(b))); - return int(r), os.ErrnoToError(e) -} - -func (fd *FD) String() string { - return fd.name -} diff --git a/doc/progs/file.go b/doc/progs/file.go new file mode 100644 index 0000000000..e2ecf92096 --- /dev/null +++ b/doc/progs/file.go @@ -0,0 +1,62 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package file + +import ( + "os"; + "syscall"; +) + +type File struct { + fd int64; // file descriptor number + name string; // file name at Open time +} + +func newFile(fd int64, name string) *File { + if fd < 0 { + return nil + } + return &File{fd, name} +} + +var ( + Stdin = newFile(0, "/dev/stdin"); + Stdout = newFile(1, "/dev/stdout"); + Stderr = newFile(2, "/dev/stderr"); +) + +func Open(name string, mode int64, perm int64) (file *File, err *os.Error) { + r, e := syscall.Open(name, mode, perm); + return newFile(r, name), os.ErrnoToError(e) +} + +func (file *File) Close() *os.Error { + if file == nil { + return os.EINVAL + } + r, e := syscall.Close(file.fd); + file.fd = -1; // so it can't be closed again + return nil +} + +func (file *File) Read(b []byte) (ret int, err *os.Error) { + if file == nil { + return -1, os.EINVAL + } + r, e := syscall.Read(file.fd, &b[0], int64(len(b))); + return int(r), os.ErrnoToError(e) +} + +func (file *File) Write(b []byte) (ret int, err *os.Error) { + if file == nil { + return -1, os.EINVAL + } + r, e := syscall.Write(file.fd, &b[0], int64(len(b))); + return int(r), os.ErrnoToError(e) +} + +func (file *File) String() string { + return file.name +} diff --git a/doc/progs/helloworld3.go b/doc/progs/helloworld3.go index 59aebc7213..18fa594f0e 100644 --- a/doc/progs/helloworld3.go +++ b/doc/progs/helloworld3.go @@ -4,12 +4,12 @@ package main -import fd "fd" +import file "file" func main() { hello := []byte{'h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n'}; - fd.Stdout.Write(hello); - file, err := fd.Open("/does/not/exist", 0, 0); + file.Stdout.Write(hello); + file, err := file.Open("/does/not/exist", 0, 0); if file == nil { print("can't open file; err=", err.String(), "\n"); sys.Exit(1); diff --git a/doc/progs/run b/doc/progs/run index f93bb65a6a..6f047b1552 100755 --- a/doc/progs/run +++ b/doc/progs/run @@ -6,7 +6,7 @@ rm -f *.6 for i in \ - fd.go \ + file.go \ helloworld.go \ helloworld2.go \ helloworld3.go \