summaryrefslogtreecommitdiff
path: root/includes/isobuilder.h
blob: bbbe6bf68c41720a3010cc5be8167e63159e5281 (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
#ifndef __ISOBUILDER_H__
#define __ISOBUILDER_H__

#include <Handle.h>
#include "cdutils.h"
#include "yazedc.h"

class isobuilder : public Base {
  public:
    struct Date {
        int year, month, day, hour, minute, second, hundredths, offset;
        void dump(Byte * datas);
        Date(int = 0);
        Date(Byte * datas);
    };
    struct PVD {
        String sysid, volid;
        String volsetid, pubid, prepid, appid;
        String copyright, abstract, biblio;
        Date volcreat, modif, volexp, voleff;
        Byte appdata[512];
    };
    class DirTree : public Base {
      public:
          DirTree(DirTree * father, bool dir = true);
          virtual ~DirTree();
        void fromdir(cdutils::DirEntry *);
        void dumpdirs(isobuilder *) throw (GeneralException);
        int buildpath(Byte * datas, int size, bool bigendian = false) throw (GeneralException);
        void setbasicsxa();
        int sector;
        int size;
        bool hidden;
        String name;
        Date creation;
        bool have_xa, xa_dir, xa_audio, xa_str, xa_xa, xa_form1;
        int buildentry(Byte * buffer, int spaceleft, bool put_xa = true);
        int mode;
      private:
        DirTree * father, * child, * brother;
        bool dir;
        int node;
        int numerate(int);
    };
      isobuilder(Handle * w, int mode = MODE2_FORM1);
      ~isobuilder();
    void foreword(Handle * forewords, int mode = MODE_RAW);
    void foreword(Byte * forewords, int mode = MODE_RAW);
    int getdispsect();
    int putfile(Handle * file, int mode = -1, int n = -1);
    void putdatas(Byte * datas, size_t size, int mode = -1, int n = -1);
    void createsector(Byte * datas, int type = -1, int n = -1);
    void setEOF();
    void clearEOF();
    DirTree * setbasics(PVD pvd, int rootsize = 1, int ptsize = 1, int nvd = 1) throw (GeneralException);
    DirTree * createdir(DirTree *, const String & _name, int size = 1, cdutils::DirEntry * = 0, int mode = MODE2_FORM1) throw (GeneralException);
    DirTree * createfile(DirTree *, Handle * file, const String & _name, cdutils::DirEntry * = 0, int mode = MODE2_FORM1) throw (GeneralException);
    void copydir(DirTree *, const String & _name, cdutils *, cdutils::DirEntry *, int mode = MODE2_FORM1);
    static PVD createpvd(Handle *);
    static PVD createpvd(cdutils *);
    static PVD createpvd(Byte *);
    void close(Handle * cue = 0, int mode = -1) throw (GeneralException);
  private:
    Handle * w;
    int sector, nsectors;
    int sub_EOF, sub_EOR;
    bool basics;
    PVD pvd;
    int rootsize, ptsize, nvd, ptsect, rootsect;
    int lastdispsect;
    DirTree * root;
    yazedc yazedc_o;
    bool closed;
    int dmode;
};

#endif