2000-09-18 09:18:43 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* 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.
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* 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).
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
2008-04-10 08:24:50 -05:00
|
|
|
* 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.
|
2000-09-18 09:18:43 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 19:13:42 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_store.hxx"
|
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
#include "sal/types.h"
|
|
|
|
#include "osl/thread.h"
|
|
|
|
#include "rtl/ustring.hxx"
|
|
|
|
|
|
|
|
#include "lockbyte.hxx"
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
#ifndef INCLUDED_STDIO_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#define INCLUDED_STDIO_H
|
|
|
|
#endif
|
|
|
|
|
2009-03-20 10:07:51 -05:00
|
|
|
#include "osl/file.h"
|
|
|
|
#include "osl/process.h"
|
|
|
|
|
2000-09-18 09:18:43 -05:00
|
|
|
using namespace store;
|
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
#define TEST_PAGESIZE 16384
|
|
|
|
|
2000-09-18 09:18:43 -05:00
|
|
|
/*========================================================================
|
|
|
|
*
|
|
|
|
* main.
|
|
|
|
*
|
|
|
|
*======================================================================*/
|
|
|
|
int SAL_CALL main (int argc, char **argv)
|
|
|
|
{
|
2009-03-13 10:52:34 -05:00
|
|
|
storeError eErrCode = store_E_None;
|
|
|
|
rtl::Reference<ILockBytes> xLockBytes;
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
if (argc > 1)
|
2000-09-18 09:18:43 -05:00
|
|
|
{
|
2009-03-13 10:52:34 -05:00
|
|
|
rtl::OUString aFilename (
|
|
|
|
argv[1], rtl_str_getLength(argv[1]),
|
|
|
|
osl_getThreadTextEncoding());
|
|
|
|
|
2009-03-20 10:07:51 -05:00
|
|
|
#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 */
|
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
eErrCode = FileLockBytes_createInstance (
|
|
|
|
xLockBytes, aFilename.pData, store_AccessReadWrite);
|
|
|
|
if (eErrCode != store_E_None)
|
2001-11-29 11:27:52 -06:00
|
|
|
{
|
2009-03-13 10:52:34 -05:00
|
|
|
// Check reason.
|
|
|
|
if (eErrCode != store_E_NotExists)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: create() error: %d\n", eErrCode);
|
|
|
|
return eErrCode;
|
|
|
|
}
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
// 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);
|
2000-09-18 09:18:43 -05:00
|
|
|
if (eErrCode != store_E_None)
|
2001-11-29 11:27:52 -06:00
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: create() error: %d\n", eErrCode);
|
2000-09-18 09:18:43 -05:00
|
|
|
return eErrCode;
|
2001-11-29 11:27:52 -06:00
|
|
|
}
|
2009-03-13 10:52:34 -05:00
|
|
|
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;
|
2000-09-18 09:18:43 -05:00
|
|
|
}
|
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
sal_Char buffer[TEST_PAGESIZE];
|
|
|
|
rtl_fillMemory (buffer, sizeof(buffer), sal_uInt8('B'));
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
sal_uInt32 i, k;
|
|
|
|
for (k = 0; k < 4; k++)
|
|
|
|
{
|
|
|
|
sal_uInt32 index = k * TEST_PAGESIZE / 4;
|
|
|
|
buffer[index] = 'A';
|
|
|
|
}
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
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;
|
|
|
|
}
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2001-11-29 11:27:52 -06:00
|
|
|
for (k = 0; k < 4; k++)
|
|
|
|
{
|
2009-03-13 10:52:34 -05:00
|
|
|
sal_uInt32 magic = i * 4 + k;
|
2001-11-29 11:27:52 -06:00
|
|
|
if (magic)
|
|
|
|
{
|
|
|
|
sal_uInt32 verify = 0;
|
|
|
|
eErrCode = xLockBytes->readAt (
|
2009-03-13 10:52:34 -05:00
|
|
|
0, &verify, sizeof(verify));
|
2001-11-29 11:27:52 -06:00
|
|
|
if (eErrCode != store_E_None)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: readAt() error: %d\n", eErrCode);
|
|
|
|
return eErrCode;
|
|
|
|
}
|
|
|
|
if (verify != magic)
|
|
|
|
{
|
|
|
|
// Failure.
|
2009-03-13 10:52:34 -05:00
|
|
|
fprintf (stderr, "Expected %ld read %ld\n", (unsigned long)(magic), (unsigned long)(verify));
|
2001-11-29 11:27:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_uInt32 index = k * TEST_PAGESIZE / 4;
|
|
|
|
eErrCode = xLockBytes->writeAt (
|
2009-03-13 10:52:34 -05:00
|
|
|
offset + index, &(buffer[index]), TEST_PAGESIZE / 4);
|
2001-11-29 11:27:52 -06:00
|
|
|
if (eErrCode != store_E_None)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: writeAt() error: %d\n", eErrCode);
|
|
|
|
return eErrCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
magic += 1;
|
|
|
|
eErrCode = xLockBytes->writeAt (
|
2009-03-13 10:52:34 -05:00
|
|
|
0, &magic, sizeof(magic));
|
2001-11-29 11:27:52 -06:00
|
|
|
if (eErrCode != store_E_None)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: writeAt() error: %d\n", eErrCode);
|
|
|
|
return eErrCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-09-18 09:18:43 -05:00
|
|
|
|
|
|
|
eErrCode = xLockBytes->flush();
|
|
|
|
if (eErrCode != store_E_None)
|
2001-11-29 11:27:52 -06:00
|
|
|
{
|
|
|
|
fprintf (stderr, "t_file: flush() error: %d\n", eErrCode);
|
2000-09-18 09:18:43 -05:00
|
|
|
return eErrCode;
|
2001-11-29 11:27:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
sal_Char verify[TEST_PAGESIZE];
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
{
|
2009-03-13 10:52:34 -05:00
|
|
|
sal_uInt32 offset = i * TEST_PAGESIZE;
|
2001-11-29 11:27:52 -06:00
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
eErrCode = xLockBytes->readAt (offset, verify, TEST_PAGESIZE);
|
2001-11-29 11:27:52 -06:00
|
|
|
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.
|
2009-03-13 10:52:34 -05:00
|
|
|
fprintf (stderr, "t_file: Unexpected block at 0x%08x\n", (unsigned)(offset));
|
2001-11-29 11:27:52 -06:00
|
|
|
}
|
|
|
|
}
|
2000-09-18 09:18:43 -05:00
|
|
|
|
2009-03-13 10:52:34 -05:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2001-03-13 14:18:01 -06:00
|
|
|
xLockBytes.clear();
|
2000-09-18 09:18:43 -05:00
|
|
|
return 0;
|
|
|
|
}
|