File indexing completed on 2024-04-28 05:42:11

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 https://commits.kde.org/kdesvn.          *
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 
0051 private:
0052     SvnFileStream_private *m_FileData;
0053 };
0054 
0055 /**
0056     @author Rajko Albrecht <ral@alwins-world.de>
0057     @short Readonly filestream
0058 */
0059 class SVNQT_EXPORT SvnFileIStream : public SvnStream
0060 {
0061 public:
0062     explicit SvnFileIStream(const QString &fn, svn_client_ctx_t *ctx = nullptr);
0063 
0064     virtual ~SvnFileIStream();
0065     bool isOk() const override;
0066     long read(char *data, const unsigned long max) override;
0067 
0068 private:
0069     SvnFileStream_private *m_FileData;
0070 };
0071 
0072 }
0073 
0074 }
0075 
0076 #endif