segment

package
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 1, 2024 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppendSegmentToFile

func AppendSegmentToFile(file *os.File, segmentType string, data []byte, xref *FileXref) error

AppendSegmentToFile 将一个段附加到文件 参数:

  • file: *os.File 文件指针
  • segmentType: string 段类型
  • data: []byte 段数据
  • xref: *FileXref 文件交叉引用结构

返回值:

  • error 可能的错误

func AppendSegmentsToFile

func AppendSegmentsToFile(file *os.File, segments map[string][]byte, xref *FileXref) error

AppendSegmentsToFile 将多个段附加到文件 参数:

  • file: *os.File 文件指针
  • segments: map[string][]byte 段类型和段数据的映射
  • xref: *FileXref 文件交叉引用结构

返回值:

  • error 可能的错误

func ReadFieldFromBytes

func ReadFieldFromBytes(data []byte, fieldType string, xref *FileXref) ([]byte, error)

ReadFieldFromBytes 从字节切片中读取指定的单个字段 参数:

  • data: []byte 输入字节切片
  • fieldType: string 要读取的字段类型
  • xref: *FileXref 文件交叉引用表

返回值:

  • []byte 读取的字段数据
  • error 可能的错误

func ReadFieldsFromBytes

func ReadFieldsFromBytes(data []byte, fieldTypes []string, xref *FileXref) (map[string]*SegmentReadResult, error)

ReadFieldsFromBytes 从字节切片中批量读取多个字段 参数:

  • data: []byte 输入字节切片
  • fieldTypes: []string 要读取的字段类型列表
  • xref: *FileXref 文件交叉引用表

返回值:

  • map[string]*SegmentReadResult 读取结果映射
  • error 可能的错误

func ReadSegmentToBuffer

func ReadSegmentToBuffer(buffer *bytes.Buffer, segmentType string, xref *FileXref) ([]byte, error)

ReadSegmentToBuffer 从缓冲区中读取指定的单个段 参数:

  • buffer: *bytes.Buffer 输入缓冲区
  • segmentType: string 要读取的段类型
  • xref: *FileXref 文件交叉引用表

返回值:

  • []byte 读取的段数据
  • error 可能的错误

func ReadSegmentsFromBuffer

func ReadSegmentsFromBuffer(buffer *bytes.Buffer, segmentTypes []string, xref *FileXref) (map[string]*SegmentReadResult, error)

ReadSegmentsFromBuffer 从缓冲区中批量读取多个段 参数:

  • buffer: *bytes.Buffer 输入缓冲区
  • segmentTypes: []string 要读取的段类型列表
  • xref: *FileXref 文件交叉引用表

返回值:

  • map[string]*SegmentReadResult 读取结果映射
  • error 可能的错误

func SaveAndClose

func SaveAndClose(file *os.File, xref *FileXref) error

SaveAndClose 保存 xref 表并关闭文件 参数:

  • file: *os.File 要操作的文件对象
  • xref: *FileXref 文件的交叉引用表

返回值:error 可能出现的错误

func WriteFileSegment

func WriteFileSegment(filePath string, data map[string][]byte) error

WriteFileSegment 创建新文件并将数据写入 参数:

  • filePath: string 要创建和写入的文件路径
  • data: map[string][]byte 要写入的段数据,键为段类型,值为段内容

返回值:

  • error 可能出现的错误

func WriteSegmentToBuffer

func WriteSegmentToBuffer(buffer *bytes.Buffer, segmentType string, data []byte, xref *FileXref) error

WriteSegmentToBuffer 将段写入缓冲区 参数:

  • buffer: *bytes.Buffer 要写入的缓冲区
  • segmentType: string 段类型
  • data: []byte 段的数据
  • xref: *FileXref 文件的交叉引用表

返回值:

  • error 可能出现的错误

func WriteSegmentToFile

func WriteSegmentToFile(file *os.File, segmentType string, data []byte, xref *FileXref) error

WriteSegmentToFile 将段写入文件 参数:

  • file: *os.File 要写入的文件对象
  • segmentType: string 段类型
  • data: []byte 段的数据
  • xref: *FileXref 文件的交叉引用表

返回值:

  • error 可能出现的错误

func WriteSegmentsToBuffer

func WriteSegmentsToBuffer(buffer *bytes.Buffer, segments map[string][]byte, xref *FileXref) error

WriteSegmentsToBuffer 批量将段写入缓冲区 参数:

  • buffer: *bytes.Buffer 要写入的缓冲区
  • segments: map[string][]byte 要写入的段数据,键为段类型,值为段内容
  • xref: *FileXref 文件的交叉引用表

返回值:

  • error 可能出现的错误

func WriteSegmentsToFile

func WriteSegmentsToFile(file *os.File, segments map[string][]byte, xref *FileXref) error

WriteSegmentsToFile 批量将段写入文件 参数:

  • file: *os.File 要写入的文件对象
  • segments: map[string][]byte 要写入的段数据,键为段类型,值为段内容
  • xref: *FileXref 文件的交叉引用表

返回值:

  • error 可能出现的错误

Types

type FileXref

type FileXref struct {
	XrefTable map[string]XrefEntry // xref 表
	StartXref int64                // startxref 的位置
	// contains filtered or unexported fields
}

FileXref 结构体用于跟踪单个文件的 xref 表和 startxref 的位置

func LoadXref

func LoadXref(file *os.File) (*FileXref, error)

LoadXref 从文件加载 xref 表 参数:

  • file: *os.File 要读取的文件对象

返回值:

  • *FileXref 解析后的 xref 表
  • error 可能出现的错误

func LoadXrefFromBuffer

func LoadXrefFromBuffer(reader io.Reader) (*FileXref, error)

LoadXrefFromBuffer 从缓冲区加载 xref 表 参数:

  • reader: io.Reader 要读取的缓冲区

返回值:

  • *FileXref 解析后的 xref 表
  • error 可能出现的错误

func LoadXrefFromFile

func LoadXrefFromFile(file *os.File) (*FileXref, error)

LoadXrefFromFile 从文件加载 xref 表 参数:

  • file: *os.File 要读取的文件对象

返回值:

  • *FileXref 解析后的 xref 表
  • error 可能出现的错误

func NewFileXref

func NewFileXref() *FileXref

NewFileXref 创建一个新的 FileXref 对象,并初始化 xref 表 返回值:*FileXref 一个新的 FileXref 对象

func ReadFileSegment

func ReadFileSegment(file *os.File, segmentType string) ([]byte, *FileXref, error)

ReadFileSegment 从指定文件中读取一个指定的段 参数:

  • file: *os.File 待读取的文件对象
  • segmentType: string 要读取的段类型

返回值:

  • []byte 读取的段内容
  • *FileXref 解析得到的 Xref 表
  • error 可能出现的错误

func ReadFileSegments

func ReadFileSegments(file *os.File, segmentTypes []string, fileXref ...*FileXref) (map[string]*SegmentReadResult, *FileXref, error)

ReadFileSegments 从指定文件中读取一个或多个段 参数:

  • file: *os.File 待读取的文件对象
  • segmentTypes: []string 要读取的段类型列表
  • fileXref: ...*FileXref 可选参数,已解析的 Xref 表

返回值:

  • map[string]*SegmentReadResult 读取结果映射
  • *FileXref 解析得到的 Xref 表
  • error 可能出现的错误

type SegmentReadResult

type SegmentReadResult struct {
	Data  []byte // 读取的数据
	Error error  // 读取过程中发生的错误
}

SegmentReadResult 用于表示单个段的读取结果

type XrefEntry

type XrefEntry struct {
	Offset int64  // 偏移量
	Length uint32 // 长度
}

XrefEntry 结构体用于保存每个段的偏移量和长度

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL