/usr/include/soprano/tcpclient.h is in libsoprano-dev 2.9.4+dfsg1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | /*
* This file is part of Soprano Project.
*
* Copyright (C) 2007 Sebastian Trueg <trueg@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _SOPRANO_SERVER_CLIENT_H_
#define _SOPRANO_SERVER_CLIENT_H_
#include <QtCore/QObject>
#include <QtCore/QList>
#include <QtNetwork/QHostAddress>
#include "error.h"
#include "backend.h"
#include "soprano_export.h"
// FIXME: add signals for conection and disconnection, maybe even make it async as Qt's network stuff itself
namespace Soprano {
class Model;
namespace Client {
/**
* \class TcpClient tcpclient.h Soprano/Client/TcpClient
*
* \brief Creates a connection to the %Soprano server through a TCP connection.
*
* The %Soprano server supports more than one way of communication. Beside D-Bus (see
* DBusClient) and local socket communication (LocalSocketClient) it can be contacted via
* TCP. For that to work the server has to be listening on some port (Server::ServerCore::listen).
*
* \warning The TcpClient does not support signals. Thus, the models created
* by it will not emit signals such as Model::statementAdded. Also no permission handling or
* any kind of security is implemented at the moment. Thus, if a server is running and is
* listening on a port, it is open to connections from any client on any computer in the
* network.
*
* \author Sebastian Trueg <trueg@kde.org>
*/
class SOPRANO_CLIENT_EXPORT TcpClient : public QObject, public Error::ErrorCache
{
Q_OBJECT
public:
/**
* Create a new Client instance.
*/
TcpClient( QObject* parent = 0 );
/**
* Destructor.
*/
virtual ~TcpClient();
/**
* The default %Soprano server connection port.
*/
static const quint16 DEFAULT_PORT;
/**
* Tries to connect to the %Soprano server.
*
* \return \p true on success, \p false if an error occured.
* Check lastError() for details.
*/
bool connect( const QHostAddress& address = QHostAddress::LocalHost, int port = DEFAULT_PORT );
/**
* Check if the client is connected to a server.
*
* \return \p true if this client is connected to a server, \p false
* otherwise.
*/
bool isConnected();
/**
* Disconnect from the server. The created model instances are not
* deleted but remain useless; open iterators are closed.
*/
void disconnect();
/**
* Creates a new Model instance that wraps a server model.
* %Client models are very light wrappers and creating them is
* very fast.
*
* \param name The name of the model to access.
* \param settings The settings to send to the server for creating a new model.
* These settings may be ignored by the server if a model with that name has
* already been created.
*
* \return A new Model instance wrapping the requested server
* model or 0 on error (check lastError() for details.)
*/
Model* createModel( const QString& name, const QList<BackendSetting>& settings = QList<BackendSetting>() );
/**
* Deletes a model including all its data.
*
* \param name The name of the model to remove.
*
* \warning Calling this method will remove all data physically. It can not
* be reverted. Use with care.
*
* \since 2.1
*/
void removeModel( const QString& name );
/**
* Get a list of all models that the server currently holds.
* This method may return an empty list before any call to
* createModel().
*
* \return A list of the names of all models that are currently
* opened by the server.
*/
// QStringList models() const;
private Q_SLOTS:
void slotError( QAbstractSocket::SocketError error );
private:
class Private;
Private* const d;
};
}
}
#endif
|