summaryrefslogtreecommitdiff
path: root/includes/Handle.h
blob: 3b9c9dca0ae3c31654a957a3755001ed86e19e1c (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
#ifndef __HANDLE_H__
#define __HANDLE_H__
#ifdef __cplusplus

#include <zlib.h>
#include <unistd.h>
#include <iostream.h>
#include <String.h>
#include <Exceptions.h>

#include <sys/types.h>
#include <time.h>

class Handle : public Base {
  public:
      Handle(const Handle &);
      virtual ~Handle();
    virtual ssize_t read(void *buf, size_t count) throw (GeneralException);
    virtual ssize_t write(const void *buf, size_t count) throw (GeneralException);
    bool IsClosed(void);
    bool IsNonBlock(void);
    void SetNonBlock(void);
    virtual bool CanRead();
    virtual bool CanWrite();
    virtual String GetName();
    virtual ssize_t GetSize();
    virtual time_t GetModif();
    void close() throw (GeneralException);
    int GetHandle();
    virtual bool CanWatch();
    virtual void Dup(const Handle &);
    virtual void SetZ(int) throw (GeneralException);
  protected:
      Handle(int h);
  private:
    ssize_t uwrite(const void *, size_t) throw (GeneralException);
    ssize_t uread(void *, size_t);
    int h;
    bool closed, nonblock;
    gzFile zfile;
    int z;
};

Handle & operator<<(Handle &, const String &);
Handle & operator>>(Handle &, String &);

#else
#error This only works with a C++ compiler
#endif
#endif