<
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-22gnu: gnutls: Remove unneeded import.Ludovic Courtès
* gnu/packages/gnutls.scm: Remove import of (gnu packages base).
2013-01-18distro: gnutls: Adjust to the latest version.Ludovic Courtès
* gnu/packages/gnutls.scm (gnutls): Remove the #:parallel-build? argument, which is no longer needed. Remove the commented-out LZO input, since GnuTLS no longer supports it since 3.0.0.
2013-01-18distro: gnutls: Use the GnuPG mirrors.Ludovic Courtès
* gnu/packages/gnutls.scm (gnutls): Use the gnutls.org/GnuPG URL.
2013-01-18distro: Change the module name space to (gnu ...).Ludovic Courtès
* distro: Rename to... * gnu: ... this. Update module names accordingly. * Makefile.am: Adjust accordingly. * po/POTFILES.in: Likewise. * distro.scm: Search for files under /gnu/packages instead of /distro/packages. * gnu/packages/base.scm (ld-wrapper-boot3): Likewise.
    a> 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    #pragma once
    
    #include "types.hh"
    
    
    namespace nix {
    
    
    /* Abstract destination of binary data. */
    struct Sink 
    {
        virtual ~Sink() { }
        virtual void operator () (const unsigned char * data, size_t len) = 0;
    };
    
    
    /* A buffered abstract sink. */
    struct BufferedSink : Sink
    {
        size_t bufSize, bufPos;
        unsigned char * buffer;
    
        BufferedSink(size_t bufSize = 32 * 1024)
            : bufSize(bufSize), bufPos(0), buffer(0) { }
        ~BufferedSink();
    
        void operator () (const unsigned char * data, size_t len);
        
        void flush();
        
        virtual void write(const unsigned char * data, size_t len) = 0;
    };
    
    
    /* Abstract source of binary data. */
    struct Source
    {
        virtual ~Source() { }
        
        /* Store exactly ‘len’ bytes in the buffer pointed to by ‘data’.
           It blocks until all the requested data is available, or throws
           an error if it is not going to be available.   */
        void operator () (unsigned char * data, size_t len);
    
        /* Store up to ‘len’ in the buffer pointed to by ‘data’, and
           return the number of bytes stored.  If blocks until at least
           one byte is available. */
        virtual size_t read(unsigned char * data, size_t len) = 0;
    };
    
    
    /* A buffered abstract source. */
    struct BufferedSource : Source
    {
        size_t bufSize, bufPosIn, bufPosOut;
        unsigned char * buffer;
    
        BufferedSource(size_t bufSize = 32 * 1024)
            : bufSize(bufSize), bufPosIn(0), bufPosOut(0), buffer(0) { }
        ~BufferedSource();
        
        size_t read(unsigned char * data, size_t len);
        
        /* Underlying read call, to be overridden. */
        virtual size_t readUnbuffered(unsigned char * data, size_t len) = 0;
    
        bool hasData();
    };
    
    
    /* A sink that writes data to a file descriptor. */
    struct FdSink : BufferedSink
    {
        int fd;
        bool warn;
        size_t written;
    
        FdSink() : fd(-1), warn(false), written(0) { }
        FdSink(int fd) : fd(fd), warn(false), written(0) { }
        ~FdSink();
        
        void write(const unsigned char * data, size_t len);
    };
    
    
    /* A source that reads data from a file descriptor. */
    struct FdSource : BufferedSource
    {
        int fd;
        FdSource() : fd(-1) { }
        FdSource(int fd) : fd(fd) { }
        size_t readUnbuffered(unsigned char * data, size_t len);
    };
    
    
    /* A sink that writes data to a string. */
    struct StringSink : Sink
    {
        string s;
        void operator () (const unsigned char * data, size_t len);
    };
    
    
    /* A source that reads data from a string. */
    struct StringSource : Source
    {
        const string & s;
        size_t pos;
        StringSource(const string & _s) : s(_s), pos(0) { }
        size_t read(unsigned char * data, size_t len);    
    };
    
    
    void writePadding(size_t len, Sink & sink);
    void writeInt(unsigned int n, Sink & sink);
    void writeLongLong(unsigned long long n, Sink & sink);
    void writeString(const unsigned char * buf, size_t len, Sink & sink);
    void writeString(const string & s, Sink & sink);
    template<class T> void writeStrings(const T & ss, Sink & sink);
    
    void readPadding(size_t len, Source & source);
    unsigned int readInt(Source & source);
    unsigned long long readLongLong(Source & source);
    size_t readString(unsigned char * buf, size_t max, Source & source);
    string readString(Source & source);
    template<class T> T readStrings(Source & source);
    
    
    MakeError(SerialisationError, Error)
    
    
    }