2016-07-24 9 views
0

Я мог бы использовать некоторую помощь для этой проблемы, заданной с cs50. Всякий раз, когда мой код попадает в цикл while, функция fread возвращает 0. Я не могу понять, почему это происходит. Еще до того, как я столкнулся с этой проблемой, мой код не работал так, как я этого хотел, если бы были какие-то дополнительные советы. Это было бы очень полезно.pset4 cs50 recovery.c руководство

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

//PROTOTYPES 
bool check(uint8_t block[]); 

int main(int argc, char* argv[]) 
{ 
    FILE* inptr = fopen("card.raw", "r"); //open up the card.raw file for reading 

    if(inptr == NULL) 
    { 
     fclose(inptr); 
     printf("Could not open the card data.\n"); 
     return 1; 
    } 

    FILE* outptr; 

    int jpegCount = 0; 
    bool foundFirstJpg = false;// flag to denote wheather the first jpg has been found 

    char str[10]; //to hold the jpg name 
    sprintf(str, "%i.jpg", jpegCount); //puts the image name in str 
    jpegCount ++; 
    outptr = fopen(str, "w"); //Create a new jpeg for each image 

    uint8_t block[512]; // a tempory block to hold 512 bytes of info 

    while(fread(block, sizeof(block), 1, inptr) == 1) //read 512 bytes of info at a time from the inptr) 
    { 
     printf("hello\n"); 
     if(check(block)) //if I have found a jpg 
     { 
      if(foundFirstJpg) //if its not my first jpg 
      { 
       fclose(outptr); //close the previous jpg file 
       sprintf(str, "%i.jpg", jpegCount); //puts the image name in str 
       outptr = fopen(str, "w"); //Create a new jpeg for each image 
       jpegCount ++; 
       fwrite(block, sizeof(block), 1, outptr); //write the block to the image file 
      } 
      else 
      { 
       fwrite(block, sizeof(block), 1, outptr); //write first block to the image file 
       foundFirstJpg = true; 
      } 
     } 
     else //if this is not a jpg 
     { 
      if(foundFirstJpg) //check if we have found our first jpg 
      { 
       fwrite(block, sizeof(block), 1, outptr); //write 512 bytes to the current image file 
      } 
     } 
    } 
    if (outptr) 
    { 
     fclose(outptr); 
    } 
    fclose(inptr); 
    return 0; 
} 

//function to check if this is the start or end of a jpg 
bool check(uint8_t block[]) 
{ 
    bool isJpg = true; //boolean value to be returned 
    if (block[0] != 0xff || block[1] != 0xd8 || block[2] != 0xff) //checks if the first 3 bytes are those that represent a jpg 
    { 
     isJpg = false; 
    } 
    if (block[3] < 0xe0 || block[3] > 0xef) //checks if the fourth byte also represents a jpg 
    { 
     isJpg = false; 
    } 
    return isJpg; 
} 

ответ

0

Вы Шоуда открыть эти файлы в двоичном режиме:

FILE *inptr = fopen("card.raw", "rb"); 
... 
outptr = fopen(str, "wb"); 

Если card.raw имеет меньше 512 байт, fread вернется 0.

+0

К сожалению, это не решило мою проблему. Спасибо за предложение. – SillyRab

+0

Также, когда я запускаю «xxd -l 2400 card.raw», чтобы попытаться прочитать несколько байтов с card.raw, чтобы узнать, может ли вообще что-либо получить. Ничего не видно. Моя командная строка просто перемещается на следующую строку вниз. – SillyRab

+0

Трудно сказать, что происходит без копии файла 'card.raw'. – chqrlie

 Смежные вопросы

  • Нет связанных вопросов^_^