/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_store.hxx" #include "sal/types.h" #include "osl/thread.h" #include "rtl/ustring.hxx" #include "lockbyte.hxx" #ifndef INCLUDED_STDIO_H #include #define INCLUDED_STDIO_H #endif #include "osl/file.h" #include "osl/process.h" using namespace store; #define TEST_PAGESIZE 16384 /*======================================================================== * * main. * *======================================================================*/ int SAL_CALL main (int argc, char **argv) { storeError eErrCode = store_E_None; rtl::Reference xLockBytes; if (argc > 1) { rtl::OUString aFilename ( argv[1], rtl_str_getLength(argv[1]), osl_getThreadTextEncoding()); #if 0 /* EXP */ oslFileError result; rtl::OUString aPath; result = osl_getFileURLFromSystemPath(aFilename.pData, &(aPath.pData)); if (result != osl_File_E_None) { // not SystemPath, assume FileUrl. aPath = aFilename; } if (rtl_ustr_ascii_shortenedCompare_WithLength(aPath.pData->buffer, aPath.pData->length, "file://", 7) != 0) { // not FileUrl, assume relative path. rtl::OUString aBase; (void) osl_getProcessWorkingDir (&(aBase.pData)); // absolute FileUrl. (void) osl_getAbsoluteFileURL(aBase.pData, aPath.pData, &(aPath.pData)); } aFilename = aPath; #endif /* EXP */ eErrCode = FileLockBytes_createInstance ( xLockBytes, aFilename.pData, store_AccessReadWrite); if (eErrCode != store_E_None) { // Check reason. if (eErrCode != store_E_NotExists) { fprintf (stderr, "t_file: create() error: %d\n", eErrCode); return eErrCode; } // Create. eErrCode = FileLockBytes_createInstance ( xLockBytes, aFilename.pData, store_AccessReadCreate); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: create() error: %d\n", eErrCode); return eErrCode; } } fprintf (stdout, "t_file: using FileLockBytes(\"%s\") implementation.\n", argv[1]); } else { eErrCode = MemoryLockBytes_createInstance (xLockBytes); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: create() error: %d\n", eErrCode); return eErrCode; } fprintf (stdout, "t_file: using MemoryLockBytes implementation.\n"); } rtl::Reference< PageData::Allocator > xAllocator; eErrCode = xLockBytes->initialize (xAllocator, TEST_PAGESIZE); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: initialize() error: %d\n", eErrCode); return eErrCode; } sal_Char buffer[TEST_PAGESIZE]; rtl_fillMemory (buffer, sizeof(buffer), sal_uInt8('B')); sal_uInt32 i, k; for (k = 0; k < 4; k++) { sal_uInt32 index = k * TEST_PAGESIZE / 4; buffer[index] = 'A'; } for (i = 0; i < 256; i++) { sal_uInt32 offset = i * TEST_PAGESIZE; eErrCode = xLockBytes->setSize (offset + TEST_PAGESIZE); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: setSize() error: %d\n", eErrCode); return eErrCode; } for (k = 0; k < 4; k++) { sal_uInt32 magic = i * 4 + k; if (magic) { sal_uInt32 verify = 0; eErrCode = xLockBytes->readAt ( 0, &verify, sizeof(verify)); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: readAt() error: %d\n", eErrCode); return eErrCode; } if (verify != magic) { // Failure. fprintf (stderr, "Expected %ld read %ld\n", (unsigned long)(magic), (unsigned long)(verify)); } } sal_uInt32 index = k * TEST_PAGESIZE / 4; eErrCode = xLockBytes->writeAt ( offset + index, &(buffer[index]), TEST_PAGESIZE / 4); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: writeAt() error: %d\n", eErrCode); return eErrCode; } magic += 1; eErrCode = xLockBytes->writeAt ( 0, &magic, sizeof(magic)); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: writeAt() error: %d\n", eErrCode); return eErrCode; } } } eErrCode = xLockBytes->flush(); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: flush() error: %d\n", eErrCode); return eErrCode; } sal_Char verify[TEST_PAGESIZE]; for (i = 0; i < 256; i++) { sal_uInt32 offset = i * TEST_PAGESIZE; eErrCode = xLockBytes->readAt (offset, verify, TEST_PAGESIZE); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: readAt() error: %d\n", eErrCode); return eErrCode; } sal_uInt32 index = 0; if (offset == 0) { sal_uInt32 magic = 256 * 4; if (rtl_compareMemory (&verify[index], &magic, sizeof(magic))) { // Failure. fprintf (stderr, "t_file: Unexpected value at 0x00000000\n"); } index += 4; } if (rtl_compareMemory ( &verify[index], &buffer[index], TEST_PAGESIZE - index)) { // Failure. fprintf (stderr, "t_file: Unexpected block at 0x%08x\n", (unsigned)(offset)); } } for (i = 0; i < 256; i++) { PageHolder xPage; sal_uInt32 offset = i * TEST_PAGESIZE; eErrCode = xLockBytes->readPageAt (xPage, offset); if (eErrCode != store_E_None) { fprintf (stderr, "t_file: readPageAt() error: %d\n", eErrCode); return eErrCode; } PageData * page = xPage.get(); (void)page; // UNUSED } xLockBytes.clear(); return 0; }