Stellarium 0.15.2
LocationSearchService.hpp
1 /*
2  * Stellarium Remote Control plugin
3  * Copyright (C) 2015 Florian Schaukowitsch
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
18  */
19 
20 #ifndef LOCATIONSEARCHSERVICE_HPP_
21 #define LOCATIONSEARCHSERVICE_HPP_
22 
23 #include "AbstractAPIService.hpp"
24 #include "StelLocationMgr.hpp"
25 #include <QMutex>
26 
33 {
34  Q_OBJECT
35 public:
36  LocationSearchService(const QByteArray& serviceName, QObject* parent = 0);
37 
38  virtual ~LocationSearchService() {}
39 
42  bool supportsThreadedOperation() const Q_DECL_OVERRIDE { return true; }
43 protected:
46  virtual void getImpl(const QByteArray& operation,const APIParameters& parameters, APIServiceResponse& response) Q_DECL_OVERRIDE;
47 private slots:
48  // connected to the main location manager in the main thread
49  void mainLocationManagerUpdated();
50 private:
51  //the location mgr is actually copied to be used in HTTP threads without blocking the main app
52  StelLocationMgr locMgr;
53  QMutex locMgrMutex;
54 };
55 
56 
57 
58 #endif
Thread-safe version of HttpResponse that can be passed around through QMetaObject::invokeMethod.
Manage the list of available location.
bool supportsThreadedOperation() const Q_DECL_OVERRIDE
We work on a copy of the StelLocationMgr, to prevent hitches as the web user is typing.
Abstract base class for all Remote Control Plug-in service implementations.
QMultiMap< QByteArray, QByteArray > APIParameters
Defines the HTTP request parameters for the service.
virtual void getImpl(const QByteArray &operation, const APIParameters &parameters, APIServiceResponse &response) Q_DECL_OVERRIDE
Implements the GET method.
QByteArray serviceName()
Returns the service name, used for request path mapping by the APIController.
Provides predefined location search functionality, using the StelLocationMgr.