博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个byte缓存--用于图片或视频
阅读量:6234 次
发布时间:2019-06-22

本文共 2865 字,大约阅读时间需要 9 分钟。

hot3.png

public class ImageCache {

private List<byte[]> list = new ArrayList<byte[]>(); //存储所有部分缓存

private int initSize;    //初始化大小,每次申请时都会申请等同于initSize大小的byte[] buf

private int size;    //image cache 的实际大小

public ImageCache(int initSize){

this.initSize = initSize;

byte[] buf = new byte[initSize];

list.add(buf);

}

/**

* 返回此image对象对应的byte数组

*

*/

public byte[] getImage(){

byte[] buf = new byte[size];

int init = size;

int index = 0;

for(byte[] temp :list){

if(init < initSize){

setElement(buf, temp, 0, init, index);

break;

}else{

init = init - initSize;

setElement(buf, temp, 0, temp.length, index);

index = index + initSize;

}

}

return buf;

}

/**

* dest  目标数组

* src  原数组

* start 原数组开始位置

* end  原数组结束位置

* index 目标数组开始位置

*/

private void setElement(byte[] dest,byte[] src,int start ,int end,int index){

int temp = index;

for(int i = start ; i< end ; i++){

byte value = src[i];

dest[temp] = value;

temp++;

}

}

/**

* 获取实际的索引位置

*

*/

public int getIndex(){

int listSize = list.size();

int index = size - initSize * (listSize - 1 );

return index;

}

public ImageCache append(byte[] buf,int start,int end){

int length = buf.length;

if(start <0 || start >end  || end >length){

throw new RuntimeException("ImageCache append param error,start:"+start+",end:"+end+",length:"+length);

}

byte[] temp = new byte[end-start];

setElement(temp, buf, start, end, 0);

return append(temp);

}

/**

* 以追加的方式向iamge对象中添加byte图像数据

* buf

*/

public ImageCache append(byte[] buf){

int length = buf.length;

int listSize = list.size();

int remain = initSize * listSize - size;  //还剩余空间

byte[] bs = list.get(listSize-1);//剩余空间集合

if(remain >= length){//剩余空间多余需要的空间,直接追加

setElement(bs, buf, 0, buf.length, getIndex());

}else{//剩余空间不足,需要申请空间

setElement(bs, buf, 0, remain, getIndex());//将之前空间填满

int bufSzie = (length -remain)/initSize;// 计算还需要buf的个数

int startIndex = remain;  

for(int i=0 ;i < bufSzie ;i++){

byte[] apply = new byte[initSize] ;

setElement(apply, buf, startIndex, startIndex+initSize, 0);

list.add(apply);

startIndex = startIndex + initSize;

}

byte[] apply = new byte[initSize];

setElement(apply, buf, startIndex, buf.length, 0);

list.add(apply);

}

size += length;

return this;

}

public void destroy(){

this.list = null;

this.initSize =0;

this.size = 0;

}

@Override

public String toString() {

StringBuffer buf = new StringBuffer();

buf.append("initSize:"+this.initSize+",size:"+size+",list.size:"+list.size());

buf.append(";---content--:");

printBytes(this.list, buf);

return buf.toString();

}

public int getInistSize(){

return this.initSize;

}

public List<byte[]> getList(){

return this.list;

}

public int getSize(){

return this.size;

}

public void printBytes(byte[] buf,StringBuffer sb){

for(byte temp : buf){

sb.append(temp).append(",");

}

}

private void printBytes(List<byte[]> list,StringBuffer buf){

for(byte[] temp : list){

printBytes(temp,buf);

}

}

}

转载于:https://my.oschina.net/mutianya/blog/291630

你可能感兴趣的文章
百度内页排名的第二个秘诀
查看>>
python--集合概念和实战(二)
查看>>
Android开发环境错误处理
查看>>
高性能的开源http加速器Varnish
查看>>
MySQL执行计划解析
查看>>
Mysql Date 函数
查看>>
博客分类导航
查看>>
实战HMM-Viterbi角色标注地名识别
查看>>
Delphi 与 DirectX 之 DelphiX(58): TDIB.DoTile();
查看>>
如何打开记事本并显示指定内容 - 回复 "苦苦苦" 的问题
查看>>
android4.x新特征总结
查看>>
TClientDataSet[22]: 数组字段与 ObjectView
查看>>
Oracle Data Guard(1)
查看>>
我的友情链接
查看>>
实现iOS图片等资源文件的热更新化(三):动态的资源文件夹
查看>>
OK6410-使用DirecetFB支持Qt4.7.0
查看>>
python获取linux系统信息、性能阀值、短信网关发送的例子
查看>>
微信公众号实现回复图文消息
查看>>
单点登录方案的比较和选择
查看>>
Android 涂鸦最佳实践
查看>>