aboutsummaryrefslogtreecommitdiffstats
path: root/src/aea.h
blob: bbd3f17361c4ada527a2502ae1d29f54d2c7244f (plain) (blame)
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
#pragma once
#include <iostream>
#include <fstream>
#include <vector>
#include <array>
#include <memory>



class TAeaIOError : public std::exception {
    const int ErrNum = 0;
    const char* Text;
public:
    TAeaIOError(const char* str, int err)
        : ErrNum(err)
        , Text(str)
    {
        (void)ErrNum; //TODO: use it
    }
    virtual const char* what() const throw() {
        return Text;
    }
};

class TAeaFormatError {
};

class TAea {
    static constexpr uint32_t AeaMetaSize = 2048;
    struct TMeta {
        FILE* AeaFile;
        std::array<char, AeaMetaSize> AeaHeader;
    } Meta;
    static TAea::TMeta ReadMeta(const std::string& filename);
    static TAea::TMeta CreateMeta(const std::string& filename, const std::string& title, int numChannel, uint32_t numFrames);
    bool FirstWrite = true;
public:
        typedef std::array<char, 212> TFrame;
		TAea(const std::string& filename);
        TAea(const std::string& filename, const std::string& title, int numChannel, uint32_t numFrames);
		~TAea();
        std::unique_ptr<TFrame> ReadFrame(); 
//        void WriteFrame(std::unique_ptr<TAea::TFrame>&& frame);
        void WriteFrame(std::vector<char> data);
        std::string GetName() const;
        int GetChannelNum() const;
        uint32_t GetLengthInSamples() const;
};

typedef std::unique_ptr<TAea> TAeaPtr;