forked from HaikuArchives/Weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetListener.h
42 lines (35 loc) · 1.08 KB
/
NetListener.h
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
/*
* Copyright 2015 Przemysław Buczkowski <[email protected]>
* All rights reserved. Distributed under the terms of the MIT license.
*/
#ifndef _NETLISTENER_H_
#define _NETLISTENER_H_
#include <Looper.h>
#include <String.h>
#include <UrlProtocolListener.h>
enum RequestType {
CITY_REQUEST,
WEATHER_REQUEST
} ;
const uint32 kDataMessage = 'Data';
const uint32 kForecastDataMessage = 'FDta';
const uint32 kFailureMessage = 'Fail';
const uint32 kUpdateCityName = 'UpCN';
const uint32 kUpdateTTLMessage = 'TTLm';
class NetListener : public BUrlProtocolListener {
public:
NetListener(BHandler* fHandler, RequestType requestType);
virtual ~NetListener();
virtual void ResponseStarted(BUrlRequest* caller);
virtual void DataReceived(BUrlRequest* caller, const char* data,
off_t position, ssize_t size);
virtual void RequestCompleted(BUrlRequest* caller,
bool success);
private:
void _ProcessWeatherData(bool success);
void _ProcessCityData(bool success);
BHandler* fHandler;
RequestType fRequestType;
BMallocIO fResponseData;
};
#endif // _NETLISTENER_H_