mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	* 取消用户设置的压缩级别,现在压缩级别通过系统自动设置 * Pool中的对象命中100万次时自动销毁,避免内存泄漏 * 降低Pool中的对象数量,避免占用太多内存 * 根据系统CPU线程数自动计算压缩级别,避免消耗太多CPU * zstd限制解码的最大Window * zstd使用低内存模式
		
			
				
	
	
		
			37 lines
		
	
	
		
			643 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			643 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package compressions
 | 
						|
 | 
						|
import "sync/atomic"
 | 
						|
 | 
						|
type BaseReader struct {
 | 
						|
	pool *ReaderPool
 | 
						|
 | 
						|
	isFinished bool
 | 
						|
	hits       uint32
 | 
						|
}
 | 
						|
 | 
						|
func (this *BaseReader) SetPool(pool *ReaderPool) {
 | 
						|
	this.pool = pool
 | 
						|
}
 | 
						|
 | 
						|
func (this *BaseReader) Finish(obj Reader) error {
 | 
						|
	if this.isFinished {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	err := obj.RawClose()
 | 
						|
	if err == nil && this.pool != nil {
 | 
						|
		this.pool.Put(obj)
 | 
						|
	}
 | 
						|
	this.isFinished = true
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
func (this *BaseReader) ResetFinish() {
 | 
						|
	this.isFinished = false
 | 
						|
}
 | 
						|
 | 
						|
func (this *BaseReader) IncreaseHit() uint32 {
 | 
						|
	return atomic.AddUint32(&this.hits, 1)
 | 
						|
}
 |