⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qmemoryfile.cpp

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 CPP
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS.  All rights reserved.**** This file is part of the Qtopia Environment.** ** This program is free software; you can redistribute it and/or modify it** under the terms of the GNU General Public License as published by the** Free Software Foundation; either version 2 of the License, or (at your** option) any later version.** ** A copy of the GNU GPL license version 2 is included in this package as ** LICENSE.GPL.**** This program 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 General Public License for more details.**** In addition, as a special exception Trolltech gives permission to link** the code of this program with Qtopia applications copyrighted, developed** and distributed by Trolltech under the terms of the Qtopia Personal Use** License Agreement. You must comply with the GNU General Public License** in all respects for all of the code used other than the applications** licensed under the Qtopia Personal Use License Agreement. If you modify** this file, you may extend this exception to your version of the file,** but you are not obligated to do so. If you do not wish to do so, delete** this exception statement from your version.** ** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#include "qmemoryfile_p.h"#include "qfile.h"/*****************************************************************************  QMemoryFile member functions *****************************************************************************//*  \class QMemoryFile qmemoryfile_p.h  \intern  \brief The QMemoryFile class provides a means to map a file info memory or reference  to a block or memory by name.  Warning: This class is not part of the Qt API and subject to change.             This file file may change from version to version without             notice, or even be removed.  Currently this class supports read only access on all platforms; and read plus write  accces provided on unix and windows based plaforms.  The size of mapped file can not be changed.*//*! \enum QMemoryFile::Flags  This enum specifies the possible types of connections made to the file to  be memory mapped.  The currently defined values are :  \value Write  Allow write access to file.  \value Shared Allow file to be shared with other proceses.  \value Create Create file named. *//*!  \fn QMemoryFileData * QMemoryFile::openData (const QString &fileName, int flags, 					 uint size )  Initializes the memory map.  If sucessful wil return a pointer to the memory file  data.  Otherwise returns null.*//*!  \fn void QMemoryFile::closeData(QMemoryFileData *memoryFile)  Closes the memory file and frees any memory used.*//*  Construct a memory mapped to an actual file or named memory block.  If \a fileName is not preceeded by an \\ then it is treated as a real     file name.  Otherwise the characters after the \\ are used as the name for the memory block required.    nb: You will need to escape the \'s so it you need to use \\\\ within a literal string   A value for \a size should always be provided, though if the size is not provided it will be determined if possible. If a file is being mapped to be written to, then the \a flags of subsequent QMemoryFiles mapped to the same file should include QMemoryFile::Write. Example: \code // Open a maping to file text.dat QMemoryFile memoryFile("text.dat", QMemoryFile:Read, 20); char *data = memoryFile.data(); int sum = 0; for (int i = 0; i < 20; i++){   sum = sum + data[i]; } qDebug("Sum =%d", sum); \endcode Example for creating named memory block: \code QMemoryFile block1("\\\\block1", QMemoryFile::Create | QMemoryFile::Write, 20); char *dataBlock = block.data(); for (int i = 0; i < 19; i++){   dataBlock[i] = i +'a'; } dataBlock[20] = '\0'; qDebug("Data block is %s", dataBlock); \endcode*/QMemoryFile::QMemoryFile(const QString &fileName, int flags, uint size){qDebug("QMemoryFile::QMemoryFile(\"%s\")",fileName.latin1());    block = NULL;    length = 0;    if (flags == -1)      flags = QMemoryFile::Shared; // read only shared file mapping    this->flags = flags;    d = openData(fileName, flags, size);}/*  Destructs the memory mapped file*/QMemoryFile::~QMemoryFile(){    closeData(d);}/*!  \fn uint QMemoryFile::size()  Returns the length of the block of memory that this QMemoryFile is associated with.*//*! \fn char* QMemoryFile::data() Returns a pointer to memory that this QMemoryFile is associated with.*//*!  \fn bool QMemoryFile::isShared()  Returns TRUE if the memory block is shared.*//*! \fn bool QMemoryFile::isWritable()    Returns TRUE if the memory block is writable.*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -