mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
Implement creating AaruFormat image and writing header.
This commit is contained in:
145
src/create.c
Normal file
145
src/create.c
Normal file
@@ -0,0 +1,145 @@
|
||||
/*
|
||||
* This file is part of the Aaru Data Preservation Suite.
|
||||
* Copyright (c) 2019-2025 Natalia Portillo.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as
|
||||
* published by the Free Software Foundation; either version 2.1 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <errno.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "aaruformat.h"
|
||||
#include "internal.h"
|
||||
|
||||
void *aaruf_create(const char *filepath, uint32_t mediaType, uint32_t sectorSize, uint64_t userSectors,
|
||||
uint64_t negativeSectors, uint64_t overflowSectors, const char *options,
|
||||
const uint8_t *applicationName, uint8_t applicationNameLength, uint8_t applicationMajorVersion,
|
||||
uint8_t applicationMinorVersion);
|
||||
{
|
||||
// Parse the options
|
||||
aaru_options parsedOptions = parse_options(options);
|
||||
|
||||
// Allocate context
|
||||
aaruformatContext *ctx = (aaruformatContext *)malloc(sizeof(aaruformatContext));
|
||||
if(ctx == NULL)
|
||||
{
|
||||
errno = AARUF_ERROR_NOT_ENOUGH_MEMORY;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
memset(ctx, 0, sizeof(aaruformatContext));
|
||||
|
||||
// Create the image file
|
||||
ctx->imageStream = fopen(filepath, "wb+");
|
||||
if(ctx->imageStream == NULL)
|
||||
{
|
||||
free(ctx);
|
||||
errno = AARUF_ERROR_CANNOT_CREATE_FILE;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if(applicationNameLength > AARU_HEADER_APP_NAME_LEN)
|
||||
{
|
||||
free(ctx);
|
||||
errno = AARUF_ERROR_INVALID_APP_NAME_LENGTH;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Initialize header
|
||||
ctx->header.identifier = AARU_MAGIC;
|
||||
memcpy(ctx->header.application, applicationName, applicationNameLength);
|
||||
ctx->header.imageMajorVersion = AARUF_VERSION_V2;
|
||||
ctx->header.imageMinorVersion = 0;
|
||||
ctx->header.applicationMajorVersion = applicationMajorVersion;
|
||||
ctx->header.applicationMinorVersion = applicationMinorVersion;
|
||||
ctx->header.mediaType = mediaType;
|
||||
ctx->header.indexOffset = 0;
|
||||
ctx->header.creationTime = get_filetime_uint64();
|
||||
ctx->header.lastWrittenTime = get_filetime_uint64();
|
||||
|
||||
ctx->readableSectorTags = (bool *)malloc(sizeof(bool) * MaxSectorTag);
|
||||
|
||||
if(ctx->readableSectorTags == NULL)
|
||||
{
|
||||
free(ctx);
|
||||
errno = AARUF_ERROR_NOT_ENOUGH_MEMORY;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
memset(ctx->readableSectorTags, 0, sizeof(bool) * MaxSectorTag);
|
||||
|
||||
// Initilize image info
|
||||
ctx->imageInfo.Application = ctx->header.application;
|
||||
ctx->imageInfo.ApplicationVersion = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.ApplicationVersion != NULL)
|
||||
{
|
||||
memset(ctx->imageInfo.ApplicationVersion, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.ApplicationVersion, "%d.%d", ctx->header.applicationMajorVersion,
|
||||
ctx->header.applicationMinorVersion);
|
||||
}
|
||||
ctx->imageInfo.Version = (uint8_t *)malloc(32);
|
||||
if(ctx->imageInfo.Version != NULL)
|
||||
{
|
||||
memset(ctx->imageInfo.Version, 0, 32);
|
||||
sprintf((char *)ctx->imageInfo.Version, "%d.%d", ctx->header.imageMajorVersion, ctx->header.imageMinorVersion);
|
||||
}
|
||||
ctx->imageInfo.MediaType = ctx->header.mediaType;
|
||||
ctx->imageInfo.ImageSize = 0;
|
||||
ctx->imageInfo.CreationTime = ctx->header.creationTime;
|
||||
ctx->imageInfo.LastModificationTime = ctx->header.lastWrittenTime;
|
||||
ctx->imageInfo.XmlMediaType = aaruf_get_xml_mediatype(ctx->header.mediaType);
|
||||
ctx->imageInfo.SectorSize = sectorSize;
|
||||
|
||||
// Initialize caches
|
||||
ctx->blockHeaderCache.cache = NULL;
|
||||
ctx->blockHeaderCache.max_items = MAX_CACHE_SIZE / (ctx->imageInfo.SectorSize * (1 << ctx->shift));
|
||||
ctx->blockCache.cache = NULL;
|
||||
ctx->blockCache.max_items = ctx->blockHeaderCache.max_items;
|
||||
|
||||
// TODO: Cache tracks and sessions?
|
||||
|
||||
// Initialize ECC for Compact Disc
|
||||
ctx->eccCdContext = (CdEccContext *)aaruf_ecc_cd_init();
|
||||
|
||||
ctx->magic = AARU_MAGIC;
|
||||
ctx->libraryMajorVersion = LIBAARUFORMAT_MAJOR_VERSION;
|
||||
ctx->libraryMinorVersion = LIBAARUFORMAT_MINOR_VERSION;
|
||||
|
||||
// Initialize DDT2
|
||||
ctx->inMemoryDdt = true;
|
||||
ctx->userDataDdtHeader.identifier = DeDuplicationTable2;
|
||||
ctx->userDataDdtHeader.type = UserData;
|
||||
ctx->userDataDdtHeader.compression = None;
|
||||
ctx->userDataDdtHeader.levels = 2;
|
||||
ctx->userDataDdtHeader.tableLevel = 0;
|
||||
ctx->userDataDdtHeader.previousLevelOffset = 0;
|
||||
ctx->userDataDdtHeader.negative = negativeSectors;
|
||||
ctx->userDataDdtHeader.blocks = userSectors + overflowSectors + negativeSectors;
|
||||
ctx->userDataDdtHeader.overflow = overflowSectors;
|
||||
ctx->userDataDdtHeader.start = 0;
|
||||
ctx->userDataDdtHeader.blockAlignmentShift = parsedOptions.block_alignment;
|
||||
ctx->userDataDdtHeader.dataShift = parsedOptions.data_shift;
|
||||
ctx->userDataDdtHeader.tableShift = parsedOptions.table_shift;
|
||||
ctx->userDataDdtHeader.sizeType = 1;
|
||||
ctx->userDataDdtHeader.entries = ctx->userDataDdtHeader.blocks / (1 << ctx->userDataDdtHeader.tableShift);
|
||||
|
||||
if(ctx->userDataDdtHeader.blocks % (1 << ctx->userDataDdtHeader.tableShift) != 0) ctx->userDataDdtHeader.entries++;
|
||||
|
||||
// Is writing
|
||||
ctx->isWriting = true;
|
||||
}
|
||||
Reference in New Issue
Block a user