0

特定のデータを書き込んでいるファイル内の望ましくない末尾の終了データの原因を突き止めようとしましたが、ファイルへの書き込みに誤りがあったとは思いません。

出力は次のようになります。

building     room_numbr   capacity

packard    | 101        | 500        |
painter    | 514        | 10         |
ÿÿÿÿÿÿÿÿÿÿ | Attempt to seek file pointer error

これAttempt to seek file pointer errorは、ファイル ポインタを無効なストリームに移動しようとしたときにスローされた例外を表すため、正常です。ただし、ÿÿÿÿÿÿÿÿÿÿデータの書き込みに 10 バイトまたは 20 バイトを使用する固定サイズのファイル形式では、これは正常ではなく、想定されていません。

ここにファイルを作成します:

BinarySearchFile::BinarySearchFile(std::string file_name){

    // concatenate extension to fileName
    file_name += ".dat";

    // form complete table data filename
    data_file_name = file_name;

    // create or reopen table data file for reading and writing
    binary_search_file.open(data_file_name,  std::ios::out | std::ios::in | std::ios::app); 

    if(!binary_search_file.is_open()){

        binary_search_file.clear();
        binary_search_file.open(data_file_name, std::ios::out);
        binary_search_file.close();
        binary_search_file.open(data_file_name, std::ios::out | std::ios::in | std::ios::app);
    }

    try{
        if(binary_search_file.fail()){
            throw CustomException("Unspecified table data file error");
        }
    }
    catch (CustomException &custom_exception){  // Using custom exception class
        std::cout << custom_exception.what() << std::endl;
        return;
    }   

}

データをファイルに書き込む

void BinarySearchFile::writeT(std::string attribute){
try{
    if(binary_search_file){
        for(auto start = attribute.begin(); start != attribute.end();  ++start){
            binary_search_file.put(' ');
            binary_search_file.put(*start);
        }
        binary_search_file.flush();
        /*
        attribute.resize(attribute.length() * 2);
        const char *write_this = attribute.data();
        binary_search_file.write(write_this, attribute.length());
        */
    }else if(binary_search_file.fail()){
        throw CustomException("Attempt to write attribute error");
    }

}
catch(CustomException &custom_exception){  // Using custom exception class
    std::cout << custom_exception.what() << std::endl;
    return;
}
}

ここでデータファイルを読む:

   std::string BinarySearchFile::readT(long file_pointer_location, long size_of_data) 
{
try{
    if(binary_search_file){

        std::string data = "";
        binary_search_file.seekp(file_pointer_location);
        binary_search_file.seekg(file_pointer_location);
        while (size_of_data > 0 ){
            binary_search_file.get();
            data += binary_search_file.get();
            size_of_data -= 2;
        }

        /*
        char data[20];
        binary_search_file.seekp(filePointerLocation);
        binary_search_file.seekg(filePointerLocation);
        binary_search_file.read(data, sizeOfData);
        */
        return data;
    }else if(binary_search_file.fail()){
        throw CustomException("Attempt to read attribute error");
    }

}
catch(CustomException &custom_exception){  // Using custom exception class
    std::cout << custom_exception.what() << std::endl;
}

}

ファイルを読み取り、結果を画面に出力するコード:

while(true){

    //reinitialize the catalog pointer to the beginning 
    catalog->setPointerBegin();

    //display data
    do{
        if (boost::iequals((domain = catalog->getAttributeDomain()), "string")){
            if(dataFile->binary_search_file_status()){
                std::cout << dataFile->read_data(filePointer, 20) << " | ";
                if (!writer_.fail())
                    writer_ << dataFile->read_data(filePointer, 20) << " | ";
            }
            else{
                std::cout << "\n";
                if (!writer_.fail())
                    writer_ << "\n";

                        return true;
                }
                // update the file pointer
                filePointer += 20;
                dataFile->set_file_pointer(filePointer);
            }
            else{
                if(dataFile->binary_search_file_status()){
                    std::cout << dataFile->read_data(filePointer, 10);
                    if (!writer_.fail())
                        writer_ << dataFile->read_data(filePointer, 10);
                    for(int i = 0; i < 5; i++){
                            std::cout << " ";
                            if (!writer_.fail())
                                writer_ << " ";
                        }
                        std::cout << " | ";
                        if (!writer_.fail()){
                            writer_ << " | ";
                    }
                }
                else{
                    std::cout << "\n";
                    if (!writer_.fail()){
                        writer_ << "\n";
                    }
                    return true;
                }
                // update the file pointer
                filePointer += 10;

                }       


            } while(catalog->traverseForward() != nullptr);

            std::cout << "\n";
            if (!writer_.fail())
                writer_ << "\n";

    }

}   
4

1 に答える 1