建立共用泳池行程

本文件說明如何建立共用的泳池行程、設定正確的欄位,以及將行程指派給要執行的車輛。本文假設您已經設定 Fleet Engine、已建立車輛和運作中的駕駛應用程式,並視需要使用消費者應用程式。您也應該熟悉各種隨選行程可用的各種行程情境。請參閱下列相關指南:

建立行程的基本概念

本節說明在車隊引擎中建立行程所需的必要要求詳細資料。您可以使用 gRPC 和 REST 發出建立要求。

  • CreateTrip() 方法:gRPCREST
  • CreateTripRequest 訊息:僅限 gRPC

行程欄位

請使用下列欄位,在 Fleet Engine 中建立行程。您可以為不同類型的行程使用不同的欄位:單一或多個目的地、接連行程或共乘行程。您可以在建立行程時提供選用欄位,也可以稍後在更新行程時設定。

行程欄位
名稱 必要/自選 說明
parent 包含專案 ID 的字串。這個 ID 必須與整個 Fleet Engine 整合項目中使用的 ID 相同,並具備相同的服務帳戶角色。
trip_id 您建立的字串,可明確識別這趟行程。如參考資料所示,行程 ID 有特定限制。
trip_type 針對要建立的行程類型,將 TripType 設為下列值:
  • 單一目的地:設為 SHAREDEXCLUSIVE
  • 多目的地:設為 EXCLUSIVE
  • Back-to-back:設為 EXCLUSIVE
  • 共用資源池:設為 SHARED
pickup_point 行程的起點。
中繼目的地

僅限多重目的地行程:駕駛人在上車和下車之間造訪的中繼目的地清單。如同 dropoff_point,您也可以稍後呼叫 UpdateTrip 來設定這個欄位,但多目的地行程的定義包含中繼目的地。

vehicle_waypoints

僅限共用集區行程:這個欄位支援交錯多個行程的路線控點。內含指定車輛剩餘的所有路線控點,以及這趟行程的上車和下車路線控點。您可以呼叫 CreateTripUpdateTrip 來設定這個欄位。您也可以使用 waypoints 欄位呼叫 UpdateVehicle,藉此更新車輛路線控點。基於隱私考量,服務不會在 GetTrip 呼叫中傳回這項資訊。

number_of_passengers 行程乘客人數。
dropoff_point 行程的目的地。
vehicle_id 指派給行程的車輛 ID。

範例:建立共用泳池行程

下列後端整合範例示範如何建立行程,並將其指派給車輛做為共用集區行程。

// Vehicle with VEHICLE_ID ID is already created and it is assigned Trip A.

static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_ID = "shared-trip-A";
static final String VEHICLE_ID = "your-vehicle-id";
static final String TRIP_A_ID = "trip-a-id";
static final String TRIP_B_ID = "trip-b-id";

TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);

String parent = "providers/" + PROJECT_ID;

LatLng tripBPickup =
    LatLng.newBuilder().setLatitude(-12.12314).setLongitude(88.142123).build();
LatLng tripBDropoff =
    LatLng.newBuilder().setLatitude(-14.12314).setLongitude(90.142123).build();

TerminalLocation tripBPickupTerminalLocation =
    TerminalLocation.newBuilder().setPoint(tripBPickup).build();
TerminalLocation tripBDropoffTerminalLocation =
    TerminalLocation.newBuilder().setPoint(tripBDropoff).build();

// TripA already exists and it's assigned to a vehicle with VEHICLE_ID ID.
Trip tripB = Trip.newBuilder()
    .setTripType(TripType.SHARED)
    .setVehicleId(VEHICLE_ID)
    .setPickupPoint(tripBPickupTerminalLocation)
    .setDropoffPoint(tripBDropoffTerminalLocation)
    .addAllVehicleWaypoints(
        // This is where you define the arrival order for unvisited waypoints.
        // If you don't specify an order, then the Fleet Engine adds Trip B's
        // waypoints to the end of Trip A's.
        ImmutableList.of(
            // Trip B's pickup point.
            TripWaypoint.newBuilder()
                .setLocation(tripBPickupTerminalLocation)
                .setTripId(TRIP_B_ID)
                .setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
                .build(),
            // Trip A's drop-off point.
            TripWaypoint.newBuilder()
                .setLocation(tripA.getDropoffPoint())
                .setTripId(TRIP_A_ID)
                .setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
                .build(),
            // Trip B's drop-off point.
            TripWaypoint.newBuilder()
                .setLocation(tripBDropoffTerminalLocation)
                .setTripId(TRIP_B_ID)
                .setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
                .build()))
    .build();

// Create Trip request
CreateTripRequest createTripRequest = CreateTripRequest.newBuilder()
    .setParent(parent)
    .setTripId(TRIP_B_ID)
    .setTrip(tripB)
    .build();

try {
  // createdTrip.remainingWaypoints will contain shared-pool waypoints.
  // [tripB.pickup, tripA.dropoff, tripB.dropoff]
  Trip createdTrip = tripService.createTrip(createTripRequest);
} catch (StatusRuntimeException e) {
  Status s = e.getStatus();
  switch (s.getCode()) {
    case ALREADY_EXISTS:
      break;
    case PERMISSION_DENIED:
      break;
  }
  return;
}

更新共用集區行程

在 Fleet Engine 中建立的任何行程都必須指派給車輛,Fleet Engine 才能計算行程預估抵達時間並追蹤行程。您可以在行程建立期間或日後更新行程時執行這項操作。

如果是共用的集區行程,您必須在行程的交通工具路線控點 (Trip.vehicle_waypoints) 中,為未造訪的路線控點指定訂單。機群引擎會使用這份清單,自動更新共用集區中所有行程的行程路線控點。

舉例來說,假設有兩個共用集區行程,分別是「Trip A」和「Trip B」

  • 「行程 A」是指前往下車地點的路線。
  • 接著,行程 B 會新增至同一輛車。

在一個 Trip BUpdateTripRequest 中,設定 vehicleId,並將 Trip.vehicle_waypoints 設為最佳路線點順序:B 取貨A 下車地點B 下車地點

  • 呼叫 getVehicle() 會傳回 remainingWaypoints,其中包含:
    B 取貨下車B 下車
  • getTrip()Trip AonTripRemainingWaypointsUpdated 回呼會傳回包含以下內容的 remainingWaypoints
    B 取貨下車地點
  • getTrip()Trip BonTripRemainingWaypointsUpdated 回呼會傳回包含以下內容的 remainingWaypoints
    B 取貨A 下車B 下車

範例

以下後端整合範例示範如何更新行程,其中包含兩趟共乘行程的車輛 ID 和路線點。

static final String PROJECT_ID = "my-rideshare-co-gcp-project";
static final String TRIP_A_ID = "share-trip-A";
static final String TRIP_B_ID = "share-trip-B";
static final String VEHICLE_ID = "Vehicle";

String tripName = "providers/" + PROJECT_ID + "/trips/" + TRIP_B_ID;

// Get Trip A and Trip B objects from either the Fleet Engine or storage.
Trip tripA = ;
Trip tripB = ;

TripServiceBlockingStub tripService = TripService.newBlockingStub(channel);

// The trip settings to update.
Trip trip = Trip.newBuilder()
    .setVehicleId(VEHICLE_ID)
    .addAllVehicleWaypoints(
        // This is where you define the arrival order for unvisited waypoints.
        // If you don't specify an order, then the Fleet Engine adds Trip B's
        // waypoints to the end of Trip A's.
        ImmutableList.of(
            // Trip B's pickup point.
            TripWaypoint.newBuilder()
                .setLocation(tripB.getPickupPoint())
                .setTripId(TRIP_B_ID)
                .setWaypointType(WaypointType.PICKUP_WAYPOINT_TYPE)
                .build(),
            // Trip A's drop-off point.
            TripWaypoint.newBuilder()
                .setLocation(tripA.getDropoffPoint())
                .setTripId(TRIP_A_ID)
                .setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
                .build(),
            // Trip B's drop-off point.
            TripWaypoint.newBuilder()
                .setLocation(tripB.getDropoffPoint())
                .setTripId(TRIP_B_ID)
                .setWaypointType(WaypointType.DROP_OFF_WAYPOINT_TYPE)
                .build()))
    .build();

// The trip update request.
UpdateTripRequest updateTripRequest = UpdateTripRequest.newBuilder()
    .setName(tripName)
    .setTrip(trip)
    .setUpdateMask(FieldMask.newBuilder()
        .addPaths("vehicle_id")
        .addPaths("vehicle_waypoints"))
    .build();

// Error handling. If Fleet Engine has both a trip and vehicle with the IDs,
// and if the credentials validate, and if the given vehicle_waypoints list
// is valid, then the service updates the trip.
try {
  Trip updatedTrip = tripService.updateTrip(updateTripRequest);
} catch (StatusRuntimeException e) {
  Status s = e.getStatus();
  switch (s.getCode()) {
    case NOT_FOUND:          // Either the trip or vehicle does not exist.
      break;
    case PERMISSION_DENIED:
      break;
    case INVALID_REQUEST:    // vehicle_waypoints is invalid.
      break;
  }
  return;
}

後續步驟