fileinfo.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package main
  2. type fileInfo struct {
  3. path, rel, name, ext string
  4. // packageName is the Go package name of a .go file, without the
  5. // "_test" suffix if it was present. It is empty for non-Go files.
  6. packageName string
  7. // importPath is the canonical import path for this file's package.
  8. // This may be read from a package comment (in Go) or a go_package
  9. // option (in proto). This field is empty for files that don't specify
  10. // an import path.
  11. importPath string
  12. // category is the type of file, based on extension.
  13. category extCategory
  14. // isTest is true if the file stem (the part before the extension)
  15. // ends with "_test.go". This is never true for non-Go files.
  16. isTest bool
  17. // isXTest is true for test Go files whose declared package name ends
  18. // with "_test".
  19. isXTest bool
  20. // imports is a list of packages imported by a file. It does not include
  21. // "C" or anything from the standard library.
  22. imports []string
  23. // isCgo is true for .go files that import "C".
  24. isCgo bool
  25. // goos and goarch contain the OS and architecture suffixes in the filename,
  26. // if they were present.
  27. goos, goarch string
  28. // tags is a list of build tag lines. Each entry is the trimmed text of
  29. // a line after a "+build" prefix.
  30. tags []tagLine
  31. // copts and clinkopts contain flags that are part of CFLAGS, CPPFLAGS,
  32. // CXXFLAGS, and LDFLAGS directives in cgo comments.
  33. copts, clinkopts []taggedOpts
  34. // hasServices indicates whether a .proto file has service definitions.
  35. hasServices bool
  36. }
  37. // tagLine represents the space-separated disjunction of build tag groups
  38. // in a line comment.
  39. type tagLine []tagGroup
  40. // tagGroup represents a comma-separated conjuction of build tags.
  41. type tagGroup []string
  42. // extCategory indicates how a file should be treated, based on extension.
  43. type extCategory int
  44. // taggedOpts a list of compile or link options which should only be applied
  45. // if the given set of build tags are satisfied. These options have already
  46. // been tokenized using the same algorithm that "go build" uses, then joined
  47. // with OptSeparator.
  48. type taggedOpts struct {
  49. tags tagLine
  50. opts string
  51. }
  52. func fileNameInfo(dir, rel, name string) fileInfo {
  53. return fileInfo{}
  54. }