file.go
package volume
import (
"time"
"encoding/binary"
"errors"
"os"
"io"
)
//文件基本信息结构体
type FileInfo struct {
Fid uint64
Offset uint64
Size uint64
Ctime time.Time
Mtime time.Time
Atime time.Time
FileName string
}
//文件信息编码到切片中
func (iv *FileInfo)MarshalBinary() []byte {
data := make([]byte, 48 + len(iv.FileName))
binary.BigEndian.PutUint64(data[0:8], iv.Fid)
binary.BigEndian.PutUint64(data[8:16], iv.Offset)
binary.BigEndian.PutUint64(data[16:24], iv.Size)
binary.BigEndian.PutUint64(data[24:32], uint64(iv.Ctime.Unix()))
binary.BigEndian.PutUint64(data[32:40], uint64(iv.Mtime.Unix()))
binary.BigEndian.PutUint64(data[40:48], uint64(iv.Atime.Unix()))
copy(data[48:], []byte(iv.FileName))
return data
}
//文件信息解码到结构体中
func (iv *FileInfo)UnMarshalBinary(data []byte) (err error) {
defer func() {
if r := recover(); r != nil {
err = r.(error)
}
}()
iv.Fid = binary.BigEndian.Uint64(data[0:8])
iv.Offset = binary.BigEndian.Uint64(data[8:16])
iv.Size = binary.BigEndian.Uint64(data[16:24])
iv.Ctime = time.Unix(int64(binary.BigEndian.Uint64(data[24:32])), 0)
iv.Mtime = time.Unix(int64(binary.BigEndian.Uint64(data[32:40])), 0)
iv.Atime = time.Unix(int64(binary.BigEndian.Uint64(data[40:48])), 0)
iv.FileName = string(data[48:])
return err
}
//文件结构体
type File struct {
DataFile *os.File
Info *FileInfo
offset uint64 //偏移量
}
//读取文件
func (f *File)Read(b []byte) (n int, err error) {
//计算文件开始读取位置和结束位置
start := f.Info.Offset + f.offset
end := f.Info.Offset + f.Info.Size
length := end - start
if len(b) > int(length) {
b = b[:length]
}
n, err = f.DataFile.ReadAt(b, int64(start)) //读取文件 从start位置开始 读取b个数据
f.offset += uint64(n)
if f.offset >= f.Info.Size {
err = io.EOF
}
return
}
//写文件
func (f *File)Write(b []byte) (n int, err error) {
start := f.Info.Offset + f.offset
end := f.Info.Offset + f.Info.Size
length := end - start
if len(b) > int(length) {
//b = b[:length]
return 0, errors.New("you should create a new File to write")
}else {
n, err = f.DataFile.WriteAt(b, int64(start))
f.offset += uint64(n)
return
}
}
//读取文件偏移量
//0意味着相对于文件的原始位置,1意味着相对于当前偏移量,2意味着相对于文件结尾
func (f *File)Seek(offset int64, whence int) (int64, error) {
switch whence {
case 0:
f.offset = uint64(offset)
case 1:
f.offset = uint64(int64(f.offset) + offset)
case 2:
f.offset = uint64(int64(f.Info.Size) + offset)
}
return int64(f.offset), nil
//if f.offset > f.Info.Size {
// f.offset = 0
// return int64(f.offset), errors.New("offset > file.size")
//}else {
// return int64(f.offset), nil
//}
}
file.go的更多相关文章
- 记一个mvn奇怪错误: Archive for required library: 'D:/mvn/repos/junit/junit/3.8.1/junit-3.8.1.jar' in project 'xxx' cannot be read or is not a valid ZIP file
我的maven 项目有一个红色感叹号, 而且Problems 存在 errors : Description Resource Path Location Type Archive for requi ...
- HTML中上传与读取图片或文件(input file)----在路上(25)
input file相关知识简例 在此介绍的input file相关知识为: 上传照片及文件,其中包括单次上传.批量上传.删除照片.增加照片.读取图片.对上传的图片或文件的判断,比如限制图片的张数.限 ...
- logstash file输入,无输出原因与解决办法
1.现象 很多同学在用logstash input 为file的时候,经常会出现如下问题:配置文件无误,logstash有时一直停留在等待输入的界面 2.解释 logstash作为日志分析的管道,在实 ...
- input[tyle="file"]样式修改及上传文件名显示
默认的上传样式我们总觉得不太好看,根据需求总想改成和上下结构统一的风格…… 实现方法和思路: 1.在input元素外加a超链接标签 2.给a标签设置按钮样式 3.设置input[type='file' ...
- .NET平台开源项目速览(16)C#写PDF文件类库PDF File Writer介绍
1年前,我在文章:这些.NET开源项目你知道吗?.NET平台开源文档与报表处理组件集合(三)中(第9个项目),给大家推荐了一个开源免费的PDF读写组件 PDFSharp,PDFSharp我2年前就看过 ...
- [笔记]HAproxy reload config file with uninterrupt session
HAProxy is a high performance load balancer. It is very light-weight, and free, making it a great op ...
- VSCode调试go语言出现:exec: "gcc": executable file not found in %PATH%
1.问题描述 由于安装VS15 Preview 5,搞的系统由重新安装一次:在用vscdoe编译go语言时,出现以下问题: # odbcexec: "gcc": executabl ...
- input type='file'上传控件假样式
采用bootstrap框架样式 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> &l ...
- FILE文件流的中fopen、fread、fseek、fclose的使用
FILE文件流用于对文件的快速操作,主要的操作函数有fopen.fseek.fread.fclose,在对文件结构比较清楚时使用这几个函数会比较快捷的得到文件中具体位置的数据,提取对我们有用的信息,满 ...
- ILJMALL project过程中遇到Fragment嵌套问题:IllegalArgumentException: Binary XML file line #23: Duplicate id
出现场景:当点击"分类"再返回"首页"时,发生error退出 BUG描述:Caused by: java.lang.IllegalArgumentExcep ...
随机推荐
- masm下几种常见函数调用方式
masm没有fastcall调用方式,其特点为: 1 第一个参数放入ecx,第二个参数放入edx: 2 如果有剩余参数则从右向左压栈: 3 被调用函数清理栈(平衡栈): 4 若有返回值放入eax: 5 ...
- ant 脚本使用技巧
assoc命令 要删除文件扩展名为 .txt 的文件类型关联,请键入: assoc .txt =
- tomcat6 高并发配置 与优化
server.xml配置 1. <Connectorport="8080"protocol="HTTP/1.1" 2. maxThreads=&quo ...
- 论MVC中的传值
2个页面分别为Father.cshtml.Child.cshtml 2个控制器分别为FatherController.cs.ChildController.cs 1个js,为Father.js 一.F ...
- get请求URL的转码
String name = new String(json.getString("name").getBytes("iso8859-1"),"UTF- ...
- CSS 弹性容器
该文章为英文原文译文及一些自己的拙见墙裂推荐读原文浏览原文请戳这里 : CSS-STRICKS 弹性布局 (Flexbox Layout) 什么是弹性布局 Flexbox Layout 模块旨在提供一 ...
- DjangoUeditor项目的集成
DjangoUeditor这个项目,出品人已经不再提供维护支持. 最近在一个使用到aliyun oss的项目里集成了一次这个东西,当然我之前在普通文件上传的北京下已经集成过很多次了. 主要修改的东西就 ...
- clear read-only status问题的解决
IDEA系工具可能会报出的错误. 解决方法见官方文档吧:Changing Read-Only Status of Files : https://www.jetbrains.com/help/ide ...
- 【js-xlsx和file-saver插件】前端html的table导出数据到excel的表格合并显示boder
最近在做项目,需要从页面的表格中导出excel,一般导出excel有两种方法:一.习惯上是建模版从后台服务程序中导出:二.根据页面table中导出:综合考虑其中利弊选择二.根据页面table中导出ex ...
- html标签分类
在这里做个存档吧,区分一下常用的html标签,行内元素.块状元素.行内块状元素! 那个h标签下面的三横是<hr>标签. 顺便给个附加的css,你们仔细体会一下 body *{border: ...