2003-03-26 19:57:29 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder Remote Camera Class Interface, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2003-03-26 19:57:29 +08:00
|
|
|
//
|
|
|
|
// 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 2
|
|
|
|
// 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_REMOTE_CAMERA_H
|
|
|
|
#define ZM_REMOTE_CAMERA_H
|
|
|
|
|
|
|
|
#include "zm_camera.h"
|
2014-11-20 05:40:05 +08:00
|
|
|
#include "zm_rtsp_auth.h"
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
#include <string>
|
2013-10-11 14:24:23 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2008-07-16 16:35:59 +08:00
|
|
|
#include <netdb.h>
|
2003-03-26 19:57:29 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Class representing 'remote' cameras, i.e. those which are
|
|
|
|
// accessed over a network connection.
|
|
|
|
//
|
|
|
|
class RemoteCamera : public Camera
|
|
|
|
{
|
|
|
|
protected:
|
2008-07-16 16:35:59 +08:00
|
|
|
std::string protocol;
|
|
|
|
std::string host;
|
|
|
|
std::string port;
|
|
|
|
std::string path;
|
|
|
|
std::string auth;
|
|
|
|
std::string auth64;
|
2003-03-26 19:57:29 +08:00
|
|
|
|
2014-11-20 05:40:05 +08:00
|
|
|
// Reworked authentication system
|
|
|
|
// First try without authentication, even if we have a username and password
|
|
|
|
// on receiving a 401 response, select authentication method (basic or digest)
|
|
|
|
// fill required fields and set needAuth
|
|
|
|
// subsequent requests can set the required authentication header.
|
|
|
|
bool mNeedAuth;
|
|
|
|
Authenticator* mAuthenticator;
|
2004-02-16 03:17:38 +08:00
|
|
|
protected:
|
2013-11-22 21:30:05 +08:00
|
|
|
struct addrinfo *hp;
|
2004-02-16 03:17:38 +08:00
|
|
|
|
2003-03-26 19:57:29 +08:00
|
|
|
public:
|
2009-05-28 16:47:59 +08:00
|
|
|
RemoteCamera( int p_id, const std::string &p_proto, const std::string &p_host, const std::string &p_port, const std::string &p_path, int p_width, int p_height, int p_colours, int p_brightness, int p_contrast, int p_hue, int p_colour, bool p_capture );
|
2008-07-16 16:35:59 +08:00
|
|
|
virtual ~RemoteCamera();
|
|
|
|
|
|
|
|
const std::string &Protocol() const { return( protocol ); }
|
|
|
|
const std::string &Host() const { return( host ); }
|
|
|
|
const std::string &Port() const { return( port ); }
|
|
|
|
const std::string &Path() const { return( path ); }
|
|
|
|
const std::string &Auth() const { return( auth ); }
|
|
|
|
|
|
|
|
virtual void Initialise();
|
|
|
|
virtual void Terminate() = 0;
|
|
|
|
virtual int Connect() = 0;
|
|
|
|
virtual int Disconnect() = 0;
|
|
|
|
virtual int PreCapture() = 0;
|
2009-01-28 17:48:06 +08:00
|
|
|
virtual int Capture( Image &image ) = 0;
|
|
|
|
virtual int PostCapture() = 0;
|
2003-03-26 19:57:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ZM_REMOTE_CAMERA_H
|