You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							671 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							24 lines
						
					
					
						
							671 B
						
					
					
				| package mount | |
| 
 | |
| import ( | |
| 	"github.com/hanwen/go-fuse/v2/fuse" | |
| 	"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb" | |
| ) | |
| 
 | |
| func (wfs *WFS) AcquireHandle(inode uint64, uid, gid uint32) (fileHandle *FileHandle, status fuse.Status) { | |
| 	var entry *filer_pb.Entry | |
| 	_, _, entry, status = wfs.maybeReadEntry(inode) | |
| 	if status == fuse.OK { | |
| 		// need to AcquireFileHandle again to ensure correct handle counter | |
| 		fileHandle = wfs.fhmap.AcquireFileHandle(wfs, inode, entry) | |
| 	} | |
| 	return | |
| } | |
| 
 | |
| func (wfs *WFS) ReleaseHandle(handleId FileHandleId) { | |
| 	wfs.fhmap.ReleaseByHandle(handleId) | |
| } | |
| 
 | |
| func (wfs *WFS) GetHandle(handleId FileHandleId) *FileHandle { | |
| 	return wfs.fhmap.GetFileHandle(handleId) | |
| }
 |