जब आप किसी यात्रा को फ़ॉलो करते हैं, तो आपका उपभोक्ता ऐप्लिकेशन उसके लिए सही वाहन चुन सकते हैं. ऐसा करने के लिए, आपके ऐप्लिकेशन को चालू करना होगा यात्रा को फ़ॉलो करना, यात्रा की जानकारी अपडेट करना, और यात्रा के दौरान उसे फ़ॉलो करना बंद करना पूरा करता है.
इस दस्तावेज़ में बताया गया है कि यह प्रोसेस कैसे काम करती है.
किसी यात्रा को फ़ॉलो करना शुरू करें
यात्रा शेयर करने की सुविधा इस्तेमाल करके, अपनी यात्रा की शुरुआत करने का तरीका यहां बताया गया है:
लोगों के सभी इनपुट इकट्ठा करें. जैसे, ड्रॉप-ऑफ़ और पिकअप की जगह की जानकारी
ViewController
से मिला है.यात्रा की जानकारी सीधे तौर पर शेयर करने के लिए, नया
ViewController
बनाएं.
नीचे दिए गए उदाहरण में बताया गया है कि व्यू लोड के बारे में ज़्यादा जानें.
Swift
/*
* MapViewController.swift
*/
override func viewDidLoad() {
super.viewDidLoad()
...
self.mapView = GMTCMapView(frame: UIScreen.main.bounds)
self.mapView.delegate = self
self.view.addSubview(self.mapView)
}
func mapViewDidInitializeCustomerState(_: GMTCMapView) {
self.mapView.pickupLocation = self.selectedPickupLocation
self.mapView.dropoffLocation = self.selectedDropoffLocation
self.startConsumerMatchWithLocations(
pickupLocation: self.mapView.pickupLocation!,
dropoffLocation: self.mapView.dropoffLocation!
) { [weak self] (tripName, error) in
guard let strongSelf = self else { return }
if error != nil {
// print error message.
return
}
let tripService = GMTCServices.shared().tripService
// Create a tripModel instance for listening the update of the trip
// specified by this trip name.
let tripModel = tripService.tripModel(forTripName: tripName)
// Create a journeySharingSession instance based on the tripModel
let journeySharingSession = GMTCJourneySharingSession(tripModel: tripModel)
// Add the journeySharingSession instance on the mapView for UI updating.
strongSelf.mapView.show(journeySharingSession)
// Register for the trip update events.
tripModel.register(strongSelf)
strongSelf.currentTripModel = tripModel
strongSelf.currentJourneySharingSession = journeySharingSession
strongSelf.hideLoadingView()
}
self.showLoadingView()
}
Objective-C
/*
* MapViewController.m
*/
- (void)viewDidLoad {
[super viewDidLoad];
...
self.mapView = [[GMTCMapView alloc] initWithFrame:CGRectZero];
self.mapView.delegate = self;
[self.view addSubview:self.mapView];
}
// Handle the callback when the GMTCMapView did initialized.
- (void)mapViewDidInitializeCustomerState:(GMTCMapView *)mapview {
self.mapView.pickupLocation = self.selectedPickupLocation;
self.mapView.dropoffLocation = self.selectedDropoffLocation;
__weak __typeof(self) weakSelf = self;
[self startTripBookingWithPickupLocation:self.selectedPickupLocation
dropoffLocation:self.selectedDropoffLocation
completion:^(NSString *tripName, NSError *error) {
__typeof(self) strongSelf = weakSelf;
GMTCTripService *tripService = [GMTCServices sharedServices].tripService;
// Create a tripModel instance for listening to updates to the trip specified by this trip name.
GMTCTripModel *tripModel = [tripService tripModelForTripName:tripName];
// Create a journeySharingSession instance based on the tripModel.
GMTCJourneySharingSession *journeySharingSession =
[[GMTCJourneySharingSession alloc] initWithTripModel:tripModel];
// Add the journeySharingSession instance on the mapView for updating the UI.
[strongSelf.mapView showMapViewSession:journeySharingSession];
// Register for trip update events.
[tripModel registerSubscriber:self];
strongSelf.currentTripModel = tripModel;
strongSelf.currentJourneySharingSession = journeySharingSession;
[strongSelf hideLoadingView];
}];
[self showLoadingView];
}
किसी यात्रा को फ़ॉलो करना बंद करना
यात्रा पूरी हो जाने या रद्द हो जाने पर, उसे फ़ॉलो करना बंद कर दिया जाता है. नीचे दिए गए उदाहरण में, चालू यात्रा की जानकारी को शेयर करने से रोकने का तरीका बताया गया है.
Swift
/*
* MapViewController.swift
*/
func cancelCurrentActiveTrip() {
// Stop the tripModel
self.currentTripModel.unregisterSubscriber(self)
// Remove the journey sharing session from the mapView's UI stack.
self.mapView.hide(journeySharingSession)
}
Objective-C
/*
* MapViewController.m
*/
- (void)cancelCurrentActiveTrip {
// Stop the tripModel
[self.currentTripModel unregisterSubscriber:self];
// Remove the journey sharing session from the mapView's UI stack.
[self.mapView hideMapViewSession:journeySharingSession];
}
यात्रा की प्रोग्रेस अपडेट करें
यात्रा के दौरान, यात्रा की प्रोग्रेस को इस तरह मैनेज किया जा सकता है:
अपडेट सुनना शुरू करें. उदाहरण के लिए, देखें अपडेट का उदाहरण सुनना शुरू करें.
यात्रा से जुड़े सभी अपडेट मैनेज करें. उदाहरण के लिए, देखें कि यात्रा के अपडेट मैनेज करने का उदाहरण
जब कोई यात्रा पूरी हो जाती है या रद्द हो जाती है, तो अपडेट सुनना बंद करें. उदाहरण के लिए, देखें अपडेट का उदाहरण सुनने की सुविधा बंद करें.
अपडेट सुनने की सुविधा का उदाहरण
यहां दिए गए उदाहरण में, tripModel
कॉलबैक को रजिस्टर करने का तरीका बताया गया है.
Swift
/*
* MapViewController.swift
*/
override func viewDidLoad() {
super.viewDidLoad()
// Register for trip update events.
self.currentTripModel.register(self)
}
Objective-C
/*
* MapViewController.m
*/
- (void)viewDidLoad {
[super viewDidLoad];
// Register for trip update events.
[self.currentTripModel registerSubscriber:self];
...
}
अपडेट सुनने का उदाहरण बंद करने का तरीका
नीचे दिए गए उदाहरण में, tripModel
का रजिस्ट्रेशन रद्द करने का तरीका बताया गया है
कॉलबैक.
Swift
/*
* MapViewController.swift
*/
deinit {
self.currentTripModel.unregisterSubscriber(self)
}
Objective-C
/*
* MapViewController.m
*/
- (void)dealloc {
[self.currentTripModel unregisterSubscriber:self];
...
}
यात्रा के अपडेट मैनेज करने का उदाहरण
यहां दिए गए उदाहरण में, यात्रा की स्थिति अपडेट होने पर कॉलबैक मैनेज करने के लिए GMTCTripModelSubscriber
प्रोटोकॉल को लागू करने का तरीका बताया गया है.
Swift
/*
* MapViewController.swift
*/
func tripModel(_: GMTCTripModel, didUpdate trip: GMTSTrip?, updatedPropertyFields: GMTSTripPropertyFields) {
// Update the UI with the new `trip` data.
self.updateUI(with: trip)
}
func tripModel(_: GMTCTripModel, didUpdate tripStatus: GMTSTripStatus) {
// Handle trip status did change.
}
func tripModel(_: GMTCTripModel, didUpdateActiveRouteRemainingDistance activeRouteRemainingDistance: Int32) {
// Handle remaining distance of active route did update.
}
func tripModel(_: GMTCTripModel, didUpdateActiveRoute activeRoute: [GMTSLatLng]?) {
// Handle trip active route did update.
}
func tripModel(_: GMTCTripModel, didUpdate vehicleLocation: GMTSVehicleLocation?) {
// Handle vehicle location did update.
}
func tripModel(_: GMTCTripModel, didUpdatePickupLocation pickupLocation: GMTSTerminalLocation?) {
// Handle pickup location did update.
}
func tripModel(_: GMTCTripModel, didUpdateDropoffLocation dropoffLocation: GMTSTerminalLocation?) {
// Handle drop off location did update.
}
func tripModel(_: GMTCTripModel, didUpdatePickupETA pickupETA: TimeInterval) {
// Handle the pickup ETA did update.
}
func tripModel(_: GMTCTripModel, didUpdateDropoffETA dropoffETA: TimeInterval) {
// Handle the drop off ETA did update.
}
func tripModel(_: GMTCTripModel, didUpdateRemaining remainingWaypoints: [GMTSTripWaypoint]?) {
// Handle updates to the pickup, dropoff or intermediate destinations of the trip.
}
func tripModel(_: GMTCTripModel, didFailUpdateTripWithError error: Error?) {
// Handle the error.
}
func tripModel(_: GMTCTripModel, didUpdateIntermediateDestinations intermediateDestinations: [GMTSTerminalLocation]?) {
// Handle the intermediate destinations being updated.
}
func tripModel(_: GMTCTripModel, didUpdateActiveRouteTraffic activeRouteTraffic: GMTSTrafficData?) {
// Handle trip active route traffic being updated.
}
Objective-C
/*
* MapViewController.m
*/
#pragma mark - GMTCTripModelSubscriber implementation
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateTrip:(nullable GMTSTrip *)trip
updatedPropertyFields:(enum GMTSTripPropertyFields)updatedPropertyFields {
// Update the UI with the new `trip` data.
[self updateUIWithTrip:trip];
...
}
- (void)tripModel:(GMTCTripModel *)tripModel didUpdateTripStatus:(enum GMTSTripStatus)tripStatus {
// Handle trip status did change.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateActiveRouteRemainingDistance:(int32_t)activeRouteRemainingDistance {
// Handle remaining distance of active route did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateActiveRoute:(nullable NSArray<GMTSLatLng *> *)activeRoute {
// Handle trip active route did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateVehicleLocation:(nullable GMTSVehicleLocation *)vehicleLocation {
// Handle vehicle location did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdatePickupLocation:(nullable GMTSTerminalLocation *)pickupLocation {
// Handle pickup location did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateDropoffLocation:(nullable GMTSTerminalLocation *)dropoffLocation {
// Handle drop off location did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel didUpdatePickupETA:(NSTimeInterval)pickupETA {
// Handle the pickup ETA did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateRemainingWaypoints:(nullable NSArray<GMTSTripWaypoint *> *)remainingWaypoints {
// Handle updates to the pickup, dropoff or intermediate destinations of the trip.
}
- (void)tripModel:(GMTCTripModel *)tripModel didUpdateDropoffETA:(NSTimeInterval)dropoffETA {
// Handle the drop off ETA did update.
}
- (void)tripModel:(GMTCTripModel *)tripModel didFailUpdateTripWithError:(nullable NSError *)error {
// Handle the error.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateIntermediateDestinations:
(nullable NSArray<GMTSTerminalLocation *> *)intermediateDestinations {
// Handle the intermediate destinations being updated.
}
- (void)tripModel:(GMTCTripModel *)tripModel
didUpdateActiveRouteTraffic:(nullable GMTSTrafficData *)activeRouteTraffic {
// Handle trip active route traffic being updated.
}
यात्रा से जुड़ी गड़बड़ियां ठीक करना
अगर आपने tripModel
की सदस्यता ली है और कोई गड़बड़ी होती है, तो आपको कॉलबैक मिल सकता है
डेलिगेट तरीका लागू करके tripModel
का
tripModel(_:didFailUpdateTripWithError:)
. गड़बड़ी हुई
मैसेज, Google Cloud के गड़बड़ी मानक का पालन करते हैं. गड़बड़ी की पूरी जानकारी के लिए
संदेश की परिभाषाएं और सभी गड़बड़ी कोड देखें.
Google Cloud से जुड़ी गड़बड़ियों का दस्तावेज़.
यात्रा की निगरानी करते समय होने वाली कुछ सामान्य गड़बड़ियां यहां दी गई हैं:
HTTP | RPC | ब्यौरा |
---|---|---|
400 | INVALID_ARGUMENT | क्लाइंट ने यात्रा का गलत नाम दिया है. ट्रिप का नाम, providers/{provider_id}/trips/{trip_id} फ़ॉर्मैट में होना चाहिए. कॉन्टेंट बनाने
provider_id, उस क्लाउड प्रोजेक्ट का आईडी होना चाहिए जिसका मालिकाना हक
ऐप्लिकेशन है. |
401 | पुष्टि नहीं की गई | पुष्टि करने के लिए मान्य क्रेडेंशियल न होने पर, आपको गड़बड़ी का यह मैसेज मिलता है. उदाहरण के लिए, अगर JWT टोकन को ट्रिप आईडी या JWT टोकन के बिना साइन किया गया है यह खत्म हो गया है. |
403 | PERMISSION_DENIED | गड़बड़ी का यह मैसेज तब मिलता है, जब क्लाइंट के पास ज़रूरी अनुमति नहीं है (उदाहरण के लिए, उपभोक्ता की भूमिका वाला कोई उपयोगकर्ता updatedTrip को कॉल करने की कोशिश करता है), अगर JWT टोकन अमान्य है या क्लाइंट प्रोजेक्ट के लिए API चालू नहीं है. ऐसा हो सकता है कि JWT टोकन मौजूद न हो या टोकन को किसी ऐसे ट्रिप आईडी से साइन किया गया हो जो अनुरोध की गई यात्रा के आईडी से मेल नहीं खाता. |
429 | RESOURCE_EXHAUSTED | संसाधन कोटा शून्य है या ट्रैफ़िक की दर तय सीमा से ज़्यादा है. |
503 | हवा की क्वालिटी की जानकारी उपलब्ध नहीं है | सेवा उपलब्ध नहीं है. आम तौर पर, ऐसा तब होता है, जब सर्वर काम नहीं कर रहा हो. |
504 | DEADLINE_EXCEEDED | अनुरोध की समयसीमा खत्म हो गई है. यह गड़बड़ी सिर्फ़ तब होती है, जब कॉल करने वाला व्यक्ति, समयसीमा को मेथड की डिफ़ॉल्ट समयसीमा से कम सेट करता है. इसका मतलब है कि अनुरोध की गई समयसीमा, सर्वर के लिए अनुरोध को प्रोसेस करने के लिए ज़रूरत से कम है और अनुरोध समयसीमा के अंदर पूरा नहीं हुआ. |
उपभोक्ता SDK टूल से जुड़ी गड़बड़ियों को मैनेज करना
उपभोक्ता SDK टूल, कॉलबैक का इस्तेमाल करके उपभोक्ता ऐप्लिकेशन को यात्रा अपडेट करने से जुड़ी गड़बड़ियां भेजता है
मैकेनिज़्म. कॉलबैक पैरामीटर, प्लैटफ़ॉर्म के हिसाब से रिटर्न टाइप होता है (
TripUpdateError
Android पर और
NSError
डालें).
स्टेटस कोड एक्सट्रैक्ट करना
कॉलबैक को पास की जाने वाली गड़बड़ियां आम तौर पर gRPC गड़बड़ियां होती हैं. इसके अलावा, उनसे अतिरिक्त जानकारी हासिल कर सकते हैं. स्टेटस कोड की पूरी सूची, देखें स्टेटस कोड और gRPC में उनका इस्तेमाल.
Swift
NSError
को tripModel(_:didFailUpdateTripWithError:)
बाद फिर से शुरू कर दिया गया है.
// Called when there is a trip update error.
func tripModel(_ tripModel: GMTCTripModel, didFailUpdateTripWithError error: Error?) {
// Check to see if the error comes from gRPC.
if let error = error as NSError?, error.domain == "io.grpc" {
let gRPCErrorCode = error.code
...
}
}
Objective-C
NSError
को tripModel:didFailUpdateTripWithError:
बाद फिर से शुरू कर दिया गया है.
// Called when there is a trip update error.
- (void)tripModel:(GMTCTripModel *)tripModel didFailUpdateTripWithError:(NSError *)error {
// Check to see if the error comes from gRPC.
if ([error.domain isEqualToString:@"io.grpc"]) {
NSInteger gRPCErrorCode = error.code;
...
}
}
स्थिति कोड को समझना
स्टेटस कोड में दो तरह की गड़बड़ियां शामिल होती हैं: सर्वर और नेटवर्क से जुड़ी गड़बड़ियां और क्लाइंट-साइड गड़बड़ियां.
सर्वर और नेटवर्क से जुड़ी गड़बड़ियां
नीचे दिए गए स्टेटस कोड, नेटवर्क या सर्वर की गड़बड़ियों के लिए हैं और आपको उन्हें हल करने के लिए कोई कार्रवाई करने की ज़रूरत नहीं है. उपभोक्ता SDK टूल अपने-आप ठीक से काम कर रहा है.
स्थिति कोड | ब्यौरा |
---|---|
रद्द किया गया | सर्वर ने जवाब भेजना बंद कर दिया. आम तौर पर, इसकी वजह से सर्वर में समस्या. |
रद्द कर दी गई | सर्वर ने आउटगोइंग जवाब बंद कर दिया. यह सामान्य रूप से होता है
तब होता है जब
ऐप्लिकेशन को बैकग्राउंड में भेजा जाता है या जब बैकग्राउंड में कोई बदलाव होता है, उपभोक्ता ऐप्लिकेशन. |
INTERRUPTED | |
DEADLINE_EXCEEDED | सर्वर ने जवाब देने में बहुत ज़्यादा समय लिया. |
हवा की क्वालिटी की जानकारी उपलब्ध नहीं है | सर्वर उपलब्ध नहीं है. आम तौर पर, ऐसा नेटवर्क की वजह से होता है समस्या. |
क्लाइंट से जुड़ी गड़बड़ियां
यहां दिए गए स्टेटस कोड क्लाइंट की गड़बड़ियों के लिए हैं. इसलिए, आपको इन चीज़ों के लिए कार्रवाई करनी होगी उनका समाधान करें. उपभोक्ता SDK टूल तब तक यात्रा को रीफ़्रेश करने की कोशिश करता रहता है, जब तक शेयर करना बंद कर दें, लेकिन यह तब तक वापस नहीं आएगा, जब तक आप कार्रवाई नहीं करते.
स्थिति कोड | ब्यौरा |
---|---|
INVALID_ARGUMENT | Consumer ऐप्लिकेशन ने यात्रा का अमान्य नाम दिया है. यात्रा का नाम, providers/{provider_id}/trips/{trip_id} फ़ॉर्मैट में होना चाहिए.
|
NOT_FOUND | यात्रा की जानकारी कभी नहीं बनाई गई. |
PERMISSION_DENIED | उपभोक्ता ऐप्लिकेशन के पास ज़रूरी अनुमतियां नहीं हैं. यह गड़बड़ी तब होती है, जब:
|
RESOURCE_EXHAUSTED | संसाधन कोटा शून्य है या ट्रैफ़िक फ़्लो की दर, स्पीड की सीमा से ज़्यादा है. |
पुष्टि नहीं की गई | अमान्य JWT टोकन के कारण अनुरोध प्रमाणीकरण विफल रहा. यह गड़बड़ी तब होती है, जब JWT टोकन किसी ट्रिप आईडी के बिना साइन किया जाता है या जब JWT टोकन खत्म हो जाता है. |