对文件进行位移位

对文件进行位移位

我想知道是否有一个实用程序可以读取和打印(二进制)文件,并移动一定数量的位(我的意思是,它应该接受不能被 8 整除的数量)。

..类似dd(及其skip选项),但是按位,而不是按字节。

(如果你认为没有这样的东西,并且要在这里实现它,请使用 C..我有自己的字符串位移功能,用 Python 编写,但它肯定相对慢得多)

答案1

尝试这个:

#include <stdio.h>
#include <stdlib.h>

#define SIZE (1024*1024)

int main (int argc, char *argv[])
{
  FILE *from = fopen(argv[1], "rb");
  FILE *to = fopen(argv[2], "wb");
  int nbits = atoi(argv[3]);
  int offs_bytes = nbits/8;
  int shift_bits = nbits%8;
  unsigned char *buf = malloc(SIZE);
  size_t res, pos, i;

  for (pos=0; pos<offs_bytes; pos++)
    buf[pos] = 0;

  buf[pos++] = 0;

  while ((res = fread(buf+pos, 1, SIZE-pos, from))) {
    for (i=0; i < res; i++) {
      buf[pos-1] |= (buf[pos] >> shift_bits) & 0xFF;
      buf[pos] = buf[pos] << (8 - shift_bits);
      pos++;
    }
    fwrite(buf, 1, pos-1, to);
    buf[0] = buf[pos-1];
    pos = 1;
  }
  fwrite(buf, 1, 1, to);
  fclose(from); fclose(to);
  return 0;
}

(简单的算法,没有错误检查,几乎没有测试,等等......[通常的警告])。

相关内容