phantomjs/src/filesystem.h

124 lines
4.2 KiB
C
Raw Normal View History

/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ivan De Marino <ivan.de.marino@gmail.com>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef FILESYSTEM_H
#define FILESYSTEM_H
#include <QObject>
#include <QStringList>
#include <QFile>
#include <QTextStream>
#include <QVariant>
class File : public QObject
{
Q_OBJECT
public:
File(QFile *openfile, QObject *parent = 0);
virtual ~File();
public slots:
QString read();
bool write(const QString &data);
QString readLine();
bool writeLine(const QString &data);
bool atEnd() const;
void flush();
void close();
private:
QFile *m_file;
QTextStream m_fileStream;
};
class FileSystem : public QObject
{
Q_OBJECT
Q_PROPERTY(QString workingDirectory READ workingDirectory)
Q_PROPERTY(QString separator READ separator)
public:
FileSystem(QObject *parent = 0);
public slots:
// Attributes
// 'size(path)' implemented in "bootstrap.js" JavaScript shim, using '_size(path)'
int _size(const QString &path) const;
QVariant lastModified(const QString &path) const;
// Files / Directories
// - copy()
// - move()
// - touch(path, date)
// - rename()
// Directory
// - copyTree(source, target) //< copies files from a source path to a target path,
// copying the files of the source tree to the corresponding locations
// relative to the target, copying but not traversing into
// symbolic links to directories.
bool makeDirectory(const QString &path) const;
bool makeTree(const QString &path) const;
bool removeDirectory(const QString &path) const;
bool removeTree(const QString &path) const;
// Files
2011-07-18 02:24:10 +04:00
// 'open(path, mode)' implemented in "bootstrap.js" JavaScript shim, using '_open(path, mode)'
QObject *_open(const QString &path, const QString &mode) const;
2011-07-18 02:24:10 +04:00
// 'read(path)' implemented in "bootstrap.js" JavaScript shim
// 'write(path, mode)' implemented in the "bootstrap.js" JavaScript shim
bool remove(const QString &path) const;
// Listing
QStringList list(const QString &path) const;
// Paths
QString separator() const;
QString workingDirectory() const;
bool changeWorkingDirectory(const QString &path) const;
QString absolute(const QString &relativePath) const;
// Tests
bool exists(const QString &path) const;
bool isDirectory(const QString &path) const;
bool isFile(const QString &path) const;
bool isAbsolute(const QString &path) const;
bool isExecutable(const QString &path) const;
bool isReadable(const QString &path) const;
bool isWritable(const QString &path) const;
bool isLink(const QString &path) const;
};
#endif // FILESYSTEM_H