Browse Source

go fmt

pull/2321/head
Chris Lu 3 years ago
parent
commit
7ce97b59d8
  1. 2
      weed/command/filer_remote_sync.go
  2. 1
      weed/command/filer_sync_std.go
  3. 5
      weed/command/mount_notsupported.go
  4. 1
      weed/command/mount_std.go
  5. 2
      weed/filer/read_remote.go
  6. 1
      weed/filer/sqlite/sqlite_store.go
  7. 1
      weed/filer/sqlite/sqlite_store_unsupported.go
  8. 4
      weed/filer/stream.go
  9. 1
      weed/filer/tikv/tikv_store.go
  10. 1
      weed/filer/tikv/tikv_store_kv.go
  11. 2
      weed/remote_storage/traverse_bfs.go
  12. 2
      weed/server/filer_grpc_server_sub_meta.go
  13. 1
      weed/server/filer_server_rocksdb.go
  14. 8
      weed/server/volume_grpc_copy.go
  15. 2
      weed/shell/command_remote_cache.go
  16. 1
      weed/shell/command_remote_configure.go
  17. 1
      weed/stats/disk_notsupported.go
  18. 1
      weed/stats/disk_supported.go
  19. 1
      weed/stats/memory_notsupported.go
  20. 1
      weed/stats/memory_supported.go
  21. 1
      weed/storage/backend/memory_map/memory_map_other.go
  22. 1
      weed/storage/backend/memory_map/memory_map_windows.go
  23. 1
      weed/storage/backend/volume_create.go
  24. 1
      weed/storage/backend/volume_create_linux.go
  25. 1
      weed/storage/backend/volume_create_windows.go
  26. 1
      weed/storage/needle_map/compact_map_cases_test.go
  27. 1
      weed/storage/types/offset_4bytes.go
  28. 1
      weed/storage/types/offset_5bytes.go
  29. 1
      weed/util/constants_4bytes.go
  30. 1
      weed/util/constants_5bytes.go
  31. 1
      weed/util/file_util_non_posix.go
  32. 1
      weed/util/file_util_posix.go
  33. 1
      weed/util/grace/signal_handling.go
  34. 1
      weed/util/grace/signal_handling_notsupported.go

2
weed/command/filer_remote_sync.go

@ -154,7 +154,7 @@ func followUpdatesAndUploadToRemote(option *RemoteSyncOptions, filerSource *sour
os.Exit(0)
}
}
if message.NewEntry.Name == remoteStorage.Name + filer.REMOTE_STORAGE_CONF_SUFFIX {
if message.NewEntry.Name == remoteStorage.Name+filer.REMOTE_STORAGE_CONF_SUFFIX {
conf := &remote_pb.RemoteConf{}
if err := proto.Unmarshal(message.NewEntry.Content, conf); err != nil {
return fmt.Errorf("unmarshal %s/%s: %v", filer.DirectoryEtcRemote, message.NewEntry.Name, err)

1
weed/command/filer_sync_std.go

@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
package command

5
weed/command/mount_notsupported.go

@ -1,6 +1,5 @@
// +build !linux
// +build !darwin
// +build !freebsd
//go:build !linux && !darwin && !freebsd
// +build !linux,!darwin,!freebsd
package command

1
weed/command/mount_std.go

@ -1,3 +1,4 @@
//go:build linux || darwin || freebsd
// +build linux darwin freebsd
package command

2
weed/filer/read_remote.go

@ -21,7 +21,7 @@ func MapFullPathToRemoteStorageLocation(localMountedDir util.FullPath, remoteMou
return remoteLocation
}
func MapRemoteStorageLocationPathToFullPath(localMountedDir util.FullPath, remoteMountedLocation *remote_pb.RemoteStorageLocation, remoteLocationPath string)(fp util.FullPath) {
func MapRemoteStorageLocationPathToFullPath(localMountedDir util.FullPath, remoteMountedLocation *remote_pb.RemoteStorageLocation, remoteLocationPath string) (fp util.FullPath) {
return localMountedDir.Child(remoteLocationPath[len(remoteMountedLocation.Path):])
}

1
weed/filer/sqlite/sqlite_store.go

@ -1,3 +1,4 @@
//go:build linux || darwin || windows
// +build linux darwin windows
// limited GOOS due to modernc.org/libc/unistd

1
weed/filer/sqlite/sqlite_store_unsupported.go

@ -1,3 +1,4 @@
//go:build !linux && !darwin && !windows && !s390 && !ppc64le && !mips64
// +build !linux,!darwin,!windows,!s390,!ppc64le,!mips64
// limited GOOS due to modernc.org/libc/unistd

4
weed/filer/stream.go

@ -206,7 +206,7 @@ func (c *ChunkStreamReader) doRead(p []byte) (n int, err error) {
}
func (c *ChunkStreamReader) isBufferEmpty() bool {
return len(c.buffer) <= int(c.logicOffset - c.bufferOffset)
return len(c.buffer) <= int(c.logicOffset-c.bufferOffset)
}
func (c *ChunkStreamReader) Seek(offset int64, whence int) (int64, error) {
@ -261,7 +261,7 @@ func (c *ChunkStreamReader) prepareBufferFor(offset int64) (err error) {
} else if currentChunkIndex > 0 {
if insideChunk(offset, c.chunkViews[currentChunkIndex]) {
// good hit
} else if insideChunk(offset, c.chunkViews[currentChunkIndex-1]){
} else if insideChunk(offset, c.chunkViews[currentChunkIndex-1]) {
currentChunkIndex -= 1
// fmt.Printf("select -1 chunk %d %s\n", currentChunkIndex, c.chunkViews[currentChunkIndex].FileId)
} else {

1
weed/filer/tikv/tikv_store.go

@ -1,3 +1,4 @@
//go:build tikv
// +build tikv
package tikv

1
weed/filer/tikv/tikv_store_kv.go

@ -1,3 +1,4 @@
//go:build tikv
// +build tikv
package tikv

2
weed/remote_storage/traverse_bfs.go

@ -45,7 +45,7 @@ func TraverseBfs(listDirFn ListDirectoryFunc, parentPath util.FullPath, visitFn
}
func processOneDirectory(listDirFn ListDirectoryFunc, parentPath util.FullPath, visitFn VisitFunc, dirQueue *util.Queue, dirQueueWg *sync.WaitGroup) (error) {
func processOneDirectory(listDirFn ListDirectoryFunc, parentPath util.FullPath, visitFn VisitFunc, dirQueue *util.Queue, dirQueueWg *sync.WaitGroup) error {
return listDirFn(parentPath, func(dir string, name string, isDirectory bool, remoteEntry *filer_pb.RemoteEntry) error {
if err := visitFn(dir, name, isDirectory, remoteEntry); err != nil {

2
weed/server/filer_grpc_server_sub_meta.go

@ -203,7 +203,7 @@ func (fs *FilerServer) eachEventNotificationFn(req *filer_pb.SubscribeMetadataRe
if hasPrefixIn(fullpath, req.PathPrefixes) {
// good
}else {
} else {
if !strings.HasPrefix(fullpath, req.PathPrefix) {
if eventNotification.NewParentPath != "" {
newFullPath := util.Join(eventNotification.NewParentPath, entryName)

1
weed/server/filer_server_rocksdb.go

@ -1,3 +1,4 @@
//go:build rocksdb
// +build rocksdb
package weed_server

8
weed/server/volume_grpc_copy.go

@ -84,21 +84,21 @@ func (vs *VolumeServer) VolumeCopy(ctx context.Context, req *volume_server_pb.Vo
return err
}
if modifiedTsNs > 0 {
os.Chtimes(dataBaseFileName + ".dat", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
os.Chtimes(dataBaseFileName+".dat", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
}
if modifiedTsNs, err = vs.doCopyFile(client, false, req.Collection, req.VolumeId, volFileInfoResp.CompactionRevision, volFileInfoResp.IdxFileSize, indexBaseFileName, ".idx", false, false); err != nil {
return err
}
if modifiedTsNs > 0 {
os.Chtimes(indexBaseFileName + ".idx", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
os.Chtimes(indexBaseFileName+".idx", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
}
if modifiedTsNs, err = vs.doCopyFile(client, false, req.Collection, req.VolumeId, volFileInfoResp.CompactionRevision, volFileInfoResp.DatFileSize, dataBaseFileName, ".vif", false, true); err != nil {
return err
}
if modifiedTsNs > 0 {
os.Chtimes(dataBaseFileName + ".vif", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
os.Chtimes(dataBaseFileName+".vif", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
}
os.Remove(dataBaseFileName + ".note")
@ -167,7 +167,7 @@ func (vs *VolumeServer) doCopyFile(client volume_server_pb.VolumeServerClient, i
only check the the differ of the file size
todo: maybe should check the received count and deleted count of the volume
*/
func checkCopyFiles(originFileInf *volume_server_pb.ReadVolumeFileStatusResponse, idxFileName, datFileName string) (error) {
func checkCopyFiles(originFileInf *volume_server_pb.ReadVolumeFileStatusResponse, idxFileName, datFileName string) error {
stat, err := os.Stat(idxFileName)
if err != nil {
return fmt.Errorf("stat idx file %s failed: %v", idxFileName, err)

2
weed/shell/command_remote_cache.go

@ -59,7 +59,7 @@ func (c *commandRemoteCache) Do(args []string, commandEnv *CommandEnv, writer io
}
mappings, localMountedDir, remoteStorageMountedLocation, remoteStorageConf, detectErr := detectMountInfo(commandEnv, writer, *dir)
if detectErr != nil{
if detectErr != nil {
jsonPrintln(writer, mappings)
return detectErr
}

1
weed/shell/command_remote_configure.go

@ -116,7 +116,6 @@ Namenode running as service 'hdfs' with FQDN 'namenode.hadoop.docker'.
`)
remoteConfigureCommand.StringVar(&conf.HdfsDataTransferProtection, "hdfs.dataTransferProtection", "", "[authentication|integrity|privacy] Kerberos data transfer protection")
if err = remoteConfigureCommand.Parse(args); err != nil {
return nil
}

1
weed/stats/disk_notsupported.go

@ -1,3 +1,4 @@
//go:build openbsd || netbsd || plan9 || solaris
// +build openbsd netbsd plan9 solaris
package stats

1
weed/stats/disk_supported.go

@ -1,3 +1,4 @@
//go:build !windows && !openbsd && !netbsd && !plan9 && !solaris
// +build !windows,!openbsd,!netbsd,!plan9,!solaris
package stats

1
weed/stats/memory_notsupported.go

@ -1,3 +1,4 @@
//go:build !linux
// +build !linux
package stats

1
weed/stats/memory_supported.go

@ -1,3 +1,4 @@
//go:build linux
// +build linux
package stats

1
weed/storage/backend/memory_map/memory_map_other.go

@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
package memory_map

1
weed/storage/backend/memory_map/memory_map_windows.go

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package memory_map

1
weed/storage/backend/volume_create.go

@ -1,3 +1,4 @@
//go:build !linux && !windows
// +build !linux,!windows
package backend

1
weed/storage/backend/volume_create_linux.go

@ -1,3 +1,4 @@
//go:build linux
// +build linux
package backend

1
weed/storage/backend/volume_create_windows.go

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package backend

1
weed/storage/needle_map/compact_map_cases_test.go

@ -1,3 +1,4 @@
//go:build 5BytesOffset
// +build 5BytesOffset
package needle_map

1
weed/storage/types/offset_4bytes.go

@ -1,3 +1,4 @@
//go:build !5BytesOffset
// +build !5BytesOffset
package types

1
weed/storage/types/offset_5bytes.go

@ -1,3 +1,4 @@
//go:build 5BytesOffset
// +build 5BytesOffset
package types

1
weed/util/constants_4bytes.go

@ -1,3 +1,4 @@
//go:build !5BytesOffset
// +build !5BytesOffset
package util

1
weed/util/constants_5bytes.go

@ -1,3 +1,4 @@
//go:build 5BytesOffset
// +build 5BytesOffset
package util

1
weed/util/file_util_non_posix.go

@ -1,3 +1,4 @@
//go:build linux || darwin || freebsd || netbsd || openbsd || plan9 || solaris || zos
// +build linux darwin freebsd netbsd openbsd plan9 solaris zos
package util

1
weed/util/file_util_posix.go

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package util

1
weed/util/grace/signal_handling.go

@ -1,3 +1,4 @@
//go:build !plan9
// +build !plan9
package grace

1
weed/util/grace/signal_handling_notsupported.go

@ -1,3 +1,4 @@
//go:build plan9
// +build plan9
package grace

Loading…
Cancel
Save