You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.5 KiB
79 lines
2.5 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2000 Alexander Neundorf <neundorf@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef TDEIO_FLOPPY_H
|
|
#define TDEIO_FLOPPY_H
|
|
|
|
#include <tdeio/slavebase.h>
|
|
#include <tdeio/global.h>
|
|
|
|
#include "program.h"
|
|
|
|
#include <tqstring.h>
|
|
|
|
struct StatInfo
|
|
{
|
|
StatInfo():name(""),time(0),size(0),mode(0),freeSpace(0),isDir(false),isValid(false) {;}
|
|
TQString name;
|
|
time_t time;
|
|
int size;
|
|
int mode;
|
|
int freeSpace;
|
|
bool isDir:1;
|
|
bool isValid:1;
|
|
};
|
|
|
|
|
|
class FloppyProtocol : public TDEIO::SlaveBase
|
|
{
|
|
public:
|
|
FloppyProtocol (const TQCString &pool, const TQCString &app );
|
|
virtual ~FloppyProtocol();
|
|
|
|
virtual void listDir( const KURL& url);
|
|
virtual void stat( const KURL & url);
|
|
virtual void mkdir( const KURL& url, int);
|
|
virtual void del( const KURL& url, bool isfile);
|
|
virtual void rename(const KURL &src, const KURL &dest, bool overwrite);
|
|
virtual void get( const KURL& url );
|
|
virtual void put( const KURL& url, int _mode,bool overwrite, bool _resume );
|
|
//virtual void copy( const KURL& src, const KURL &dest, int, bool overwrite );
|
|
protected:
|
|
Program *m_mtool;
|
|
int readStdout();
|
|
int readStderr();
|
|
|
|
StatInfo createStatInfo(const TQString line, bool makeStat=false, const TQString& dirName="");
|
|
void createUDSEntry(const StatInfo& info, TDEIO::UDSEntry& entry);
|
|
StatInfo _stat(const KURL& _url);
|
|
int freeSpace(const KURL& url);
|
|
|
|
bool stopAfterError(const KURL& url, const TQString& drive);
|
|
void errorMissingMToolsProgram(const TQString& name);
|
|
|
|
void clearBuffers();
|
|
void terminateBuffers();
|
|
char *m_stdoutBuffer;
|
|
char *m_stderrBuffer;
|
|
int m_stdoutSize;
|
|
int m_stderrSize;
|
|
};
|
|
|
|
#endif
|