File indexing completed on 2024-05-12 17:16:25

0001 /***************************************************************************
0002  *   Copyright (C) 2006-2009 by Rajko Albrecht                             *
0003  *   ral@alwins-world.de                                                   *
0004  *                                                                         *
0005  * This program is free software; you can redistribute it and/or           *
0006  * modify it under the terms of the GNU Lesser General Public              *
0007  * License as published by the Free Software Foundation; either            *
0008  * version 2.1 of the License, or (at your option) any later version.      *
0009  *                                                                         *
0010  * This program is distributed in the hope that it will be useful,         *
0011  * but WITHOUT ANY WARRANTY; without even the implied warranty of          *
0012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       *
0013  * Lesser General Public License for more details.                         *
0014  *                                                                         *
0015  * You should have received a copy of the GNU Lesser General Public        *
0016  * License along with this program (in the file LGPL.txt); if not,         *
0017  * write to the Free Software Foundation, Inc., 51 Franklin St,            *
0018  * Fifth Floor, Boston, MA  02110-1301  USA                                *
0019  *                                                                         *
0020  * This software consists of voluntary contributions made by many          *
0021  * individuals.  For exact contribution history, see the revision          *
0022  * history and logs, available at http://kdesvn.alwins-world.de.           *
0023  ***************************************************************************/
0024 #ifndef SVN_STREAMSVNFILESTREAM_HPP
0025 #define SVN_STREAMSVNFILESTREAM_HPP
0026 
0027 #include "svnstream.h"
0028 
0029 namespace svn
0030 {
0031 
0032 namespace stream
0033 {
0034 
0035 class SvnFileStream_private;
0036 
0037 /**
0038     @author Rajko Albrecht <ral@alwins-world.de>
0039     @short Writeonly filestream
0040 */
0041 class SVNQT_EXPORT SvnFileOStream : public SvnStream
0042 {
0043 public:
0044     explicit SvnFileOStream(const QString &fn, svn_client_ctx_t *ctx = nullptr);
0045 
0046     virtual ~SvnFileOStream();
0047 
0048     bool isOk() const override;
0049     long write(const char *data, const unsigned long max) override;
0050 private:
0051     SvnFileStream_private *m_FileData;
0052 };
0053 
0054 /**
0055     @author Rajko Albrecht <ral@alwins-world.de>
0056     @short Readonly filestream
0057 */
0058 class SVNQT_EXPORT SvnFileIStream : public SvnStream
0059 {
0060 public:
0061     explicit SvnFileIStream(const QString &fn, svn_client_ctx_t *ctx = nullptr);
0062 
0063     virtual ~SvnFileIStream();
0064     bool isOk() const override;
0065     long read(char *data, const unsigned long max) override;
0066 
0067 private:
0068     SvnFileStream_private *m_FileData;
0069 };
0070 
0071 }
0072 
0073 }
0074 
0075 #endif