mirror of
				https://github.com/restic/restic.git
				synced 2025-11-04 07:11:01 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								package backend
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// LoadAll reads all data stored in the backend for the handle. The buffer buf
							 | 
						||
| 
								 | 
							
								// is resized to accomodate all data in the blob.
							 | 
						||
| 
								 | 
							
								func LoadAll(be Backend, h Handle, buf []byte) ([]byte, error) {
							 | 
						||
| 
								 | 
							
									fi, err := be.Stat(h)
							 | 
						||
| 
								 | 
							
									if err != nil {
							 | 
						||
| 
								 | 
							
										return nil, err
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									if fi.Size > int64(len(buf)) {
							 | 
						||
| 
								 | 
							
										buf = make([]byte, int(fi.Size))
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									n, err := be.Load(h, buf, 0)
							 | 
						||
| 
								 | 
							
									buf = buf[:n]
							 | 
						||
| 
								 | 
							
									return buf, err
							 | 
						||
| 
								 | 
							
								}
							 |