office-gobmx/store/workben/t_file.cxx
Rüdiger Timm cb879be229 INTEGRATION: CWS changefileheader (1.7.38); FILE MERGED
2008/04/01 15:42:45 thb 1.7.38.3: #i85898# Stripping all external header guards
2008/04/01 12:41:55 thb 1.7.38.2: #i85898# Stripping all external header guards
2008/03/31 15:27:48 rt 1.7.38.1: #i87441# Change license header to LPGL v3.
2008-04-10 13:24:50 +00:00

194 lines
5.7 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: t_file.cxx,v $
* $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_store.hxx"
#define _T_FILE_CXX "$Revision: 1.8 $"
#include <sal/types.h>
#include <osl/file.h>
#include <osl/thread.h>
#include <rtl/ustring.hxx>
#include <rtl/ref.hxx>
#include <store/filelckb.hxx>
#ifndef INCLUDED_STDIO_H
#include <stdio.h>
#define INCLUDED_STDIO_H
#endif
using namespace store;
#define TEST_PAGESIZE 16384
/*========================================================================
*
* main.
*
*======================================================================*/
int SAL_CALL main (int argc, char **argv)
{
if (argc < 2)
{
fprintf (stderr, "usage: t_file <output-filename>\n");
return 0;
}
rtl::Reference<OFileLockBytes> xLockBytes (new OFileLockBytes());
if (!xLockBytes.is())
return 0;
rtl::OUString aFilename (
argv[1], rtl_str_getLength(argv[1]),
osl_getThreadTextEncoding());
storeError eErrCode = xLockBytes->create (
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 = xLockBytes->create (
aFilename.pData, store_AccessReadCreate);
if (eErrCode != store_E_None)
{
fprintf (stderr, "t_file: create() 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, done = 0;
if (magic)
{
sal_uInt32 verify = 0;
eErrCode = xLockBytes->readAt (
0, &verify, sizeof(verify), done);
if (eErrCode != store_E_None)
{
fprintf (stderr, "t_file: readAt() error: %d\n", eErrCode);
return eErrCode;
}
if (verify != magic)
{
// Failure.
fprintf (stderr, "Expected %d read %d\n", magic, verify);
}
}
sal_uInt32 index = k * TEST_PAGESIZE / 4;
eErrCode = xLockBytes->writeAt (
offset + index, &(buffer[index]), TEST_PAGESIZE / 4, done);
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), done);
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, done = 0;
eErrCode = xLockBytes->readAt (offset, verify, TEST_PAGESIZE, done);
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", offset);
}
}
xLockBytes.clear();
return 0;
}