Kstars

indidustcap.cpp
1/*
2 SPDX-FileCopyrightText: 2015 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include <basedevice.h>
8#include <QtDBus/qdbusmetatype.h>
9
10#include "indidustcap.h"
11#include "dustcapadaptor.h"
12#include "ksnotification.h"
13
14namespace ISD
15{
16
17const QList<KLocalizedString> DustCap::capStates = { ki18n("Idle"), ki18n("Parking"), ki18n("UnParking"),
18 ki18n("Parked"), ki18n("Error")
19 };
20
21DustCap::DustCap(GenericDevice *parent): ConcreteDevice(parent)
22{
23 qRegisterMetaType<ISD::DustCap::Status>("ISD::DustCap::Status");
24 qDBusRegisterMetaType<ISD::DustCap::Status>();
25
26 new DustCapAdaptor(this);
27 m_DBusObjectPath = QString("/KStars/INDI/DustCap/%1").arg(getID());
28 QDBusConnection::sessionBus().registerObject(m_DBusObjectPath, this);
29}
30
31void DustCap::processSwitch(INDI::Property prop)
32{
33 auto svp = prop.getSwitch();
34 if (svp->isNameMatch("CAP_PARK"))
35 {
36 Status currentStatus = CAP_ERROR;
37 ParkStatus currentParkStatus = PARK_UNKNOWN;
38
39 switch (svp->getState())
40 {
41 case IPS_IDLE:
42 if (svp->at(0)->getState() == ISS_ON)
43 {
44 currentStatus = CAP_PARKED;
45 currentParkStatus = PARK_PARKED;
46 }
47 else if (svp->at(1)->getState() == ISS_ON)
48 {
49 currentStatus = CAP_IDLE;
50 currentParkStatus = PARK_UNPARKED;
51 }
52 break;
53
54 case IPS_OK:
55 if (svp->at(0)->getState() == ISS_ON)
56 {
57 currentStatus = CAP_PARKED;
58 currentParkStatus = PARK_PARKED;
59 KSNotification::event(QLatin1String("IndiServerMessage"), i18n("Dust Cap is parked"), KSNotification::Observatory,
60 KSNotification::Info);
61
62 }
63 else
64 {
65 currentStatus = CAP_IDLE;
66 currentParkStatus = PARK_UNPARKED;
67 KSNotification::event(QLatin1String("IndiServerMessage"), i18n("Dust Cap is unparked"), KSNotification::Observatory,
68 KSNotification::Info);
69
70 }
71 break;
72
73 case IPS_BUSY:
74 if (svp->at(0)->getState() == ISS_ON)
75 {
76 currentStatus = CAP_PARKING;
77 currentParkStatus = PARK_PARKING;
78 KSNotification::event(QLatin1String("IndiServerMessage"), i18n("Dust Cap is parking"), KSNotification::Observatory,
79 KSNotification::Info);
80
81 }
82 else
83 {
84 currentStatus = CAP_UNPARKING;
85 currentParkStatus = PARK_UNPARKING;
86 KSNotification::event(QLatin1String("IndiServerMessage"), i18n("Dust Cap is unparking"), KSNotification::Observatory,
87 KSNotification::Info);
88
89 }
90 break;
91
92 case IPS_ALERT:
93 currentStatus = CAP_ERROR;
94 currentParkStatus = PARK_ERROR;
95 }
96
97 if (currentStatus != m_Status)
98 {
99 m_Status = currentStatus;
100 emit newStatus(m_Status);
101 }
102
103 if (currentParkStatus != m_ParkStatus)
104 {
105 m_ParkStatus = currentParkStatus;
106 emit newParkStatus(m_ParkStatus);
107 }
108
109
110 }
111}
112
113bool DustCap::canPark()
114{
115 auto parkSP = getSwitch("CAP_PARK");
116 if (!parkSP)
117 return false;
118 else
119 return true;
120}
121
122bool DustCap::isParked()
123{
124 auto parkSP = getSwitch("CAP_PARK");
125 if (!parkSP)
126 return false;
127
128 return ((parkSP->getState() == IPS_OK || parkSP->getState() == IPS_IDLE) && parkSP->at(0)->getState() == ISS_ON);
129}
130
131bool DustCap::isUnParked()
132{
133 auto parkSP = getSwitch("CAP_PARK");
134 if (!parkSP)
135 return false;
136
137 return ( (parkSP->getState() == IPS_OK || parkSP->getState() == IPS_IDLE) && parkSP->at(1)->getState() == ISS_ON);
138}
139
141{
142 auto parkSP = getSwitch("CAP_PARK");
143 if (!parkSP)
144 return false;
145
146 auto parkSW = parkSP->findWidgetByName("PARK");
147 if (!parkSW)
148 return false;
149
150 parkSP->reset();
151 parkSW->setState(ISS_ON);
152 sendNewProperty(parkSP);
153
154 return true;
155}
156
158{
159 auto parkSP = getSwitch("CAP_PARK");
160 if (!parkSP)
161 return false;
162
163 auto parkSW = parkSP->findWidgetByName("UNPARK");
164 if (!parkSW)
165 return false;
166
167 parkSP->reset();
168 parkSW->setState(ISS_ON);
169 sendNewProperty(parkSP);
170
171 KSNotification::event(QLatin1String("IndiServerMessage"), i18n("Dust Cap is unparking"), KSNotification::Observatory,
172 KSNotification::Info);
173
174 return true;
175}
176
177const QString DustCap::getStatusString(DustCap::Status status, bool translated)
178{
179 return translated ? capStates[status].toString() : capStates[status].untranslatedText();
180}
181
182}
183
184QDBusArgument &operator<<(QDBusArgument &argument, const ISD::DustCap::Status &source)
185{
186 argument.beginStructure();
187 argument << static_cast<int>(source);
188 argument.endStructure();
189 return argument;
190}
191
192const QDBusArgument &operator>>(const QDBusArgument &argument, ISD::DustCap::Status &dest)
193{
194 int a;
195 argument.beginStructure();
196 argument >> a;
197 argument.endStructure();
198 dest = static_cast<ISD::DustCap::Status>(a);
199 return argument;
200}
The ConcreteDevice class.
void sendNewProperty(INDI::Property prop)
Send new property command to server.
INDI::PropertyView< ISwitch > * getSwitch(const QString &name) const
Q_SCRIPTABLE bool unpark()
UnPark Open dust cap.
Q_SCRIPTABLE bool park()
Park Close dust cap.
GenericDevice is the Generic Device for INDI devices.
Definition indistd.h:117
KLocalizedString KI18N_EXPORT ki18n(const char *text)
QString i18n(const char *text, const TYPE &arg...)
ISD is a collection of INDI Standard Devices.
void beginStructure()
void endStructure()
bool registerObject(const QString &path, QObject *object, RegisterOptions options)
QDBusConnection sessionBus()
QString arg(Args &&... args) const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:57:25 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.