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 79 80 81 82 83 84 85 86 87 88
|
/**
bespoke synth, a software modular synthesizer
Copyright (C) 2021 Ryan Challinor (contact: awwbees@gmail.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
//
// FileStream.h
// Bespoke
//
// Created by Ryan Challinor on 4/26/15.
//
//
#pragma once
#include <cstdint>
#include <memory>
#include <string>
namespace juce
{
class InputStream;
class OutputStream;
class MemoryBlock;
}
class FileStreamOut
{
public:
explicit FileStreamOut(const std::string& file);
explicit FileStreamOut(juce::MemoryBlock& block, bool appendToExistingBlockContent = true);
explicit FileStreamOut(std::unique_ptr<juce::OutputStream>&& stream);
FileStreamOut(const char*) = delete; // Hint: UTF-8 encoded std::string required
~FileStreamOut();
FileStreamOut& operator<<(const int& var);
FileStreamOut& operator<<(const std::uint32_t& var);
FileStreamOut& operator<<(const bool& var);
FileStreamOut& operator<<(const float& var);
FileStreamOut& operator<<(const double& var);
FileStreamOut& operator<<(const std::string& var);
FileStreamOut& operator<<(const char& var);
void Write(const float* buffer, int size);
void WriteGeneric(const void* buffer, int size);
std::int64_t GetSize() const;
private:
std::unique_ptr<juce::OutputStream> mStream;
};
class FileStreamIn
{
public:
explicit FileStreamIn(const std::string& file);
explicit FileStreamIn(const juce::MemoryBlock& block);
explicit FileStreamIn(std::unique_ptr<juce::InputStream>&& stream);
FileStreamIn(const char*) = delete; // Hint: UTF-8 encoded std::string required
~FileStreamIn();
FileStreamIn& operator>>(int& var);
FileStreamIn& operator>>(std::uint32_t& var);
FileStreamIn& operator>>(bool& var);
FileStreamIn& operator>>(float& var);
FileStreamIn& operator>>(double& var);
FileStreamIn& operator>>(std::string& var);
FileStreamIn& operator>>(char& var);
void Read(float* buffer, int size);
void ReadGeneric(void* buffer, int size);
void Peek(void* buffer, int size);
int GetFilePosition() const;
bool OpenedOk() const;
bool Eof() const;
static bool s32BitMode;
static const int sMaxStringLength = 999999; //the primary thing that might hit this limit is the json layout file (one user has had a file that exceeded a length of 100000)
private:
std::unique_ptr<juce::InputStream> mStream;
};
|