summaryrefslogtreecommitdiffstats
path: root/tdeioslave/floppy/tdeio_floppy.h
blob: 07892a46dc35c6e6f8db28c09aac40ad585928c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*  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