blob: 88bc5f64e26b4dbd6c26c966c69512ee6595e156 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library geocoder_mojom;
import 'dart:async';
import 'package:mojo/bindings.dart' as bindings;
import 'package:mojo/core.dart' as core;
import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as service_describer;
import 'package:mojo_services/mojo/location.mojom.dart' as location_mojom;
class LocationType extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(8, 0)
];
static const String rooftop = "ROOFTOP";
static const String rangeInterpolated = "RANGE_INTERPOLATED";
static const String geometricCenter = "GEOMETRIC_CENTER";
static const String approximate = "APPROXIMATE";
LocationType() : super(kVersions.last.size);
static LocationType deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static LocationType decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
LocationType result = new LocationType();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
return result;
}
void encode(bindings.Encoder encoder) {
encoder.getStructEncoderAtOffset(kVersions.last);
}
String toString() {
return "LocationType("")";
}
Map toJson() {
Map map = new Map();
return map;
}
}
class Bounds extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
];
location_mojom.Location northeast = null;
location_mojom.Location southwest = null;
Bounds() : super(kVersions.last.size);
static Bounds deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static Bounds decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
Bounds result = new Bounds();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(8, false);
result.northeast = location_mojom.Location.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, false);
result.southwest = location_mojom.Location.decode(decoder1);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeStruct(northeast, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"northeast of struct Bounds: $e";
rethrow;
}
try {
encoder0.encodeStruct(southwest, 16, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"southwest of struct Bounds: $e";
rethrow;
}
}
String toString() {
return "Bounds("
"northeast: $northeast" ", "
"southwest: $southwest" ")";
}
Map toJson() {
Map map = new Map();
map["northeast"] = northeast;
map["southwest"] = southwest;
return map;
}
}
class ComponentRestrictions extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(48, 0)
];
String administrativeArea = null;
String country = null;
String locality = null;
String postalCode = null;
String route = null;
ComponentRestrictions() : super(kVersions.last.size);
static ComponentRestrictions deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static ComponentRestrictions decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
ComponentRestrictions result = new ComponentRestrictions();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
result.administrativeArea = decoder0.decodeString(8, true);
}
if (mainDataHeader.version >= 0) {
result.country = decoder0.decodeString(16, true);
}
if (mainDataHeader.version >= 0) {
result.locality = decoder0.decodeString(24, true);
}
if (mainDataHeader.version >= 0) {
result.postalCode = decoder0.decodeString(32, true);
}
if (mainDataHeader.version >= 0) {
result.route = decoder0.decodeString(40, true);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeString(administrativeArea, 8, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"administrativeArea of struct ComponentRestrictions: $e";
rethrow;
}
try {
encoder0.encodeString(country, 16, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"country of struct ComponentRestrictions: $e";
rethrow;
}
try {
encoder0.encodeString(locality, 24, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"locality of struct ComponentRestrictions: $e";
rethrow;
}
try {
encoder0.encodeString(postalCode, 32, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"postalCode of struct ComponentRestrictions: $e";
rethrow;
}
try {
encoder0.encodeString(route, 40, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"route of struct ComponentRestrictions: $e";
rethrow;
}
}
String toString() {
return "ComponentRestrictions("
"administrativeArea: $administrativeArea" ", "
"country: $country" ", "
"locality: $locality" ", "
"postalCode: $postalCode" ", "
"route: $route" ")";
}
Map toJson() {
Map map = new Map();
map["administrativeArea"] = administrativeArea;
map["country"] = country;
map["locality"] = locality;
map["postalCode"] = postalCode;
map["route"] = route;
return map;
}
}
class Options extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(32, 0)
];
ComponentRestrictions restrictions = null;
location_mojom.Location location = null;
String region = null;
Options() : super(kVersions.last.size);
static Options deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static Options decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
Options result = new Options();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(8, true);
result.restrictions = ComponentRestrictions.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, true);
result.location = location_mojom.Location.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
result.region = decoder0.decodeString(24, true);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeStruct(restrictions, 8, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"restrictions of struct Options: $e";
rethrow;
}
try {
encoder0.encodeStruct(location, 16, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"location of struct Options: $e";
rethrow;
}
try {
encoder0.encodeString(region, 24, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"region of struct Options: $e";
rethrow;
}
}
String toString() {
return "Options("
"restrictions: $restrictions" ", "
"location: $location" ", "
"region: $region" ")";
}
Map toJson() {
Map map = new Map();
map["restrictions"] = restrictions;
map["location"] = location;
map["region"] = region;
return map;
}
}
class Geometry extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(40, 0)
];
location_mojom.Location location = null;
LocationType locationType = null;
Bounds viewport = null;
Bounds bounds = null;
Geometry() : super(kVersions.last.size);
static Geometry deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static Geometry decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
Geometry result = new Geometry();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(8, false);
result.location = location_mojom.Location.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, false);
result.locationType = LocationType.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(24, false);
result.viewport = Bounds.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(32, true);
result.bounds = Bounds.decode(decoder1);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeStruct(location, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"location of struct Geometry: $e";
rethrow;
}
try {
encoder0.encodeStruct(locationType, 16, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"locationType of struct Geometry: $e";
rethrow;
}
try {
encoder0.encodeStruct(viewport, 24, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"viewport of struct Geometry: $e";
rethrow;
}
try {
encoder0.encodeStruct(bounds, 32, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"bounds of struct Geometry: $e";
rethrow;
}
}
String toString() {
return "Geometry("
"location: $location" ", "
"locationType: $locationType" ", "
"viewport: $viewport" ", "
"bounds: $bounds" ")";
}
Map toJson() {
Map map = new Map();
map["location"] = location;
map["locationType"] = locationType;
map["viewport"] = viewport;
map["bounds"] = bounds;
return map;
}
}
class Result extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(40, 0)
];
bool partialMatch = false;
Geometry geometry = null;
String formattedAddress = null;
List<String> types = null;
Result() : super(kVersions.last.size);
static Result deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static Result decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
Result result = new Result();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
result.partialMatch = decoder0.decodeBool(8, 0);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, false);
result.geometry = Geometry.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
result.formattedAddress = decoder0.decodeString(24, false);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(32, false);
{
var si1 = decoder1.decodeDataHeaderForPointerArray(bindings.kUnspecifiedArrayLength);
result.types = new List<String>(si1.numElements);
for (int i1 = 0; i1 < si1.numElements; ++i1) {
result.types[i1] = decoder1.decodeString(bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i1, false);
}
}
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeBool(partialMatch, 8, 0);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"partialMatch of struct Result: $e";
rethrow;
}
try {
encoder0.encodeStruct(geometry, 16, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"geometry of struct Result: $e";
rethrow;
}
try {
encoder0.encodeString(formattedAddress, 24, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"formattedAddress of struct Result: $e";
rethrow;
}
try {
if (types == null) {
encoder0.encodeNullPointer(32, false);
} else {
var encoder1 = encoder0.encodePointerArray(types.length, 32, bindings.kUnspecifiedArrayLength);
for (int i0 = 0; i0 < types.length; ++i0) {
encoder1.encodeString(types[i0], bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i0, false);
}
}
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"types of struct Result: $e";
rethrow;
}
}
String toString() {
return "Result("
"partialMatch: $partialMatch" ", "
"geometry: $geometry" ", "
"formattedAddress: $formattedAddress" ", "
"types: $types" ")";
}
Map toJson() {
Map map = new Map();
map["partialMatch"] = partialMatch;
map["geometry"] = geometry;
map["formattedAddress"] = formattedAddress;
map["types"] = types;
return map;
}
}
class Status extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(8, 0)
];
static const String ok = "OK";
static const String zeroResults = "ZERO_RESULTS";
static const String overQueryLimit = "OVER_QUERY_LIMIT";
static const String requestDenied = "REQUEST_DENIED";
static const String invalidRequest = "INVALID_REQUEST";
Status() : super(kVersions.last.size);
static Status deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static Status decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
Status result = new Status();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
return result;
}
void encode(bindings.Encoder encoder) {
encoder.getStructEncoderAtOffset(kVersions.last);
}
String toString() {
return "Status("")";
}
Map toJson() {
Map map = new Map();
return map;
}
}
class _GeocoderAddressToLocationParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
];
String address = null;
Options options = null;
_GeocoderAddressToLocationParams() : super(kVersions.last.size);
static _GeocoderAddressToLocationParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static _GeocoderAddressToLocationParams decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
_GeocoderAddressToLocationParams result = new _GeocoderAddressToLocationParams();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
result.address = decoder0.decodeString(8, false);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, true);
result.options = Options.decode(decoder1);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeString(address, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"address of struct _GeocoderAddressToLocationParams: $e";
rethrow;
}
try {
encoder0.encodeStruct(options, 16, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"options of struct _GeocoderAddressToLocationParams: $e";
rethrow;
}
}
String toString() {
return "_GeocoderAddressToLocationParams("
"address: $address" ", "
"options: $options" ")";
}
Map toJson() {
Map map = new Map();
map["address"] = address;
map["options"] = options;
return map;
}
}
class GeocoderAddressToLocationResponseParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
];
String status = null;
List<Result> results = null;
GeocoderAddressToLocationResponseParams() : super(kVersions.last.size);
static GeocoderAddressToLocationResponseParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static GeocoderAddressToLocationResponseParams decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
GeocoderAddressToLocationResponseParams result = new GeocoderAddressToLocationResponseParams();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
result.status = decoder0.decodeString(8, false);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, true);
if (decoder1 == null) {
result.results = null;
} else {
var si1 = decoder1.decodeDataHeaderForPointerArray(bindings.kUnspecifiedArrayLength);
result.results = new List<Result>(si1.numElements);
for (int i1 = 0; i1 < si1.numElements; ++i1) {
var decoder2 = decoder1.decodePointer(bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i1, false);
result.results[i1] = Result.decode(decoder2);
}
}
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeString(status, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"status of struct GeocoderAddressToLocationResponseParams: $e";
rethrow;
}
try {
if (results == null) {
encoder0.encodeNullPointer(16, true);
} else {
var encoder1 = encoder0.encodePointerArray(results.length, 16, bindings.kUnspecifiedArrayLength);
for (int i0 = 0; i0 < results.length; ++i0) {
encoder1.encodeStruct(results[i0], bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i0, false);
}
}
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"results of struct GeocoderAddressToLocationResponseParams: $e";
rethrow;
}
}
String toString() {
return "GeocoderAddressToLocationResponseParams("
"status: $status" ", "
"results: $results" ")";
}
Map toJson() {
Map map = new Map();
map["status"] = status;
map["results"] = results;
return map;
}
}
class _GeocoderLocationToAddressParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
];
location_mojom.Location location = null;
Options options = null;
_GeocoderLocationToAddressParams() : super(kVersions.last.size);
static _GeocoderLocationToAddressParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static _GeocoderLocationToAddressParams decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
_GeocoderLocationToAddressParams result = new _GeocoderLocationToAddressParams();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(8, false);
result.location = location_mojom.Location.decode(decoder1);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, true);
result.options = Options.decode(decoder1);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeStruct(location, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"location of struct _GeocoderLocationToAddressParams: $e";
rethrow;
}
try {
encoder0.encodeStruct(options, 16, true);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"options of struct _GeocoderLocationToAddressParams: $e";
rethrow;
}
}
String toString() {
return "_GeocoderLocationToAddressParams("
"location: $location" ", "
"options: $options" ")";
}
Map toJson() {
Map map = new Map();
map["location"] = location;
map["options"] = options;
return map;
}
}
class GeocoderLocationToAddressResponseParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
];
String status = null;
List<Result> results = null;
GeocoderLocationToAddressResponseParams() : super(kVersions.last.size);
static GeocoderLocationToAddressResponseParams deserialize(bindings.Message message) {
var decoder = new bindings.Decoder(message);
var result = decode(decoder);
if (decoder.excessHandles != null) {
decoder.excessHandles.forEach((h) => h.close());
}
return result;
}
static GeocoderLocationToAddressResponseParams decode(bindings.Decoder decoder0) {
if (decoder0 == null) {
return null;
}
GeocoderLocationToAddressResponseParams result = new GeocoderLocationToAddressResponseParams();
var mainDataHeader = decoder0.decodeStructDataHeader();
if (mainDataHeader.version <= kVersions.last.version) {
// Scan in reverse order to optimize for more recent versions.
for (int i = kVersions.length - 1; i >= 0; --i) {
if (mainDataHeader.version >= kVersions[i].version) {
if (mainDataHeader.size == kVersions[i].size) {
// Found a match.
break;
}
throw new bindings.MojoCodecError(
'Header size doesn\'t correspond to known version size.');
}
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
'Message newer than the last known version cannot be shorter than '
'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
result.status = decoder0.decodeString(8, false);
}
if (mainDataHeader.version >= 0) {
var decoder1 = decoder0.decodePointer(16, true);
if (decoder1 == null) {
result.results = null;
} else {
var si1 = decoder1.decodeDataHeaderForPointerArray(bindings.kUnspecifiedArrayLength);
result.results = new List<Result>(si1.numElements);
for (int i1 = 0; i1 < si1.numElements; ++i1) {
var decoder2 = decoder1.decodePointer(bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i1, false);
result.results[i1] = Result.decode(decoder2);
}
}
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
try {
encoder0.encodeString(status, 8, false);
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"status of struct GeocoderLocationToAddressResponseParams: $e";
rethrow;
}
try {
if (results == null) {
encoder0.encodeNullPointer(16, true);
} else {
var encoder1 = encoder0.encodePointerArray(results.length, 16, bindings.kUnspecifiedArrayLength);
for (int i0 = 0; i0 < results.length; ++i0) {
encoder1.encodeStruct(results[i0], bindings.ArrayDataHeader.kHeaderSize + bindings.kPointerSize * i0, false);
}
}
} on bindings.MojoCodecError catch(e) {
e.message = "Error encountered while encoding field "
"results of struct GeocoderLocationToAddressResponseParams: $e";
rethrow;
}
}
String toString() {
return "GeocoderLocationToAddressResponseParams("
"status: $status" ", "
"results: $results" ")";
}
Map toJson() {
Map map = new Map();
map["status"] = status;
map["results"] = results;
return map;
}
}
const int _geocoderMethodAddressToLocationName = 0;
const int _geocoderMethodLocationToAddressName = 1;
class _GeocoderServiceDescription implements service_describer.ServiceDescription {
dynamic getTopLevelInterface([Function responseFactory]) =>
responseFactory(null);
dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
responseFactory(null);
dynamic getAllTypeDefinitions([Function responseFactory]) =>
responseFactory(null);
}
abstract class Geocoder {
static const String serviceName = null;
dynamic addressToLocation(String address,Options options,[Function responseFactory = null]);
dynamic locationToAddress(location_mojom.Location location,Options options,[Function responseFactory = null]);
}
class _GeocoderProxyControl
extends bindings.ProxyMessageHandler
implements bindings.ProxyControl {
_GeocoderProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
_GeocoderProxyControl.fromHandle(
core.MojoHandle handle) : super.fromHandle(handle);
_GeocoderProxyControl.unbound() : super.unbound();
service_describer.ServiceDescription get serviceDescription =>
new _GeocoderServiceDescription();
String get serviceName => Geocoder.serviceName;
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
case _geocoderMethodAddressToLocationName:
var r = GeocoderAddressToLocationResponseParams.deserialize(
message.payload);
if (!message.header.hasRequestId) {
proxyError("Expected a message with a valid request Id.");
return;
}
Completer c = completerMap[message.header.requestId];
if (c == null) {
proxyError(
"Message had unknown request Id: ${message.header.requestId}");
return;
}
completerMap.remove(message.header.requestId);
if (c.isCompleted) {
proxyError("Response completer already completed");
return;
}
c.complete(r);
break;
case _geocoderMethodLocationToAddressName:
var r = GeocoderLocationToAddressResponseParams.deserialize(
message.payload);
if (!message.header.hasRequestId) {
proxyError("Expected a message with a valid request Id.");
return;
}
Completer c = completerMap[message.header.requestId];
if (c == null) {
proxyError(
"Message had unknown request Id: ${message.header.requestId}");
return;
}
completerMap.remove(message.header.requestId);
if (c.isCompleted) {
proxyError("Response completer already completed");
return;
}
c.complete(r);
break;
default:
proxyError("Unexpected message type: ${message.header.type}");
close(immediate: true);
break;
}
}
@override
String toString() {
var superString = super.toString();
return "_GeocoderProxyControl($superString)";
}
}
class GeocoderProxy
extends bindings.Proxy
implements Geocoder {
GeocoderProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _GeocoderProxyControl.fromEndpoint(endpoint));
GeocoderProxy.fromHandle(core.MojoHandle handle)
: super(new _GeocoderProxyControl.fromHandle(handle));
GeocoderProxy.unbound()
: super(new _GeocoderProxyControl.unbound());
static GeocoderProxy newFromEndpoint(
core.MojoMessagePipeEndpoint endpoint) {
assert(endpoint.setDescription("For GeocoderProxy"));
return new GeocoderProxy.fromEndpoint(endpoint);
}
factory GeocoderProxy.connectToService(
bindings.ServiceConnector s, String url, [String serviceName]) {
GeocoderProxy p = new GeocoderProxy.unbound();
s.connectToService(url, p, serviceName);
return p;
}
dynamic addressToLocation(String address,Options options,[Function responseFactory = null]) {
var params = new _GeocoderAddressToLocationParams();
params.address = address;
params.options = options;
return ctrl.sendMessageWithRequestId(
params,
_geocoderMethodAddressToLocationName,
-1,
bindings.MessageHeader.kMessageExpectsResponse);
}
dynamic locationToAddress(location_mojom.Location location,Options options,[Function responseFactory = null]) {
var params = new _GeocoderLocationToAddressParams();
params.location = location;
params.options = options;
return ctrl.sendMessageWithRequestId(
params,
_geocoderMethodLocationToAddressName,
-1,
bindings.MessageHeader.kMessageExpectsResponse);
}
}
class _GeocoderStubControl
extends bindings.StubMessageHandler
implements bindings.StubControl<Geocoder> {
Geocoder _impl;
_GeocoderStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [Geocoder impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
_GeocoderStubControl.fromHandle(
core.MojoHandle handle, [Geocoder impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
_GeocoderStubControl.unbound([this._impl]) : super.unbound();
GeocoderAddressToLocationResponseParams _geocoderAddressToLocationResponseParamsFactory(String status, List<Result> results) {
var result = new GeocoderAddressToLocationResponseParams();
result.status = status;
result.results = results;
return result;
}
GeocoderLocationToAddressResponseParams _geocoderLocationToAddressResponseParamsFactory(String status, List<Result> results) {
var result = new GeocoderLocationToAddressResponseParams();
result.status = status;
result.results = results;
return result;
}
dynamic handleMessage(bindings.ServiceMessage message) {
if (bindings.ControlMessageHandler.isControlMessage(message)) {
return bindings.ControlMessageHandler.handleMessage(this,
0,
message);
}
if (_impl == null) {
throw new core.MojoApiError("$this has no implementation set");
}
switch (message.header.type) {
case _geocoderMethodAddressToLocationName:
var params = _GeocoderAddressToLocationParams.deserialize(
message.payload);
var response = _impl.addressToLocation(params.address,params.options,_geocoderAddressToLocationResponseParamsFactory);
if (response is Future) {
return response.then((response) {
if (response != null) {
return buildResponseWithId(
response,
_geocoderMethodAddressToLocationName,
message.header.requestId,
bindings.MessageHeader.kMessageIsResponse);
}
});
} else if (response != null) {
return buildResponseWithId(
response,
_geocoderMethodAddressToLocationName,
message.header.requestId,
bindings.MessageHeader.kMessageIsResponse);
}
break;
case _geocoderMethodLocationToAddressName:
var params = _GeocoderLocationToAddressParams.deserialize(
message.payload);
var response = _impl.locationToAddress(params.location,params.options,_geocoderLocationToAddressResponseParamsFactory);
if (response is Future) {
return response.then((response) {
if (response != null) {
return buildResponseWithId(
response,
_geocoderMethodLocationToAddressName,
message.header.requestId,
bindings.MessageHeader.kMessageIsResponse);
}
});
} else if (response != null) {
return buildResponseWithId(
response,
_geocoderMethodLocationToAddressName,
message.header.requestId,
bindings.MessageHeader.kMessageIsResponse);
}
break;
default:
throw new bindings.MojoCodecError("Unexpected message name");
break;
}
return null;
}
Geocoder get impl => _impl;
set impl(Geocoder d) {
if (d == null) {
throw new core.MojoApiError("$this: Cannot set a null implementation");
}
if (isBound && (_impl == null)) {
beginHandlingEvents();
}
_impl = d;
}
@override
void bind(core.MojoMessagePipeEndpoint endpoint) {
super.bind(endpoint);
if (!isOpen && (_impl != null)) {
beginHandlingEvents();
}
}
@override
String toString() {
var superString = super.toString();
return "_GeocoderStubControl($superString)";
}
int get version => 0;
static service_describer.ServiceDescription _cachedServiceDescription;
static service_describer.ServiceDescription get serviceDescription {
if (_cachedServiceDescription == null) {
_cachedServiceDescription = new _GeocoderServiceDescription();
}
return _cachedServiceDescription;
}
}
class GeocoderStub
extends bindings.Stub<Geocoder>
implements Geocoder {
GeocoderStub.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [Geocoder impl])
: super(new _GeocoderStubControl.fromEndpoint(endpoint, impl));
GeocoderStub.fromHandle(
core.MojoHandle handle, [Geocoder impl])
: super(new _GeocoderStubControl.fromHandle(handle, impl));
GeocoderStub.unbound([Geocoder impl])
: super(new _GeocoderStubControl.unbound(impl));
static GeocoderStub newFromEndpoint(
core.MojoMessagePipeEndpoint endpoint) {
assert(endpoint.setDescription("For GeocoderStub"));
return new GeocoderStub.fromEndpoint(endpoint);
}
static service_describer.ServiceDescription get serviceDescription =>
_GeocoderStubControl.serviceDescription;
dynamic addressToLocation(String address,Options options,[Function responseFactory = null]) {
return impl.addressToLocation(address,options,responseFactory);
}
dynamic locationToAddress(location_mojom.Location location,Options options,[Function responseFactory = null]) {
return impl.locationToAddress(location,options,responseFactory);
}
}