Files
MWClash/lib/database/generated/database.g.dart
chen08209 0602146d50 cache
2026-02-12 22:28:48 +08:00

4912 lines
160 KiB
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of '../database.dart';
// ignore_for_file: type=lint
class $ProfilesTable extends Profiles
with TableInfo<$ProfilesTable, RawProfile> {
@override
final GeneratedDatabase attachedDatabase;
final String? _alias;
$ProfilesTable(this.attachedDatabase, [this._alias]);
static const VerificationMeta _idMeta = const VerificationMeta('id');
@override
late final GeneratedColumn<int> id = GeneratedColumn<int>(
'id',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _labelMeta = const VerificationMeta('label');
@override
late final GeneratedColumn<String> label = GeneratedColumn<String>(
'label',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
static const VerificationMeta _currentGroupNameMeta = const VerificationMeta(
'currentGroupName',
);
@override
late final GeneratedColumn<String> currentGroupName = GeneratedColumn<String>(
'current_group_name',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _urlMeta = const VerificationMeta('url');
@override
late final GeneratedColumn<String> url = GeneratedColumn<String>(
'url',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
static const VerificationMeta _lastUpdateDateMeta = const VerificationMeta(
'lastUpdateDate',
);
@override
late final GeneratedColumn<DateTime> lastUpdateDate =
GeneratedColumn<DateTime>(
'last_update_date',
aliasedName,
true,
type: DriftSqlType.dateTime,
requiredDuringInsert: false,
);
@override
late final GeneratedColumnWithTypeConverter<OverwriteType, String>
overwriteType = GeneratedColumn<String>(
'overwrite_type',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
).withConverter<OverwriteType>($ProfilesTable.$converteroverwriteType);
static const VerificationMeta _scriptIdMeta = const VerificationMeta(
'scriptId',
);
@override
late final GeneratedColumn<int> scriptId = GeneratedColumn<int>(
'script_id',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _autoUpdateDurationMillisMeta =
const VerificationMeta('autoUpdateDurationMillis');
@override
late final GeneratedColumn<int> autoUpdateDurationMillis =
GeneratedColumn<int>(
'auto_update_duration_millis',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: true,
);
@override
late final GeneratedColumnWithTypeConverter<SubscriptionInfo?, String>
subscriptionInfo = GeneratedColumn<String>(
'subscription_info',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
).withConverter<SubscriptionInfo?>($ProfilesTable.$convertersubscriptionInfo);
static const VerificationMeta _autoUpdateMeta = const VerificationMeta(
'autoUpdate',
);
@override
late final GeneratedColumn<bool> autoUpdate = GeneratedColumn<bool>(
'auto_update',
aliasedName,
false,
type: DriftSqlType.bool,
requiredDuringInsert: true,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("auto_update" IN (0, 1))',
),
);
@override
late final GeneratedColumnWithTypeConverter<Map<String, String>, String>
selectedMap = GeneratedColumn<String>(
'selected_map',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
).withConverter<Map<String, String>>($ProfilesTable.$converterselectedMap);
@override
late final GeneratedColumnWithTypeConverter<Set<String>, String> unfoldSet =
GeneratedColumn<String>(
'unfold_set',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
).withConverter<Set<String>>($ProfilesTable.$converterunfoldSet);
static const VerificationMeta _orderMeta = const VerificationMeta('order');
@override
late final GeneratedColumn<int> order = GeneratedColumn<int>(
'order',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
@override
List<GeneratedColumn> get $columns => [
id,
label,
currentGroupName,
url,
lastUpdateDate,
overwriteType,
scriptId,
autoUpdateDurationMillis,
subscriptionInfo,
autoUpdate,
selectedMap,
unfoldSet,
order,
];
@override
String get aliasedName => _alias ?? actualTableName;
@override
String get actualTableName => $name;
static const String $name = 'profiles';
@override
VerificationContext validateIntegrity(
Insertable<RawProfile> instance, {
bool isInserting = false,
}) {
final context = VerificationContext();
final data = instance.toColumns(true);
if (data.containsKey('id')) {
context.handle(_idMeta, id.isAcceptableOrUnknown(data['id']!, _idMeta));
}
if (data.containsKey('label')) {
context.handle(
_labelMeta,
label.isAcceptableOrUnknown(data['label']!, _labelMeta),
);
} else if (isInserting) {
context.missing(_labelMeta);
}
if (data.containsKey('current_group_name')) {
context.handle(
_currentGroupNameMeta,
currentGroupName.isAcceptableOrUnknown(
data['current_group_name']!,
_currentGroupNameMeta,
),
);
}
if (data.containsKey('url')) {
context.handle(
_urlMeta,
url.isAcceptableOrUnknown(data['url']!, _urlMeta),
);
} else if (isInserting) {
context.missing(_urlMeta);
}
if (data.containsKey('last_update_date')) {
context.handle(
_lastUpdateDateMeta,
lastUpdateDate.isAcceptableOrUnknown(
data['last_update_date']!,
_lastUpdateDateMeta,
),
);
}
if (data.containsKey('script_id')) {
context.handle(
_scriptIdMeta,
scriptId.isAcceptableOrUnknown(data['script_id']!, _scriptIdMeta),
);
}
if (data.containsKey('auto_update_duration_millis')) {
context.handle(
_autoUpdateDurationMillisMeta,
autoUpdateDurationMillis.isAcceptableOrUnknown(
data['auto_update_duration_millis']!,
_autoUpdateDurationMillisMeta,
),
);
} else if (isInserting) {
context.missing(_autoUpdateDurationMillisMeta);
}
if (data.containsKey('auto_update')) {
context.handle(
_autoUpdateMeta,
autoUpdate.isAcceptableOrUnknown(data['auto_update']!, _autoUpdateMeta),
);
} else if (isInserting) {
context.missing(_autoUpdateMeta);
}
if (data.containsKey('order')) {
context.handle(
_orderMeta,
order.isAcceptableOrUnknown(data['order']!, _orderMeta),
);
}
return context;
}
@override
Set<GeneratedColumn> get $primaryKey => {id};
@override
RawProfile map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return RawProfile(
id: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}id'],
)!,
label: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}label'],
)!,
currentGroupName: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}current_group_name'],
),
url: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}url'],
)!,
lastUpdateDate: attachedDatabase.typeMapping.read(
DriftSqlType.dateTime,
data['${effectivePrefix}last_update_date'],
),
overwriteType: $ProfilesTable.$converteroverwriteType.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}overwrite_type'],
)!,
),
scriptId: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}script_id'],
),
autoUpdateDurationMillis: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}auto_update_duration_millis'],
)!,
subscriptionInfo: $ProfilesTable.$convertersubscriptionInfo.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}subscription_info'],
),
),
autoUpdate: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}auto_update'],
)!,
selectedMap: $ProfilesTable.$converterselectedMap.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}selected_map'],
)!,
),
unfoldSet: $ProfilesTable.$converterunfoldSet.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}unfold_set'],
)!,
),
order: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}order'],
),
);
}
@override
$ProfilesTable createAlias(String alias) {
return $ProfilesTable(attachedDatabase, alias);
}
static JsonTypeConverter2<OverwriteType, String, String>
$converteroverwriteType = const EnumNameConverter<OverwriteType>(
OverwriteType.values,
);
static TypeConverter<SubscriptionInfo?, String?> $convertersubscriptionInfo =
const SubscriptionInfoConverter();
static TypeConverter<Map<String, String>, String> $converterselectedMap =
const StringMapConverter();
static TypeConverter<Set<String>, String> $converterunfoldSet =
const StringSetConverter();
}
class RawProfile extends DataClass implements Insertable<RawProfile> {
final int id;
final String label;
final String? currentGroupName;
final String url;
final DateTime? lastUpdateDate;
final OverwriteType overwriteType;
final int? scriptId;
final int autoUpdateDurationMillis;
final SubscriptionInfo? subscriptionInfo;
final bool autoUpdate;
final Map<String, String> selectedMap;
final Set<String> unfoldSet;
final int? order;
const RawProfile({
required this.id,
required this.label,
this.currentGroupName,
required this.url,
this.lastUpdateDate,
required this.overwriteType,
this.scriptId,
required this.autoUpdateDurationMillis,
this.subscriptionInfo,
required this.autoUpdate,
required this.selectedMap,
required this.unfoldSet,
this.order,
});
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
map['id'] = Variable<int>(id);
map['label'] = Variable<String>(label);
if (!nullToAbsent || currentGroupName != null) {
map['current_group_name'] = Variable<String>(currentGroupName);
}
map['url'] = Variable<String>(url);
if (!nullToAbsent || lastUpdateDate != null) {
map['last_update_date'] = Variable<DateTime>(lastUpdateDate);
}
{
map['overwrite_type'] = Variable<String>(
$ProfilesTable.$converteroverwriteType.toSql(overwriteType),
);
}
if (!nullToAbsent || scriptId != null) {
map['script_id'] = Variable<int>(scriptId);
}
map['auto_update_duration_millis'] = Variable<int>(
autoUpdateDurationMillis,
);
if (!nullToAbsent || subscriptionInfo != null) {
map['subscription_info'] = Variable<String>(
$ProfilesTable.$convertersubscriptionInfo.toSql(subscriptionInfo),
);
}
map['auto_update'] = Variable<bool>(autoUpdate);
{
map['selected_map'] = Variable<String>(
$ProfilesTable.$converterselectedMap.toSql(selectedMap),
);
}
{
map['unfold_set'] = Variable<String>(
$ProfilesTable.$converterunfoldSet.toSql(unfoldSet),
);
}
if (!nullToAbsent || order != null) {
map['order'] = Variable<int>(order);
}
return map;
}
ProfilesCompanion toCompanion(bool nullToAbsent) {
return ProfilesCompanion(
id: Value(id),
label: Value(label),
currentGroupName: currentGroupName == null && nullToAbsent
? const Value.absent()
: Value(currentGroupName),
url: Value(url),
lastUpdateDate: lastUpdateDate == null && nullToAbsent
? const Value.absent()
: Value(lastUpdateDate),
overwriteType: Value(overwriteType),
scriptId: scriptId == null && nullToAbsent
? const Value.absent()
: Value(scriptId),
autoUpdateDurationMillis: Value(autoUpdateDurationMillis),
subscriptionInfo: subscriptionInfo == null && nullToAbsent
? const Value.absent()
: Value(subscriptionInfo),
autoUpdate: Value(autoUpdate),
selectedMap: Value(selectedMap),
unfoldSet: Value(unfoldSet),
order: order == null && nullToAbsent
? const Value.absent()
: Value(order),
);
}
factory RawProfile.fromJson(
Map<String, dynamic> json, {
ValueSerializer? serializer,
}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return RawProfile(
id: serializer.fromJson<int>(json['id']),
label: serializer.fromJson<String>(json['label']),
currentGroupName: serializer.fromJson<String?>(json['currentGroupName']),
url: serializer.fromJson<String>(json['url']),
lastUpdateDate: serializer.fromJson<DateTime?>(json['lastUpdateDate']),
overwriteType: $ProfilesTable.$converteroverwriteType.fromJson(
serializer.fromJson<String>(json['overwriteType']),
),
scriptId: serializer.fromJson<int?>(json['scriptId']),
autoUpdateDurationMillis: serializer.fromJson<int>(
json['autoUpdateDurationMillis'],
),
subscriptionInfo: serializer.fromJson<SubscriptionInfo?>(
json['subscriptionInfo'],
),
autoUpdate: serializer.fromJson<bool>(json['autoUpdate']),
selectedMap: serializer.fromJson<Map<String, String>>(
json['selectedMap'],
),
unfoldSet: serializer.fromJson<Set<String>>(json['unfoldSet']),
order: serializer.fromJson<int?>(json['order']),
);
}
@override
Map<String, dynamic> toJson({ValueSerializer? serializer}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return <String, dynamic>{
'id': serializer.toJson<int>(id),
'label': serializer.toJson<String>(label),
'currentGroupName': serializer.toJson<String?>(currentGroupName),
'url': serializer.toJson<String>(url),
'lastUpdateDate': serializer.toJson<DateTime?>(lastUpdateDate),
'overwriteType': serializer.toJson<String>(
$ProfilesTable.$converteroverwriteType.toJson(overwriteType),
),
'scriptId': serializer.toJson<int?>(scriptId),
'autoUpdateDurationMillis': serializer.toJson<int>(
autoUpdateDurationMillis,
),
'subscriptionInfo': serializer.toJson<SubscriptionInfo?>(
subscriptionInfo,
),
'autoUpdate': serializer.toJson<bool>(autoUpdate),
'selectedMap': serializer.toJson<Map<String, String>>(selectedMap),
'unfoldSet': serializer.toJson<Set<String>>(unfoldSet),
'order': serializer.toJson<int?>(order),
};
}
RawProfile copyWith({
int? id,
String? label,
Value<String?> currentGroupName = const Value.absent(),
String? url,
Value<DateTime?> lastUpdateDate = const Value.absent(),
OverwriteType? overwriteType,
Value<int?> scriptId = const Value.absent(),
int? autoUpdateDurationMillis,
Value<SubscriptionInfo?> subscriptionInfo = const Value.absent(),
bool? autoUpdate,
Map<String, String>? selectedMap,
Set<String>? unfoldSet,
Value<int?> order = const Value.absent(),
}) => RawProfile(
id: id ?? this.id,
label: label ?? this.label,
currentGroupName: currentGroupName.present
? currentGroupName.value
: this.currentGroupName,
url: url ?? this.url,
lastUpdateDate: lastUpdateDate.present
? lastUpdateDate.value
: this.lastUpdateDate,
overwriteType: overwriteType ?? this.overwriteType,
scriptId: scriptId.present ? scriptId.value : this.scriptId,
autoUpdateDurationMillis:
autoUpdateDurationMillis ?? this.autoUpdateDurationMillis,
subscriptionInfo: subscriptionInfo.present
? subscriptionInfo.value
: this.subscriptionInfo,
autoUpdate: autoUpdate ?? this.autoUpdate,
selectedMap: selectedMap ?? this.selectedMap,
unfoldSet: unfoldSet ?? this.unfoldSet,
order: order.present ? order.value : this.order,
);
RawProfile copyWithCompanion(ProfilesCompanion data) {
return RawProfile(
id: data.id.present ? data.id.value : this.id,
label: data.label.present ? data.label.value : this.label,
currentGroupName: data.currentGroupName.present
? data.currentGroupName.value
: this.currentGroupName,
url: data.url.present ? data.url.value : this.url,
lastUpdateDate: data.lastUpdateDate.present
? data.lastUpdateDate.value
: this.lastUpdateDate,
overwriteType: data.overwriteType.present
? data.overwriteType.value
: this.overwriteType,
scriptId: data.scriptId.present ? data.scriptId.value : this.scriptId,
autoUpdateDurationMillis: data.autoUpdateDurationMillis.present
? data.autoUpdateDurationMillis.value
: this.autoUpdateDurationMillis,
subscriptionInfo: data.subscriptionInfo.present
? data.subscriptionInfo.value
: this.subscriptionInfo,
autoUpdate: data.autoUpdate.present
? data.autoUpdate.value
: this.autoUpdate,
selectedMap: data.selectedMap.present
? data.selectedMap.value
: this.selectedMap,
unfoldSet: data.unfoldSet.present ? data.unfoldSet.value : this.unfoldSet,
order: data.order.present ? data.order.value : this.order,
);
}
@override
String toString() {
return (StringBuffer('RawProfile(')
..write('id: $id, ')
..write('label: $label, ')
..write('currentGroupName: $currentGroupName, ')
..write('url: $url, ')
..write('lastUpdateDate: $lastUpdateDate, ')
..write('overwriteType: $overwriteType, ')
..write('scriptId: $scriptId, ')
..write('autoUpdateDurationMillis: $autoUpdateDurationMillis, ')
..write('subscriptionInfo: $subscriptionInfo, ')
..write('autoUpdate: $autoUpdate, ')
..write('selectedMap: $selectedMap, ')
..write('unfoldSet: $unfoldSet, ')
..write('order: $order')
..write(')'))
.toString();
}
@override
int get hashCode => Object.hash(
id,
label,
currentGroupName,
url,
lastUpdateDate,
overwriteType,
scriptId,
autoUpdateDurationMillis,
subscriptionInfo,
autoUpdate,
selectedMap,
unfoldSet,
order,
);
@override
bool operator ==(Object other) =>
identical(this, other) ||
(other is RawProfile &&
other.id == this.id &&
other.label == this.label &&
other.currentGroupName == this.currentGroupName &&
other.url == this.url &&
other.lastUpdateDate == this.lastUpdateDate &&
other.overwriteType == this.overwriteType &&
other.scriptId == this.scriptId &&
other.autoUpdateDurationMillis == this.autoUpdateDurationMillis &&
other.subscriptionInfo == this.subscriptionInfo &&
other.autoUpdate == this.autoUpdate &&
other.selectedMap == this.selectedMap &&
other.unfoldSet == this.unfoldSet &&
other.order == this.order);
}
class ProfilesCompanion extends UpdateCompanion<RawProfile> {
final Value<int> id;
final Value<String> label;
final Value<String?> currentGroupName;
final Value<String> url;
final Value<DateTime?> lastUpdateDate;
final Value<OverwriteType> overwriteType;
final Value<int?> scriptId;
final Value<int> autoUpdateDurationMillis;
final Value<SubscriptionInfo?> subscriptionInfo;
final Value<bool> autoUpdate;
final Value<Map<String, String>> selectedMap;
final Value<Set<String>> unfoldSet;
final Value<int?> order;
const ProfilesCompanion({
this.id = const Value.absent(),
this.label = const Value.absent(),
this.currentGroupName = const Value.absent(),
this.url = const Value.absent(),
this.lastUpdateDate = const Value.absent(),
this.overwriteType = const Value.absent(),
this.scriptId = const Value.absent(),
this.autoUpdateDurationMillis = const Value.absent(),
this.subscriptionInfo = const Value.absent(),
this.autoUpdate = const Value.absent(),
this.selectedMap = const Value.absent(),
this.unfoldSet = const Value.absent(),
this.order = const Value.absent(),
});
ProfilesCompanion.insert({
this.id = const Value.absent(),
required String label,
this.currentGroupName = const Value.absent(),
required String url,
this.lastUpdateDate = const Value.absent(),
required OverwriteType overwriteType,
this.scriptId = const Value.absent(),
required int autoUpdateDurationMillis,
this.subscriptionInfo = const Value.absent(),
required bool autoUpdate,
required Map<String, String> selectedMap,
required Set<String> unfoldSet,
this.order = const Value.absent(),
}) : label = Value(label),
url = Value(url),
overwriteType = Value(overwriteType),
autoUpdateDurationMillis = Value(autoUpdateDurationMillis),
autoUpdate = Value(autoUpdate),
selectedMap = Value(selectedMap),
unfoldSet = Value(unfoldSet);
static Insertable<RawProfile> custom({
Expression<int>? id,
Expression<String>? label,
Expression<String>? currentGroupName,
Expression<String>? url,
Expression<DateTime>? lastUpdateDate,
Expression<String>? overwriteType,
Expression<int>? scriptId,
Expression<int>? autoUpdateDurationMillis,
Expression<String>? subscriptionInfo,
Expression<bool>? autoUpdate,
Expression<String>? selectedMap,
Expression<String>? unfoldSet,
Expression<int>? order,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (label != null) 'label': label,
if (currentGroupName != null) 'current_group_name': currentGroupName,
if (url != null) 'url': url,
if (lastUpdateDate != null) 'last_update_date': lastUpdateDate,
if (overwriteType != null) 'overwrite_type': overwriteType,
if (scriptId != null) 'script_id': scriptId,
if (autoUpdateDurationMillis != null)
'auto_update_duration_millis': autoUpdateDurationMillis,
if (subscriptionInfo != null) 'subscription_info': subscriptionInfo,
if (autoUpdate != null) 'auto_update': autoUpdate,
if (selectedMap != null) 'selected_map': selectedMap,
if (unfoldSet != null) 'unfold_set': unfoldSet,
if (order != null) 'order': order,
});
}
ProfilesCompanion copyWith({
Value<int>? id,
Value<String>? label,
Value<String?>? currentGroupName,
Value<String>? url,
Value<DateTime?>? lastUpdateDate,
Value<OverwriteType>? overwriteType,
Value<int?>? scriptId,
Value<int>? autoUpdateDurationMillis,
Value<SubscriptionInfo?>? subscriptionInfo,
Value<bool>? autoUpdate,
Value<Map<String, String>>? selectedMap,
Value<Set<String>>? unfoldSet,
Value<int?>? order,
}) {
return ProfilesCompanion(
id: id ?? this.id,
label: label ?? this.label,
currentGroupName: currentGroupName ?? this.currentGroupName,
url: url ?? this.url,
lastUpdateDate: lastUpdateDate ?? this.lastUpdateDate,
overwriteType: overwriteType ?? this.overwriteType,
scriptId: scriptId ?? this.scriptId,
autoUpdateDurationMillis:
autoUpdateDurationMillis ?? this.autoUpdateDurationMillis,
subscriptionInfo: subscriptionInfo ?? this.subscriptionInfo,
autoUpdate: autoUpdate ?? this.autoUpdate,
selectedMap: selectedMap ?? this.selectedMap,
unfoldSet: unfoldSet ?? this.unfoldSet,
order: order ?? this.order,
);
}
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (id.present) {
map['id'] = Variable<int>(id.value);
}
if (label.present) {
map['label'] = Variable<String>(label.value);
}
if (currentGroupName.present) {
map['current_group_name'] = Variable<String>(currentGroupName.value);
}
if (url.present) {
map['url'] = Variable<String>(url.value);
}
if (lastUpdateDate.present) {
map['last_update_date'] = Variable<DateTime>(lastUpdateDate.value);
}
if (overwriteType.present) {
map['overwrite_type'] = Variable<String>(
$ProfilesTable.$converteroverwriteType.toSql(overwriteType.value),
);
}
if (scriptId.present) {
map['script_id'] = Variable<int>(scriptId.value);
}
if (autoUpdateDurationMillis.present) {
map['auto_update_duration_millis'] = Variable<int>(
autoUpdateDurationMillis.value,
);
}
if (subscriptionInfo.present) {
map['subscription_info'] = Variable<String>(
$ProfilesTable.$convertersubscriptionInfo.toSql(subscriptionInfo.value),
);
}
if (autoUpdate.present) {
map['auto_update'] = Variable<bool>(autoUpdate.value);
}
if (selectedMap.present) {
map['selected_map'] = Variable<String>(
$ProfilesTable.$converterselectedMap.toSql(selectedMap.value),
);
}
if (unfoldSet.present) {
map['unfold_set'] = Variable<String>(
$ProfilesTable.$converterunfoldSet.toSql(unfoldSet.value),
);
}
if (order.present) {
map['order'] = Variable<int>(order.value);
}
return map;
}
@override
String toString() {
return (StringBuffer('ProfilesCompanion(')
..write('id: $id, ')
..write('label: $label, ')
..write('currentGroupName: $currentGroupName, ')
..write('url: $url, ')
..write('lastUpdateDate: $lastUpdateDate, ')
..write('overwriteType: $overwriteType, ')
..write('scriptId: $scriptId, ')
..write('autoUpdateDurationMillis: $autoUpdateDurationMillis, ')
..write('subscriptionInfo: $subscriptionInfo, ')
..write('autoUpdate: $autoUpdate, ')
..write('selectedMap: $selectedMap, ')
..write('unfoldSet: $unfoldSet, ')
..write('order: $order')
..write(')'))
.toString();
}
}
class $ScriptsTable extends Scripts with TableInfo<$ScriptsTable, RawScript> {
@override
final GeneratedDatabase attachedDatabase;
final String? _alias;
$ScriptsTable(this.attachedDatabase, [this._alias]);
static const VerificationMeta _idMeta = const VerificationMeta('id');
@override
late final GeneratedColumn<int> id = GeneratedColumn<int>(
'id',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _labelMeta = const VerificationMeta('label');
@override
late final GeneratedColumn<String> label = GeneratedColumn<String>(
'label',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
static const VerificationMeta _lastUpdateTimeMeta = const VerificationMeta(
'lastUpdateTime',
);
@override
late final GeneratedColumn<DateTime> lastUpdateTime =
GeneratedColumn<DateTime>(
'last_update_time',
aliasedName,
false,
type: DriftSqlType.dateTime,
requiredDuringInsert: true,
);
@override
List<GeneratedColumn> get $columns => [id, label, lastUpdateTime];
@override
String get aliasedName => _alias ?? actualTableName;
@override
String get actualTableName => $name;
static const String $name = 'scripts';
@override
VerificationContext validateIntegrity(
Insertable<RawScript> instance, {
bool isInserting = false,
}) {
final context = VerificationContext();
final data = instance.toColumns(true);
if (data.containsKey('id')) {
context.handle(_idMeta, id.isAcceptableOrUnknown(data['id']!, _idMeta));
}
if (data.containsKey('label')) {
context.handle(
_labelMeta,
label.isAcceptableOrUnknown(data['label']!, _labelMeta),
);
} else if (isInserting) {
context.missing(_labelMeta);
}
if (data.containsKey('last_update_time')) {
context.handle(
_lastUpdateTimeMeta,
lastUpdateTime.isAcceptableOrUnknown(
data['last_update_time']!,
_lastUpdateTimeMeta,
),
);
} else if (isInserting) {
context.missing(_lastUpdateTimeMeta);
}
return context;
}
@override
Set<GeneratedColumn> get $primaryKey => {id};
@override
RawScript map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return RawScript(
id: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}id'],
)!,
label: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}label'],
)!,
lastUpdateTime: attachedDatabase.typeMapping.read(
DriftSqlType.dateTime,
data['${effectivePrefix}last_update_time'],
)!,
);
}
@override
$ScriptsTable createAlias(String alias) {
return $ScriptsTable(attachedDatabase, alias);
}
}
class RawScript extends DataClass implements Insertable<RawScript> {
final int id;
final String label;
final DateTime lastUpdateTime;
const RawScript({
required this.id,
required this.label,
required this.lastUpdateTime,
});
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
map['id'] = Variable<int>(id);
map['label'] = Variable<String>(label);
map['last_update_time'] = Variable<DateTime>(lastUpdateTime);
return map;
}
ScriptsCompanion toCompanion(bool nullToAbsent) {
return ScriptsCompanion(
id: Value(id),
label: Value(label),
lastUpdateTime: Value(lastUpdateTime),
);
}
factory RawScript.fromJson(
Map<String, dynamic> json, {
ValueSerializer? serializer,
}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return RawScript(
id: serializer.fromJson<int>(json['id']),
label: serializer.fromJson<String>(json['label']),
lastUpdateTime: serializer.fromJson<DateTime>(json['lastUpdateTime']),
);
}
@override
Map<String, dynamic> toJson({ValueSerializer? serializer}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return <String, dynamic>{
'id': serializer.toJson<int>(id),
'label': serializer.toJson<String>(label),
'lastUpdateTime': serializer.toJson<DateTime>(lastUpdateTime),
};
}
RawScript copyWith({int? id, String? label, DateTime? lastUpdateTime}) =>
RawScript(
id: id ?? this.id,
label: label ?? this.label,
lastUpdateTime: lastUpdateTime ?? this.lastUpdateTime,
);
RawScript copyWithCompanion(ScriptsCompanion data) {
return RawScript(
id: data.id.present ? data.id.value : this.id,
label: data.label.present ? data.label.value : this.label,
lastUpdateTime: data.lastUpdateTime.present
? data.lastUpdateTime.value
: this.lastUpdateTime,
);
}
@override
String toString() {
return (StringBuffer('RawScript(')
..write('id: $id, ')
..write('label: $label, ')
..write('lastUpdateTime: $lastUpdateTime')
..write(')'))
.toString();
}
@override
int get hashCode => Object.hash(id, label, lastUpdateTime);
@override
bool operator ==(Object other) =>
identical(this, other) ||
(other is RawScript &&
other.id == this.id &&
other.label == this.label &&
other.lastUpdateTime == this.lastUpdateTime);
}
class ScriptsCompanion extends UpdateCompanion<RawScript> {
final Value<int> id;
final Value<String> label;
final Value<DateTime> lastUpdateTime;
const ScriptsCompanion({
this.id = const Value.absent(),
this.label = const Value.absent(),
this.lastUpdateTime = const Value.absent(),
});
ScriptsCompanion.insert({
this.id = const Value.absent(),
required String label,
required DateTime lastUpdateTime,
}) : label = Value(label),
lastUpdateTime = Value(lastUpdateTime);
static Insertable<RawScript> custom({
Expression<int>? id,
Expression<String>? label,
Expression<DateTime>? lastUpdateTime,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (label != null) 'label': label,
if (lastUpdateTime != null) 'last_update_time': lastUpdateTime,
});
}
ScriptsCompanion copyWith({
Value<int>? id,
Value<String>? label,
Value<DateTime>? lastUpdateTime,
}) {
return ScriptsCompanion(
id: id ?? this.id,
label: label ?? this.label,
lastUpdateTime: lastUpdateTime ?? this.lastUpdateTime,
);
}
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (id.present) {
map['id'] = Variable<int>(id.value);
}
if (label.present) {
map['label'] = Variable<String>(label.value);
}
if (lastUpdateTime.present) {
map['last_update_time'] = Variable<DateTime>(lastUpdateTime.value);
}
return map;
}
@override
String toString() {
return (StringBuffer('ScriptsCompanion(')
..write('id: $id, ')
..write('label: $label, ')
..write('lastUpdateTime: $lastUpdateTime')
..write(')'))
.toString();
}
}
class $RulesTable extends Rules with TableInfo<$RulesTable, RawRule> {
@override
final GeneratedDatabase attachedDatabase;
final String? _alias;
$RulesTable(this.attachedDatabase, [this._alias]);
static const VerificationMeta _idMeta = const VerificationMeta('id');
@override
late final GeneratedColumn<int> id = GeneratedColumn<int>(
'id',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _valueMeta = const VerificationMeta('value');
@override
late final GeneratedColumn<String> value = GeneratedColumn<String>(
'value',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
@override
List<GeneratedColumn> get $columns => [id, value];
@override
String get aliasedName => _alias ?? actualTableName;
@override
String get actualTableName => $name;
static const String $name = 'rules';
@override
VerificationContext validateIntegrity(
Insertable<RawRule> instance, {
bool isInserting = false,
}) {
final context = VerificationContext();
final data = instance.toColumns(true);
if (data.containsKey('id')) {
context.handle(_idMeta, id.isAcceptableOrUnknown(data['id']!, _idMeta));
}
if (data.containsKey('value')) {
context.handle(
_valueMeta,
value.isAcceptableOrUnknown(data['value']!, _valueMeta),
);
} else if (isInserting) {
context.missing(_valueMeta);
}
return context;
}
@override
Set<GeneratedColumn> get $primaryKey => {id};
@override
RawRule map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return RawRule(
id: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}id'],
)!,
value: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}value'],
)!,
);
}
@override
$RulesTable createAlias(String alias) {
return $RulesTable(attachedDatabase, alias);
}
}
class RawRule extends DataClass implements Insertable<RawRule> {
final int id;
final String value;
const RawRule({required this.id, required this.value});
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
map['id'] = Variable<int>(id);
map['value'] = Variable<String>(value);
return map;
}
RulesCompanion toCompanion(bool nullToAbsent) {
return RulesCompanion(id: Value(id), value: Value(value));
}
factory RawRule.fromJson(
Map<String, dynamic> json, {
ValueSerializer? serializer,
}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return RawRule(
id: serializer.fromJson<int>(json['id']),
value: serializer.fromJson<String>(json['value']),
);
}
@override
Map<String, dynamic> toJson({ValueSerializer? serializer}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return <String, dynamic>{
'id': serializer.toJson<int>(id),
'value': serializer.toJson<String>(value),
};
}
RawRule copyWith({int? id, String? value}) =>
RawRule(id: id ?? this.id, value: value ?? this.value);
RawRule copyWithCompanion(RulesCompanion data) {
return RawRule(
id: data.id.present ? data.id.value : this.id,
value: data.value.present ? data.value.value : this.value,
);
}
@override
String toString() {
return (StringBuffer('RawRule(')
..write('id: $id, ')
..write('value: $value')
..write(')'))
.toString();
}
@override
int get hashCode => Object.hash(id, value);
@override
bool operator ==(Object other) =>
identical(this, other) ||
(other is RawRule && other.id == this.id && other.value == this.value);
}
class RulesCompanion extends UpdateCompanion<RawRule> {
final Value<int> id;
final Value<String> value;
const RulesCompanion({
this.id = const Value.absent(),
this.value = const Value.absent(),
});
RulesCompanion.insert({this.id = const Value.absent(), required String value})
: value = Value(value);
static Insertable<RawRule> custom({
Expression<int>? id,
Expression<String>? value,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (value != null) 'value': value,
});
}
RulesCompanion copyWith({Value<int>? id, Value<String>? value}) {
return RulesCompanion(id: id ?? this.id, value: value ?? this.value);
}
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (id.present) {
map['id'] = Variable<int>(id.value);
}
if (value.present) {
map['value'] = Variable<String>(value.value);
}
return map;
}
@override
String toString() {
return (StringBuffer('RulesCompanion(')
..write('id: $id, ')
..write('value: $value')
..write(')'))
.toString();
}
}
class $ProfileRuleLinksTable extends ProfileRuleLinks
with TableInfo<$ProfileRuleLinksTable, RawProfileRuleLink> {
@override
final GeneratedDatabase attachedDatabase;
final String? _alias;
$ProfileRuleLinksTable(this.attachedDatabase, [this._alias]);
static const VerificationMeta _idMeta = const VerificationMeta('id');
@override
late final GeneratedColumn<String> id = GeneratedColumn<String>(
'id',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
static const VerificationMeta _profileIdMeta = const VerificationMeta(
'profileId',
);
@override
late final GeneratedColumn<int> profileId = GeneratedColumn<int>(
'profile_id',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'REFERENCES profiles (id) ON DELETE CASCADE',
),
);
static const VerificationMeta _ruleIdMeta = const VerificationMeta('ruleId');
@override
late final GeneratedColumn<int> ruleId = GeneratedColumn<int>(
'rule_id',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: true,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'REFERENCES rules (id) ON DELETE CASCADE',
),
);
@override
late final GeneratedColumnWithTypeConverter<RuleScene?, String> scene =
GeneratedColumn<String>(
'scene',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
).withConverter<RuleScene?>($ProfileRuleLinksTable.$converterscenen);
static const VerificationMeta _orderMeta = const VerificationMeta('order');
@override
late final GeneratedColumn<String> order = GeneratedColumn<String>(
'order',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
@override
List<GeneratedColumn> get $columns => [id, profileId, ruleId, scene, order];
@override
String get aliasedName => _alias ?? actualTableName;
@override
String get actualTableName => $name;
static const String $name = 'profile_rule_mapping';
@override
VerificationContext validateIntegrity(
Insertable<RawProfileRuleLink> instance, {
bool isInserting = false,
}) {
final context = VerificationContext();
final data = instance.toColumns(true);
if (data.containsKey('id')) {
context.handle(_idMeta, id.isAcceptableOrUnknown(data['id']!, _idMeta));
} else if (isInserting) {
context.missing(_idMeta);
}
if (data.containsKey('profile_id')) {
context.handle(
_profileIdMeta,
profileId.isAcceptableOrUnknown(data['profile_id']!, _profileIdMeta),
);
}
if (data.containsKey('rule_id')) {
context.handle(
_ruleIdMeta,
ruleId.isAcceptableOrUnknown(data['rule_id']!, _ruleIdMeta),
);
} else if (isInserting) {
context.missing(_ruleIdMeta);
}
if (data.containsKey('order')) {
context.handle(
_orderMeta,
order.isAcceptableOrUnknown(data['order']!, _orderMeta),
);
}
return context;
}
@override
Set<GeneratedColumn> get $primaryKey => {id};
@override
RawProfileRuleLink map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return RawProfileRuleLink(
id: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}id'],
)!,
profileId: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}profile_id'],
),
ruleId: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}rule_id'],
)!,
scene: $ProfileRuleLinksTable.$converterscenen.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}scene'],
),
),
order: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}order'],
),
);
}
@override
$ProfileRuleLinksTable createAlias(String alias) {
return $ProfileRuleLinksTable(attachedDatabase, alias);
}
static JsonTypeConverter2<RuleScene, String, String> $converterscene =
const EnumNameConverter<RuleScene>(RuleScene.values);
static JsonTypeConverter2<RuleScene?, String?, String?> $converterscenen =
JsonTypeConverter2.asNullable($converterscene);
}
class RawProfileRuleLink extends DataClass
implements Insertable<RawProfileRuleLink> {
final String id;
final int? profileId;
final int ruleId;
final RuleScene? scene;
final String? order;
const RawProfileRuleLink({
required this.id,
this.profileId,
required this.ruleId,
this.scene,
this.order,
});
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
map['id'] = Variable<String>(id);
if (!nullToAbsent || profileId != null) {
map['profile_id'] = Variable<int>(profileId);
}
map['rule_id'] = Variable<int>(ruleId);
if (!nullToAbsent || scene != null) {
map['scene'] = Variable<String>(
$ProfileRuleLinksTable.$converterscenen.toSql(scene),
);
}
if (!nullToAbsent || order != null) {
map['order'] = Variable<String>(order);
}
return map;
}
ProfileRuleLinksCompanion toCompanion(bool nullToAbsent) {
return ProfileRuleLinksCompanion(
id: Value(id),
profileId: profileId == null && nullToAbsent
? const Value.absent()
: Value(profileId),
ruleId: Value(ruleId),
scene: scene == null && nullToAbsent
? const Value.absent()
: Value(scene),
order: order == null && nullToAbsent
? const Value.absent()
: Value(order),
);
}
factory RawProfileRuleLink.fromJson(
Map<String, dynamic> json, {
ValueSerializer? serializer,
}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return RawProfileRuleLink(
id: serializer.fromJson<String>(json['id']),
profileId: serializer.fromJson<int?>(json['profileId']),
ruleId: serializer.fromJson<int>(json['ruleId']),
scene: $ProfileRuleLinksTable.$converterscenen.fromJson(
serializer.fromJson<String?>(json['scene']),
),
order: serializer.fromJson<String?>(json['order']),
);
}
@override
Map<String, dynamic> toJson({ValueSerializer? serializer}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return <String, dynamic>{
'id': serializer.toJson<String>(id),
'profileId': serializer.toJson<int?>(profileId),
'ruleId': serializer.toJson<int>(ruleId),
'scene': serializer.toJson<String?>(
$ProfileRuleLinksTable.$converterscenen.toJson(scene),
),
'order': serializer.toJson<String?>(order),
};
}
RawProfileRuleLink copyWith({
String? id,
Value<int?> profileId = const Value.absent(),
int? ruleId,
Value<RuleScene?> scene = const Value.absent(),
Value<String?> order = const Value.absent(),
}) => RawProfileRuleLink(
id: id ?? this.id,
profileId: profileId.present ? profileId.value : this.profileId,
ruleId: ruleId ?? this.ruleId,
scene: scene.present ? scene.value : this.scene,
order: order.present ? order.value : this.order,
);
RawProfileRuleLink copyWithCompanion(ProfileRuleLinksCompanion data) {
return RawProfileRuleLink(
id: data.id.present ? data.id.value : this.id,
profileId: data.profileId.present ? data.profileId.value : this.profileId,
ruleId: data.ruleId.present ? data.ruleId.value : this.ruleId,
scene: data.scene.present ? data.scene.value : this.scene,
order: data.order.present ? data.order.value : this.order,
);
}
@override
String toString() {
return (StringBuffer('RawProfileRuleLink(')
..write('id: $id, ')
..write('profileId: $profileId, ')
..write('ruleId: $ruleId, ')
..write('scene: $scene, ')
..write('order: $order')
..write(')'))
.toString();
}
@override
int get hashCode => Object.hash(id, profileId, ruleId, scene, order);
@override
bool operator ==(Object other) =>
identical(this, other) ||
(other is RawProfileRuleLink &&
other.id == this.id &&
other.profileId == this.profileId &&
other.ruleId == this.ruleId &&
other.scene == this.scene &&
other.order == this.order);
}
class ProfileRuleLinksCompanion extends UpdateCompanion<RawProfileRuleLink> {
final Value<String> id;
final Value<int?> profileId;
final Value<int> ruleId;
final Value<RuleScene?> scene;
final Value<String?> order;
final Value<int> rowid;
const ProfileRuleLinksCompanion({
this.id = const Value.absent(),
this.profileId = const Value.absent(),
this.ruleId = const Value.absent(),
this.scene = const Value.absent(),
this.order = const Value.absent(),
this.rowid = const Value.absent(),
});
ProfileRuleLinksCompanion.insert({
required String id,
this.profileId = const Value.absent(),
required int ruleId,
this.scene = const Value.absent(),
this.order = const Value.absent(),
this.rowid = const Value.absent(),
}) : id = Value(id),
ruleId = Value(ruleId);
static Insertable<RawProfileRuleLink> custom({
Expression<String>? id,
Expression<int>? profileId,
Expression<int>? ruleId,
Expression<String>? scene,
Expression<String>? order,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (profileId != null) 'profile_id': profileId,
if (ruleId != null) 'rule_id': ruleId,
if (scene != null) 'scene': scene,
if (order != null) 'order': order,
if (rowid != null) 'rowid': rowid,
});
}
ProfileRuleLinksCompanion copyWith({
Value<String>? id,
Value<int?>? profileId,
Value<int>? ruleId,
Value<RuleScene?>? scene,
Value<String?>? order,
Value<int>? rowid,
}) {
return ProfileRuleLinksCompanion(
id: id ?? this.id,
profileId: profileId ?? this.profileId,
ruleId: ruleId ?? this.ruleId,
scene: scene ?? this.scene,
order: order ?? this.order,
rowid: rowid ?? this.rowid,
);
}
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (id.present) {
map['id'] = Variable<String>(id.value);
}
if (profileId.present) {
map['profile_id'] = Variable<int>(profileId.value);
}
if (ruleId.present) {
map['rule_id'] = Variable<int>(ruleId.value);
}
if (scene.present) {
map['scene'] = Variable<String>(
$ProfileRuleLinksTable.$converterscenen.toSql(scene.value),
);
}
if (order.present) {
map['order'] = Variable<String>(order.value);
}
if (rowid.present) {
map['rowid'] = Variable<int>(rowid.value);
}
return map;
}
@override
String toString() {
return (StringBuffer('ProfileRuleLinksCompanion(')
..write('id: $id, ')
..write('profileId: $profileId, ')
..write('ruleId: $ruleId, ')
..write('scene: $scene, ')
..write('order: $order, ')
..write('rowid: $rowid')
..write(')'))
.toString();
}
}
class $ProxyGroupsTable extends ProxyGroups
with TableInfo<$ProxyGroupsTable, RawProxyGroup> {
@override
final GeneratedDatabase attachedDatabase;
final String? _alias;
$ProxyGroupsTable(this.attachedDatabase, [this._alias]);
static const VerificationMeta _profileIdMeta = const VerificationMeta(
'profileId',
);
@override
late final GeneratedColumn<int> profileId = GeneratedColumn<int>(
'profile_id',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'REFERENCES profiles (id) ON DELETE CASCADE',
),
);
static const VerificationMeta _nameMeta = const VerificationMeta('name');
@override
late final GeneratedColumn<String> name = GeneratedColumn<String>(
'name',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
static const VerificationMeta _typeMeta = const VerificationMeta('type');
@override
late final GeneratedColumn<String> type = GeneratedColumn<String>(
'type',
aliasedName,
false,
type: DriftSqlType.string,
requiredDuringInsert: true,
);
@override
late final GeneratedColumnWithTypeConverter<List<String>?, String> proxies =
GeneratedColumn<String>(
'proxies',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
).withConverter<List<String>?>($ProxyGroupsTable.$converterproxiesn);
@override
late final GeneratedColumnWithTypeConverter<List<String>?, String> use =
GeneratedColumn<String>(
'use',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
).withConverter<List<String>?>($ProxyGroupsTable.$converterusen);
static const VerificationMeta _urlMeta = const VerificationMeta('url');
@override
late final GeneratedColumn<String> url = GeneratedColumn<String>(
'url',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _intervalMeta = const VerificationMeta(
'interval',
);
@override
late final GeneratedColumn<int> interval = GeneratedColumn<int>(
'interval',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _timeoutMeta = const VerificationMeta(
'timeout',
);
@override
late final GeneratedColumn<int> timeout = GeneratedColumn<int>(
'timeout',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _maxFailedTimesMeta = const VerificationMeta(
'maxFailedTimes',
);
@override
late final GeneratedColumn<int> maxFailedTimes = GeneratedColumn<int>(
'max_failed_times',
aliasedName,
true,
type: DriftSqlType.int,
requiredDuringInsert: false,
);
static const VerificationMeta _lazyMeta = const VerificationMeta('lazy');
@override
late final GeneratedColumn<bool> lazy = GeneratedColumn<bool>(
'lazy',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("lazy" IN (0, 1))',
),
);
static const VerificationMeta _disableUDPMeta = const VerificationMeta(
'disableUDP',
);
@override
late final GeneratedColumn<bool> disableUDP = GeneratedColumn<bool>(
'disable_u_d_p',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("disable_u_d_p" IN (0, 1))',
),
);
static const VerificationMeta _filterMeta = const VerificationMeta('filter');
@override
late final GeneratedColumn<String> filter = GeneratedColumn<String>(
'filter',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _excludeFilterMeta = const VerificationMeta(
'excludeFilter',
);
@override
late final GeneratedColumn<String> excludeFilter = GeneratedColumn<String>(
'exclude_filter',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _excludeTypeMeta = const VerificationMeta(
'excludeType',
);
@override
late final GeneratedColumn<String> excludeType = GeneratedColumn<String>(
'exclude_type',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _expectedStatusMeta = const VerificationMeta(
'expectedStatus',
);
@override
late final GeneratedColumn<String> expectedStatus = GeneratedColumn<String>(
'expected_status',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _includeAllMeta = const VerificationMeta(
'includeAll',
);
@override
late final GeneratedColumn<bool> includeAll = GeneratedColumn<bool>(
'include_all',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("include_all" IN (0, 1))',
),
);
static const VerificationMeta _includeAllProxiesMeta = const VerificationMeta(
'includeAllProxies',
);
@override
late final GeneratedColumn<bool> includeAllProxies = GeneratedColumn<bool>(
'include_all_proxies',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("include_all_proxies" IN (0, 1))',
),
);
static const VerificationMeta _includeAllProvidersMeta =
const VerificationMeta('includeAllProviders');
@override
late final GeneratedColumn<bool> includeAllProviders = GeneratedColumn<bool>(
'include_all_providers',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("include_all_providers" IN (0, 1))',
),
);
static const VerificationMeta _hiddenMeta = const VerificationMeta('hidden');
@override
late final GeneratedColumn<bool> hidden = GeneratedColumn<bool>(
'hidden',
aliasedName,
true,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("hidden" IN (0, 1))',
),
);
static const VerificationMeta _iconMeta = const VerificationMeta('icon');
@override
late final GeneratedColumn<String> icon = GeneratedColumn<String>(
'icon',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
static const VerificationMeta _orderMeta = const VerificationMeta('order');
@override
late final GeneratedColumn<String> order = GeneratedColumn<String>(
'order',
aliasedName,
true,
type: DriftSqlType.string,
requiredDuringInsert: false,
);
@override
List<GeneratedColumn> get $columns => [
profileId,
name,
type,
proxies,
use,
url,
interval,
timeout,
maxFailedTimes,
lazy,
disableUDP,
filter,
excludeFilter,
excludeType,
expectedStatus,
includeAll,
includeAllProxies,
includeAllProviders,
hidden,
icon,
order,
];
@override
String get aliasedName => _alias ?? actualTableName;
@override
String get actualTableName => $name;
static const String $name = 'proxy_groups';
@override
VerificationContext validateIntegrity(
Insertable<RawProxyGroup> instance, {
bool isInserting = false,
}) {
final context = VerificationContext();
final data = instance.toColumns(true);
if (data.containsKey('profile_id')) {
context.handle(
_profileIdMeta,
profileId.isAcceptableOrUnknown(data['profile_id']!, _profileIdMeta),
);
}
if (data.containsKey('name')) {
context.handle(
_nameMeta,
name.isAcceptableOrUnknown(data['name']!, _nameMeta),
);
} else if (isInserting) {
context.missing(_nameMeta);
}
if (data.containsKey('type')) {
context.handle(
_typeMeta,
type.isAcceptableOrUnknown(data['type']!, _typeMeta),
);
} else if (isInserting) {
context.missing(_typeMeta);
}
if (data.containsKey('url')) {
context.handle(
_urlMeta,
url.isAcceptableOrUnknown(data['url']!, _urlMeta),
);
}
if (data.containsKey('interval')) {
context.handle(
_intervalMeta,
interval.isAcceptableOrUnknown(data['interval']!, _intervalMeta),
);
}
if (data.containsKey('timeout')) {
context.handle(
_timeoutMeta,
timeout.isAcceptableOrUnknown(data['timeout']!, _timeoutMeta),
);
}
if (data.containsKey('max_failed_times')) {
context.handle(
_maxFailedTimesMeta,
maxFailedTimes.isAcceptableOrUnknown(
data['max_failed_times']!,
_maxFailedTimesMeta,
),
);
}
if (data.containsKey('lazy')) {
context.handle(
_lazyMeta,
lazy.isAcceptableOrUnknown(data['lazy']!, _lazyMeta),
);
}
if (data.containsKey('disable_u_d_p')) {
context.handle(
_disableUDPMeta,
disableUDP.isAcceptableOrUnknown(
data['disable_u_d_p']!,
_disableUDPMeta,
),
);
}
if (data.containsKey('filter')) {
context.handle(
_filterMeta,
filter.isAcceptableOrUnknown(data['filter']!, _filterMeta),
);
}
if (data.containsKey('exclude_filter')) {
context.handle(
_excludeFilterMeta,
excludeFilter.isAcceptableOrUnknown(
data['exclude_filter']!,
_excludeFilterMeta,
),
);
}
if (data.containsKey('exclude_type')) {
context.handle(
_excludeTypeMeta,
excludeType.isAcceptableOrUnknown(
data['exclude_type']!,
_excludeTypeMeta,
),
);
}
if (data.containsKey('expected_status')) {
context.handle(
_expectedStatusMeta,
expectedStatus.isAcceptableOrUnknown(
data['expected_status']!,
_expectedStatusMeta,
),
);
}
if (data.containsKey('include_all')) {
context.handle(
_includeAllMeta,
includeAll.isAcceptableOrUnknown(data['include_all']!, _includeAllMeta),
);
}
if (data.containsKey('include_all_proxies')) {
context.handle(
_includeAllProxiesMeta,
includeAllProxies.isAcceptableOrUnknown(
data['include_all_proxies']!,
_includeAllProxiesMeta,
),
);
}
if (data.containsKey('include_all_providers')) {
context.handle(
_includeAllProvidersMeta,
includeAllProviders.isAcceptableOrUnknown(
data['include_all_providers']!,
_includeAllProvidersMeta,
),
);
}
if (data.containsKey('hidden')) {
context.handle(
_hiddenMeta,
hidden.isAcceptableOrUnknown(data['hidden']!, _hiddenMeta),
);
}
if (data.containsKey('icon')) {
context.handle(
_iconMeta,
icon.isAcceptableOrUnknown(data['icon']!, _iconMeta),
);
}
if (data.containsKey('order')) {
context.handle(
_orderMeta,
order.isAcceptableOrUnknown(data['order']!, _orderMeta),
);
}
return context;
}
@override
Set<GeneratedColumn> get $primaryKey => {profileId, name};
@override
RawProxyGroup map(Map<String, dynamic> data, {String? tablePrefix}) {
final effectivePrefix = tablePrefix != null ? '$tablePrefix.' : '';
return RawProxyGroup(
profileId: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}profile_id'],
),
name: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}name'],
)!,
type: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}type'],
)!,
proxies: $ProxyGroupsTable.$converterproxiesn.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}proxies'],
),
),
use: $ProxyGroupsTable.$converterusen.fromSql(
attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}use'],
),
),
url: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}url'],
),
interval: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}interval'],
),
timeout: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}timeout'],
),
maxFailedTimes: attachedDatabase.typeMapping.read(
DriftSqlType.int,
data['${effectivePrefix}max_failed_times'],
),
lazy: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}lazy'],
),
disableUDP: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}disable_u_d_p'],
),
filter: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}filter'],
),
excludeFilter: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}exclude_filter'],
),
excludeType: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}exclude_type'],
),
expectedStatus: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}expected_status'],
),
includeAll: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}include_all'],
),
includeAllProxies: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}include_all_proxies'],
),
includeAllProviders: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}include_all_providers'],
),
hidden: attachedDatabase.typeMapping.read(
DriftSqlType.bool,
data['${effectivePrefix}hidden'],
),
icon: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}icon'],
),
order: attachedDatabase.typeMapping.read(
DriftSqlType.string,
data['${effectivePrefix}order'],
),
);
}
@override
$ProxyGroupsTable createAlias(String alias) {
return $ProxyGroupsTable(attachedDatabase, alias);
}
static TypeConverter<List<String>, String> $converterproxies =
const StringListConverter();
static TypeConverter<List<String>?, String?> $converterproxiesn =
NullAwareTypeConverter.wrap($converterproxies);
static TypeConverter<List<String>, String> $converteruse =
const StringListConverter();
static TypeConverter<List<String>?, String?> $converterusen =
NullAwareTypeConverter.wrap($converteruse);
}
class RawProxyGroup extends DataClass implements Insertable<RawProxyGroup> {
final int? profileId;
final String name;
final String type;
final List<String>? proxies;
final List<String>? use;
final String? url;
final int? interval;
final int? timeout;
final int? maxFailedTimes;
final bool? lazy;
final bool? disableUDP;
final String? filter;
final String? excludeFilter;
final String? excludeType;
final String? expectedStatus;
final bool? includeAll;
final bool? includeAllProxies;
final bool? includeAllProviders;
final bool? hidden;
final String? icon;
final String? order;
const RawProxyGroup({
this.profileId,
required this.name,
required this.type,
this.proxies,
this.use,
this.url,
this.interval,
this.timeout,
this.maxFailedTimes,
this.lazy,
this.disableUDP,
this.filter,
this.excludeFilter,
this.excludeType,
this.expectedStatus,
this.includeAll,
this.includeAllProxies,
this.includeAllProviders,
this.hidden,
this.icon,
this.order,
});
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (!nullToAbsent || profileId != null) {
map['profile_id'] = Variable<int>(profileId);
}
map['name'] = Variable<String>(name);
map['type'] = Variable<String>(type);
if (!nullToAbsent || proxies != null) {
map['proxies'] = Variable<String>(
$ProxyGroupsTable.$converterproxiesn.toSql(proxies),
);
}
if (!nullToAbsent || use != null) {
map['use'] = Variable<String>(
$ProxyGroupsTable.$converterusen.toSql(use),
);
}
if (!nullToAbsent || url != null) {
map['url'] = Variable<String>(url);
}
if (!nullToAbsent || interval != null) {
map['interval'] = Variable<int>(interval);
}
if (!nullToAbsent || timeout != null) {
map['timeout'] = Variable<int>(timeout);
}
if (!nullToAbsent || maxFailedTimes != null) {
map['max_failed_times'] = Variable<int>(maxFailedTimes);
}
if (!nullToAbsent || lazy != null) {
map['lazy'] = Variable<bool>(lazy);
}
if (!nullToAbsent || disableUDP != null) {
map['disable_u_d_p'] = Variable<bool>(disableUDP);
}
if (!nullToAbsent || filter != null) {
map['filter'] = Variable<String>(filter);
}
if (!nullToAbsent || excludeFilter != null) {
map['exclude_filter'] = Variable<String>(excludeFilter);
}
if (!nullToAbsent || excludeType != null) {
map['exclude_type'] = Variable<String>(excludeType);
}
if (!nullToAbsent || expectedStatus != null) {
map['expected_status'] = Variable<String>(expectedStatus);
}
if (!nullToAbsent || includeAll != null) {
map['include_all'] = Variable<bool>(includeAll);
}
if (!nullToAbsent || includeAllProxies != null) {
map['include_all_proxies'] = Variable<bool>(includeAllProxies);
}
if (!nullToAbsent || includeAllProviders != null) {
map['include_all_providers'] = Variable<bool>(includeAllProviders);
}
if (!nullToAbsent || hidden != null) {
map['hidden'] = Variable<bool>(hidden);
}
if (!nullToAbsent || icon != null) {
map['icon'] = Variable<String>(icon);
}
if (!nullToAbsent || order != null) {
map['order'] = Variable<String>(order);
}
return map;
}
ProxyGroupsCompanion toCompanion(bool nullToAbsent) {
return ProxyGroupsCompanion(
profileId: profileId == null && nullToAbsent
? const Value.absent()
: Value(profileId),
name: Value(name),
type: Value(type),
proxies: proxies == null && nullToAbsent
? const Value.absent()
: Value(proxies),
use: use == null && nullToAbsent ? const Value.absent() : Value(use),
url: url == null && nullToAbsent ? const Value.absent() : Value(url),
interval: interval == null && nullToAbsent
? const Value.absent()
: Value(interval),
timeout: timeout == null && nullToAbsent
? const Value.absent()
: Value(timeout),
maxFailedTimes: maxFailedTimes == null && nullToAbsent
? const Value.absent()
: Value(maxFailedTimes),
lazy: lazy == null && nullToAbsent ? const Value.absent() : Value(lazy),
disableUDP: disableUDP == null && nullToAbsent
? const Value.absent()
: Value(disableUDP),
filter: filter == null && nullToAbsent
? const Value.absent()
: Value(filter),
excludeFilter: excludeFilter == null && nullToAbsent
? const Value.absent()
: Value(excludeFilter),
excludeType: excludeType == null && nullToAbsent
? const Value.absent()
: Value(excludeType),
expectedStatus: expectedStatus == null && nullToAbsent
? const Value.absent()
: Value(expectedStatus),
includeAll: includeAll == null && nullToAbsent
? const Value.absent()
: Value(includeAll),
includeAllProxies: includeAllProxies == null && nullToAbsent
? const Value.absent()
: Value(includeAllProxies),
includeAllProviders: includeAllProviders == null && nullToAbsent
? const Value.absent()
: Value(includeAllProviders),
hidden: hidden == null && nullToAbsent
? const Value.absent()
: Value(hidden),
icon: icon == null && nullToAbsent ? const Value.absent() : Value(icon),
order: order == null && nullToAbsent
? const Value.absent()
: Value(order),
);
}
factory RawProxyGroup.fromJson(
Map<String, dynamic> json, {
ValueSerializer? serializer,
}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return RawProxyGroup(
profileId: serializer.fromJson<int?>(json['profileId']),
name: serializer.fromJson<String>(json['name']),
type: serializer.fromJson<String>(json['type']),
proxies: serializer.fromJson<List<String>?>(json['proxies']),
use: serializer.fromJson<List<String>?>(json['use']),
url: serializer.fromJson<String?>(json['url']),
interval: serializer.fromJson<int?>(json['interval']),
timeout: serializer.fromJson<int?>(json['timeout']),
maxFailedTimes: serializer.fromJson<int?>(json['maxFailedTimes']),
lazy: serializer.fromJson<bool?>(json['lazy']),
disableUDP: serializer.fromJson<bool?>(json['disableUDP']),
filter: serializer.fromJson<String?>(json['filter']),
excludeFilter: serializer.fromJson<String?>(json['excludeFilter']),
excludeType: serializer.fromJson<String?>(json['excludeType']),
expectedStatus: serializer.fromJson<String?>(json['expectedStatus']),
includeAll: serializer.fromJson<bool?>(json['includeAll']),
includeAllProxies: serializer.fromJson<bool?>(json['includeAllProxies']),
includeAllProviders: serializer.fromJson<bool?>(
json['includeAllProviders'],
),
hidden: serializer.fromJson<bool?>(json['hidden']),
icon: serializer.fromJson<String?>(json['icon']),
order: serializer.fromJson<String?>(json['order']),
);
}
@override
Map<String, dynamic> toJson({ValueSerializer? serializer}) {
serializer ??= driftRuntimeOptions.defaultSerializer;
return <String, dynamic>{
'profileId': serializer.toJson<int?>(profileId),
'name': serializer.toJson<String>(name),
'type': serializer.toJson<String>(type),
'proxies': serializer.toJson<List<String>?>(proxies),
'use': serializer.toJson<List<String>?>(use),
'url': serializer.toJson<String?>(url),
'interval': serializer.toJson<int?>(interval),
'timeout': serializer.toJson<int?>(timeout),
'maxFailedTimes': serializer.toJson<int?>(maxFailedTimes),
'lazy': serializer.toJson<bool?>(lazy),
'disableUDP': serializer.toJson<bool?>(disableUDP),
'filter': serializer.toJson<String?>(filter),
'excludeFilter': serializer.toJson<String?>(excludeFilter),
'excludeType': serializer.toJson<String?>(excludeType),
'expectedStatus': serializer.toJson<String?>(expectedStatus),
'includeAll': serializer.toJson<bool?>(includeAll),
'includeAllProxies': serializer.toJson<bool?>(includeAllProxies),
'includeAllProviders': serializer.toJson<bool?>(includeAllProviders),
'hidden': serializer.toJson<bool?>(hidden),
'icon': serializer.toJson<String?>(icon),
'order': serializer.toJson<String?>(order),
};
}
RawProxyGroup copyWith({
Value<int?> profileId = const Value.absent(),
String? name,
String? type,
Value<List<String>?> proxies = const Value.absent(),
Value<List<String>?> use = const Value.absent(),
Value<String?> url = const Value.absent(),
Value<int?> interval = const Value.absent(),
Value<int?> timeout = const Value.absent(),
Value<int?> maxFailedTimes = const Value.absent(),
Value<bool?> lazy = const Value.absent(),
Value<bool?> disableUDP = const Value.absent(),
Value<String?> filter = const Value.absent(),
Value<String?> excludeFilter = const Value.absent(),
Value<String?> excludeType = const Value.absent(),
Value<String?> expectedStatus = const Value.absent(),
Value<bool?> includeAll = const Value.absent(),
Value<bool?> includeAllProxies = const Value.absent(),
Value<bool?> includeAllProviders = const Value.absent(),
Value<bool?> hidden = const Value.absent(),
Value<String?> icon = const Value.absent(),
Value<String?> order = const Value.absent(),
}) => RawProxyGroup(
profileId: profileId.present ? profileId.value : this.profileId,
name: name ?? this.name,
type: type ?? this.type,
proxies: proxies.present ? proxies.value : this.proxies,
use: use.present ? use.value : this.use,
url: url.present ? url.value : this.url,
interval: interval.present ? interval.value : this.interval,
timeout: timeout.present ? timeout.value : this.timeout,
maxFailedTimes: maxFailedTimes.present
? maxFailedTimes.value
: this.maxFailedTimes,
lazy: lazy.present ? lazy.value : this.lazy,
disableUDP: disableUDP.present ? disableUDP.value : this.disableUDP,
filter: filter.present ? filter.value : this.filter,
excludeFilter: excludeFilter.present
? excludeFilter.value
: this.excludeFilter,
excludeType: excludeType.present ? excludeType.value : this.excludeType,
expectedStatus: expectedStatus.present
? expectedStatus.value
: this.expectedStatus,
includeAll: includeAll.present ? includeAll.value : this.includeAll,
includeAllProxies: includeAllProxies.present
? includeAllProxies.value
: this.includeAllProxies,
includeAllProviders: includeAllProviders.present
? includeAllProviders.value
: this.includeAllProviders,
hidden: hidden.present ? hidden.value : this.hidden,
icon: icon.present ? icon.value : this.icon,
order: order.present ? order.value : this.order,
);
RawProxyGroup copyWithCompanion(ProxyGroupsCompanion data) {
return RawProxyGroup(
profileId: data.profileId.present ? data.profileId.value : this.profileId,
name: data.name.present ? data.name.value : this.name,
type: data.type.present ? data.type.value : this.type,
proxies: data.proxies.present ? data.proxies.value : this.proxies,
use: data.use.present ? data.use.value : this.use,
url: data.url.present ? data.url.value : this.url,
interval: data.interval.present ? data.interval.value : this.interval,
timeout: data.timeout.present ? data.timeout.value : this.timeout,
maxFailedTimes: data.maxFailedTimes.present
? data.maxFailedTimes.value
: this.maxFailedTimes,
lazy: data.lazy.present ? data.lazy.value : this.lazy,
disableUDP: data.disableUDP.present
? data.disableUDP.value
: this.disableUDP,
filter: data.filter.present ? data.filter.value : this.filter,
excludeFilter: data.excludeFilter.present
? data.excludeFilter.value
: this.excludeFilter,
excludeType: data.excludeType.present
? data.excludeType.value
: this.excludeType,
expectedStatus: data.expectedStatus.present
? data.expectedStatus.value
: this.expectedStatus,
includeAll: data.includeAll.present
? data.includeAll.value
: this.includeAll,
includeAllProxies: data.includeAllProxies.present
? data.includeAllProxies.value
: this.includeAllProxies,
includeAllProviders: data.includeAllProviders.present
? data.includeAllProviders.value
: this.includeAllProviders,
hidden: data.hidden.present ? data.hidden.value : this.hidden,
icon: data.icon.present ? data.icon.value : this.icon,
order: data.order.present ? data.order.value : this.order,
);
}
@override
String toString() {
return (StringBuffer('RawProxyGroup(')
..write('profileId: $profileId, ')
..write('name: $name, ')
..write('type: $type, ')
..write('proxies: $proxies, ')
..write('use: $use, ')
..write('url: $url, ')
..write('interval: $interval, ')
..write('timeout: $timeout, ')
..write('maxFailedTimes: $maxFailedTimes, ')
..write('lazy: $lazy, ')
..write('disableUDP: $disableUDP, ')
..write('filter: $filter, ')
..write('excludeFilter: $excludeFilter, ')
..write('excludeType: $excludeType, ')
..write('expectedStatus: $expectedStatus, ')
..write('includeAll: $includeAll, ')
..write('includeAllProxies: $includeAllProxies, ')
..write('includeAllProviders: $includeAllProviders, ')
..write('hidden: $hidden, ')
..write('icon: $icon, ')
..write('order: $order')
..write(')'))
.toString();
}
@override
int get hashCode => Object.hashAll([
profileId,
name,
type,
proxies,
use,
url,
interval,
timeout,
maxFailedTimes,
lazy,
disableUDP,
filter,
excludeFilter,
excludeType,
expectedStatus,
includeAll,
includeAllProxies,
includeAllProviders,
hidden,
icon,
order,
]);
@override
bool operator ==(Object other) =>
identical(this, other) ||
(other is RawProxyGroup &&
other.profileId == this.profileId &&
other.name == this.name &&
other.type == this.type &&
other.proxies == this.proxies &&
other.use == this.use &&
other.url == this.url &&
other.interval == this.interval &&
other.timeout == this.timeout &&
other.maxFailedTimes == this.maxFailedTimes &&
other.lazy == this.lazy &&
other.disableUDP == this.disableUDP &&
other.filter == this.filter &&
other.excludeFilter == this.excludeFilter &&
other.excludeType == this.excludeType &&
other.expectedStatus == this.expectedStatus &&
other.includeAll == this.includeAll &&
other.includeAllProxies == this.includeAllProxies &&
other.includeAllProviders == this.includeAllProviders &&
other.hidden == this.hidden &&
other.icon == this.icon &&
other.order == this.order);
}
class ProxyGroupsCompanion extends UpdateCompanion<RawProxyGroup> {
final Value<int?> profileId;
final Value<String> name;
final Value<String> type;
final Value<List<String>?> proxies;
final Value<List<String>?> use;
final Value<String?> url;
final Value<int?> interval;
final Value<int?> timeout;
final Value<int?> maxFailedTimes;
final Value<bool?> lazy;
final Value<bool?> disableUDP;
final Value<String?> filter;
final Value<String?> excludeFilter;
final Value<String?> excludeType;
final Value<String?> expectedStatus;
final Value<bool?> includeAll;
final Value<bool?> includeAllProxies;
final Value<bool?> includeAllProviders;
final Value<bool?> hidden;
final Value<String?> icon;
final Value<String?> order;
final Value<int> rowid;
const ProxyGroupsCompanion({
this.profileId = const Value.absent(),
this.name = const Value.absent(),
this.type = const Value.absent(),
this.proxies = const Value.absent(),
this.use = const Value.absent(),
this.url = const Value.absent(),
this.interval = const Value.absent(),
this.timeout = const Value.absent(),
this.maxFailedTimes = const Value.absent(),
this.lazy = const Value.absent(),
this.disableUDP = const Value.absent(),
this.filter = const Value.absent(),
this.excludeFilter = const Value.absent(),
this.excludeType = const Value.absent(),
this.expectedStatus = const Value.absent(),
this.includeAll = const Value.absent(),
this.includeAllProxies = const Value.absent(),
this.includeAllProviders = const Value.absent(),
this.hidden = const Value.absent(),
this.icon = const Value.absent(),
this.order = const Value.absent(),
this.rowid = const Value.absent(),
});
ProxyGroupsCompanion.insert({
this.profileId = const Value.absent(),
required String name,
required String type,
this.proxies = const Value.absent(),
this.use = const Value.absent(),
this.url = const Value.absent(),
this.interval = const Value.absent(),
this.timeout = const Value.absent(),
this.maxFailedTimes = const Value.absent(),
this.lazy = const Value.absent(),
this.disableUDP = const Value.absent(),
this.filter = const Value.absent(),
this.excludeFilter = const Value.absent(),
this.excludeType = const Value.absent(),
this.expectedStatus = const Value.absent(),
this.includeAll = const Value.absent(),
this.includeAllProxies = const Value.absent(),
this.includeAllProviders = const Value.absent(),
this.hidden = const Value.absent(),
this.icon = const Value.absent(),
this.order = const Value.absent(),
this.rowid = const Value.absent(),
}) : name = Value(name),
type = Value(type);
static Insertable<RawProxyGroup> custom({
Expression<int>? profileId,
Expression<String>? name,
Expression<String>? type,
Expression<String>? proxies,
Expression<String>? use,
Expression<String>? url,
Expression<int>? interval,
Expression<int>? timeout,
Expression<int>? maxFailedTimes,
Expression<bool>? lazy,
Expression<bool>? disableUDP,
Expression<String>? filter,
Expression<String>? excludeFilter,
Expression<String>? excludeType,
Expression<String>? expectedStatus,
Expression<bool>? includeAll,
Expression<bool>? includeAllProxies,
Expression<bool>? includeAllProviders,
Expression<bool>? hidden,
Expression<String>? icon,
Expression<String>? order,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (profileId != null) 'profile_id': profileId,
if (name != null) 'name': name,
if (type != null) 'type': type,
if (proxies != null) 'proxies': proxies,
if (use != null) 'use': use,
if (url != null) 'url': url,
if (interval != null) 'interval': interval,
if (timeout != null) 'timeout': timeout,
if (maxFailedTimes != null) 'max_failed_times': maxFailedTimes,
if (lazy != null) 'lazy': lazy,
if (disableUDP != null) 'disable_u_d_p': disableUDP,
if (filter != null) 'filter': filter,
if (excludeFilter != null) 'exclude_filter': excludeFilter,
if (excludeType != null) 'exclude_type': excludeType,
if (expectedStatus != null) 'expected_status': expectedStatus,
if (includeAll != null) 'include_all': includeAll,
if (includeAllProxies != null) 'include_all_proxies': includeAllProxies,
if (includeAllProviders != null)
'include_all_providers': includeAllProviders,
if (hidden != null) 'hidden': hidden,
if (icon != null) 'icon': icon,
if (order != null) 'order': order,
if (rowid != null) 'rowid': rowid,
});
}
ProxyGroupsCompanion copyWith({
Value<int?>? profileId,
Value<String>? name,
Value<String>? type,
Value<List<String>?>? proxies,
Value<List<String>?>? use,
Value<String?>? url,
Value<int?>? interval,
Value<int?>? timeout,
Value<int?>? maxFailedTimes,
Value<bool?>? lazy,
Value<bool?>? disableUDP,
Value<String?>? filter,
Value<String?>? excludeFilter,
Value<String?>? excludeType,
Value<String?>? expectedStatus,
Value<bool?>? includeAll,
Value<bool?>? includeAllProxies,
Value<bool?>? includeAllProviders,
Value<bool?>? hidden,
Value<String?>? icon,
Value<String?>? order,
Value<int>? rowid,
}) {
return ProxyGroupsCompanion(
profileId: profileId ?? this.profileId,
name: name ?? this.name,
type: type ?? this.type,
proxies: proxies ?? this.proxies,
use: use ?? this.use,
url: url ?? this.url,
interval: interval ?? this.interval,
timeout: timeout ?? this.timeout,
maxFailedTimes: maxFailedTimes ?? this.maxFailedTimes,
lazy: lazy ?? this.lazy,
disableUDP: disableUDP ?? this.disableUDP,
filter: filter ?? this.filter,
excludeFilter: excludeFilter ?? this.excludeFilter,
excludeType: excludeType ?? this.excludeType,
expectedStatus: expectedStatus ?? this.expectedStatus,
includeAll: includeAll ?? this.includeAll,
includeAllProxies: includeAllProxies ?? this.includeAllProxies,
includeAllProviders: includeAllProviders ?? this.includeAllProviders,
hidden: hidden ?? this.hidden,
icon: icon ?? this.icon,
order: order ?? this.order,
rowid: rowid ?? this.rowid,
);
}
@override
Map<String, Expression> toColumns(bool nullToAbsent) {
final map = <String, Expression>{};
if (profileId.present) {
map['profile_id'] = Variable<int>(profileId.value);
}
if (name.present) {
map['name'] = Variable<String>(name.value);
}
if (type.present) {
map['type'] = Variable<String>(type.value);
}
if (proxies.present) {
map['proxies'] = Variable<String>(
$ProxyGroupsTable.$converterproxiesn.toSql(proxies.value),
);
}
if (use.present) {
map['use'] = Variable<String>(
$ProxyGroupsTable.$converterusen.toSql(use.value),
);
}
if (url.present) {
map['url'] = Variable<String>(url.value);
}
if (interval.present) {
map['interval'] = Variable<int>(interval.value);
}
if (timeout.present) {
map['timeout'] = Variable<int>(timeout.value);
}
if (maxFailedTimes.present) {
map['max_failed_times'] = Variable<int>(maxFailedTimes.value);
}
if (lazy.present) {
map['lazy'] = Variable<bool>(lazy.value);
}
if (disableUDP.present) {
map['disable_u_d_p'] = Variable<bool>(disableUDP.value);
}
if (filter.present) {
map['filter'] = Variable<String>(filter.value);
}
if (excludeFilter.present) {
map['exclude_filter'] = Variable<String>(excludeFilter.value);
}
if (excludeType.present) {
map['exclude_type'] = Variable<String>(excludeType.value);
}
if (expectedStatus.present) {
map['expected_status'] = Variable<String>(expectedStatus.value);
}
if (includeAll.present) {
map['include_all'] = Variable<bool>(includeAll.value);
}
if (includeAllProxies.present) {
map['include_all_proxies'] = Variable<bool>(includeAllProxies.value);
}
if (includeAllProviders.present) {
map['include_all_providers'] = Variable<bool>(includeAllProviders.value);
}
if (hidden.present) {
map['hidden'] = Variable<bool>(hidden.value);
}
if (icon.present) {
map['icon'] = Variable<String>(icon.value);
}
if (order.present) {
map['order'] = Variable<String>(order.value);
}
if (rowid.present) {
map['rowid'] = Variable<int>(rowid.value);
}
return map;
}
@override
String toString() {
return (StringBuffer('ProxyGroupsCompanion(')
..write('profileId: $profileId, ')
..write('name: $name, ')
..write('type: $type, ')
..write('proxies: $proxies, ')
..write('use: $use, ')
..write('url: $url, ')
..write('interval: $interval, ')
..write('timeout: $timeout, ')
..write('maxFailedTimes: $maxFailedTimes, ')
..write('lazy: $lazy, ')
..write('disableUDP: $disableUDP, ')
..write('filter: $filter, ')
..write('excludeFilter: $excludeFilter, ')
..write('excludeType: $excludeType, ')
..write('expectedStatus: $expectedStatus, ')
..write('includeAll: $includeAll, ')
..write('includeAllProxies: $includeAllProxies, ')
..write('includeAllProviders: $includeAllProviders, ')
..write('hidden: $hidden, ')
..write('icon: $icon, ')
..write('order: $order, ')
..write('rowid: $rowid')
..write(')'))
.toString();
}
}
abstract class _$Database extends GeneratedDatabase {
_$Database(QueryExecutor e) : super(e);
$DatabaseManager get managers => $DatabaseManager(this);
late final $ProfilesTable profiles = $ProfilesTable(this);
late final $ScriptsTable scripts = $ScriptsTable(this);
late final $RulesTable rules = $RulesTable(this);
late final $ProfileRuleLinksTable profileRuleLinks = $ProfileRuleLinksTable(
this,
);
late final $ProxyGroupsTable proxyGroups = $ProxyGroupsTable(this);
late final Index idxProfileSceneOrder = Index(
'idx_profile_scene_order',
'CREATE INDEX idx_profile_scene_order ON profile_rule_mapping (profile_id, scene, "order")',
);
late final Index idxProfileNameOrder = Index(
'idx_profile_name_order',
'CREATE INDEX idx_profile_name_order ON proxy_groups (profile_id, name, "order")',
);
late final ProfilesDao profilesDao = ProfilesDao(this as Database);
late final ScriptsDao scriptsDao = ScriptsDao(this as Database);
late final RulesDao rulesDao = RulesDao(this as Database);
late final ProxyGroupsDao proxyGroupsDao = ProxyGroupsDao(this as Database);
@override
Iterable<TableInfo<Table, Object?>> get allTables =>
allSchemaEntities.whereType<TableInfo<Table, Object?>>();
@override
List<DatabaseSchemaEntity> get allSchemaEntities => [
profiles,
scripts,
rules,
profileRuleLinks,
proxyGroups,
idxProfileSceneOrder,
idxProfileNameOrder,
];
@override
StreamQueryUpdateRules get streamUpdateRules => const StreamQueryUpdateRules([
WritePropagation(
on: TableUpdateQuery.onTableName(
'profiles',
limitUpdateKind: UpdateKind.delete,
),
result: [TableUpdate('profile_rule_mapping', kind: UpdateKind.delete)],
),
WritePropagation(
on: TableUpdateQuery.onTableName(
'rules',
limitUpdateKind: UpdateKind.delete,
),
result: [TableUpdate('profile_rule_mapping', kind: UpdateKind.delete)],
),
WritePropagation(
on: TableUpdateQuery.onTableName(
'profiles',
limitUpdateKind: UpdateKind.delete,
),
result: [TableUpdate('proxy_groups', kind: UpdateKind.delete)],
),
]);
}
typedef $$ProfilesTableCreateCompanionBuilder =
ProfilesCompanion Function({
Value<int> id,
required String label,
Value<String?> currentGroupName,
required String url,
Value<DateTime?> lastUpdateDate,
required OverwriteType overwriteType,
Value<int?> scriptId,
required int autoUpdateDurationMillis,
Value<SubscriptionInfo?> subscriptionInfo,
required bool autoUpdate,
required Map<String, String> selectedMap,
required Set<String> unfoldSet,
Value<int?> order,
});
typedef $$ProfilesTableUpdateCompanionBuilder =
ProfilesCompanion Function({
Value<int> id,
Value<String> label,
Value<String?> currentGroupName,
Value<String> url,
Value<DateTime?> lastUpdateDate,
Value<OverwriteType> overwriteType,
Value<int?> scriptId,
Value<int> autoUpdateDurationMillis,
Value<SubscriptionInfo?> subscriptionInfo,
Value<bool> autoUpdate,
Value<Map<String, String>> selectedMap,
Value<Set<String>> unfoldSet,
Value<int?> order,
});
final class $$ProfilesTableReferences
extends BaseReferences<_$Database, $ProfilesTable, RawProfile> {
$$ProfilesTableReferences(super.$_db, super.$_table, super.$_typedResult);
static MultiTypedResultKey<$ProfileRuleLinksTable, List<RawProfileRuleLink>>
_profileRuleLinksRefsTable(_$Database db) => MultiTypedResultKey.fromTable(
db.profileRuleLinks,
aliasName: $_aliasNameGenerator(
db.profiles.id,
db.profileRuleLinks.profileId,
),
);
$$ProfileRuleLinksTableProcessedTableManager get profileRuleLinksRefs {
final manager = $$ProfileRuleLinksTableTableManager(
$_db,
$_db.profileRuleLinks,
).filter((f) => f.profileId.id.sqlEquals($_itemColumn<int>('id')!));
final cache = $_typedResult.readTableOrNull(
_profileRuleLinksRefsTable($_db),
);
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: cache),
);
}
static MultiTypedResultKey<$ProxyGroupsTable, List<RawProxyGroup>>
_proxyGroupsRefsTable(_$Database db) => MultiTypedResultKey.fromTable(
db.proxyGroups,
aliasName: $_aliasNameGenerator(db.profiles.id, db.proxyGroups.profileId),
);
$$ProxyGroupsTableProcessedTableManager get proxyGroupsRefs {
final manager = $$ProxyGroupsTableTableManager(
$_db,
$_db.proxyGroups,
).filter((f) => f.profileId.id.sqlEquals($_itemColumn<int>('id')!));
final cache = $_typedResult.readTableOrNull(_proxyGroupsRefsTable($_db));
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: cache),
);
}
}
class $$ProfilesTableFilterComposer
extends Composer<_$Database, $ProfilesTable> {
$$ProfilesTableFilterComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnFilters<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get label => $composableBuilder(
column: $table.label,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get currentGroupName => $composableBuilder(
column: $table.currentGroupName,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get url => $composableBuilder(
column: $table.url,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<DateTime> get lastUpdateDate => $composableBuilder(
column: $table.lastUpdateDate,
builder: (column) => ColumnFilters(column),
);
ColumnWithTypeConverterFilters<OverwriteType, OverwriteType, String>
get overwriteType => $composableBuilder(
column: $table.overwriteType,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnFilters<int> get scriptId => $composableBuilder(
column: $table.scriptId,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<int> get autoUpdateDurationMillis => $composableBuilder(
column: $table.autoUpdateDurationMillis,
builder: (column) => ColumnFilters(column),
);
ColumnWithTypeConverterFilters<SubscriptionInfo?, SubscriptionInfo, String>
get subscriptionInfo => $composableBuilder(
column: $table.subscriptionInfo,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnFilters<bool> get autoUpdate => $composableBuilder(
column: $table.autoUpdate,
builder: (column) => ColumnFilters(column),
);
ColumnWithTypeConverterFilters<
Map<String, String>,
Map<String, String>,
String
>
get selectedMap => $composableBuilder(
column: $table.selectedMap,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnWithTypeConverterFilters<Set<String>, Set<String>, String>
get unfoldSet => $composableBuilder(
column: $table.unfoldSet,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnFilters<int> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnFilters(column),
);
Expression<bool> profileRuleLinksRefs(
Expression<bool> Function($$ProfileRuleLinksTableFilterComposer f) f,
) {
final $$ProfileRuleLinksTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.profileRuleLinks,
getReferencedColumn: (t) => t.profileId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfileRuleLinksTableFilterComposer(
$db: $db,
$table: $db.profileRuleLinks,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
Expression<bool> proxyGroupsRefs(
Expression<bool> Function($$ProxyGroupsTableFilterComposer f) f,
) {
final $$ProxyGroupsTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.proxyGroups,
getReferencedColumn: (t) => t.profileId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProxyGroupsTableFilterComposer(
$db: $db,
$table: $db.proxyGroups,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
}
class $$ProfilesTableOrderingComposer
extends Composer<_$Database, $ProfilesTable> {
$$ProfilesTableOrderingComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnOrderings<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get label => $composableBuilder(
column: $table.label,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get currentGroupName => $composableBuilder(
column: $table.currentGroupName,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get url => $composableBuilder(
column: $table.url,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<DateTime> get lastUpdateDate => $composableBuilder(
column: $table.lastUpdateDate,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get overwriteType => $composableBuilder(
column: $table.overwriteType,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get scriptId => $composableBuilder(
column: $table.scriptId,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get autoUpdateDurationMillis => $composableBuilder(
column: $table.autoUpdateDurationMillis,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get subscriptionInfo => $composableBuilder(
column: $table.subscriptionInfo,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get autoUpdate => $composableBuilder(
column: $table.autoUpdate,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get selectedMap => $composableBuilder(
column: $table.selectedMap,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get unfoldSet => $composableBuilder(
column: $table.unfoldSet,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnOrderings(column),
);
}
class $$ProfilesTableAnnotationComposer
extends Composer<_$Database, $ProfilesTable> {
$$ProfilesTableAnnotationComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
GeneratedColumn<int> get id =>
$composableBuilder(column: $table.id, builder: (column) => column);
GeneratedColumn<String> get label =>
$composableBuilder(column: $table.label, builder: (column) => column);
GeneratedColumn<String> get currentGroupName => $composableBuilder(
column: $table.currentGroupName,
builder: (column) => column,
);
GeneratedColumn<String> get url =>
$composableBuilder(column: $table.url, builder: (column) => column);
GeneratedColumn<DateTime> get lastUpdateDate => $composableBuilder(
column: $table.lastUpdateDate,
builder: (column) => column,
);
GeneratedColumnWithTypeConverter<OverwriteType, String> get overwriteType =>
$composableBuilder(
column: $table.overwriteType,
builder: (column) => column,
);
GeneratedColumn<int> get scriptId =>
$composableBuilder(column: $table.scriptId, builder: (column) => column);
GeneratedColumn<int> get autoUpdateDurationMillis => $composableBuilder(
column: $table.autoUpdateDurationMillis,
builder: (column) => column,
);
GeneratedColumnWithTypeConverter<SubscriptionInfo?, String>
get subscriptionInfo => $composableBuilder(
column: $table.subscriptionInfo,
builder: (column) => column,
);
GeneratedColumn<bool> get autoUpdate => $composableBuilder(
column: $table.autoUpdate,
builder: (column) => column,
);
GeneratedColumnWithTypeConverter<Map<String, String>, String>
get selectedMap => $composableBuilder(
column: $table.selectedMap,
builder: (column) => column,
);
GeneratedColumnWithTypeConverter<Set<String>, String> get unfoldSet =>
$composableBuilder(column: $table.unfoldSet, builder: (column) => column);
GeneratedColumn<int> get order =>
$composableBuilder(column: $table.order, builder: (column) => column);
Expression<T> profileRuleLinksRefs<T extends Object>(
Expression<T> Function($$ProfileRuleLinksTableAnnotationComposer a) f,
) {
final $$ProfileRuleLinksTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.profileRuleLinks,
getReferencedColumn: (t) => t.profileId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfileRuleLinksTableAnnotationComposer(
$db: $db,
$table: $db.profileRuleLinks,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
Expression<T> proxyGroupsRefs<T extends Object>(
Expression<T> Function($$ProxyGroupsTableAnnotationComposer a) f,
) {
final $$ProxyGroupsTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.proxyGroups,
getReferencedColumn: (t) => t.profileId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProxyGroupsTableAnnotationComposer(
$db: $db,
$table: $db.proxyGroups,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
}
class $$ProfilesTableTableManager
extends
RootTableManager<
_$Database,
$ProfilesTable,
RawProfile,
$$ProfilesTableFilterComposer,
$$ProfilesTableOrderingComposer,
$$ProfilesTableAnnotationComposer,
$$ProfilesTableCreateCompanionBuilder,
$$ProfilesTableUpdateCompanionBuilder,
(RawProfile, $$ProfilesTableReferences),
RawProfile,
PrefetchHooks Function({
bool profileRuleLinksRefs,
bool proxyGroupsRefs,
})
> {
$$ProfilesTableTableManager(_$Database db, $ProfilesTable table)
: super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$ProfilesTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$ProfilesTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$ProfilesTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<int> id = const Value.absent(),
Value<String> label = const Value.absent(),
Value<String?> currentGroupName = const Value.absent(),
Value<String> url = const Value.absent(),
Value<DateTime?> lastUpdateDate = const Value.absent(),
Value<OverwriteType> overwriteType = const Value.absent(),
Value<int?> scriptId = const Value.absent(),
Value<int> autoUpdateDurationMillis = const Value.absent(),
Value<SubscriptionInfo?> subscriptionInfo =
const Value.absent(),
Value<bool> autoUpdate = const Value.absent(),
Value<Map<String, String>> selectedMap = const Value.absent(),
Value<Set<String>> unfoldSet = const Value.absent(),
Value<int?> order = const Value.absent(),
}) => ProfilesCompanion(
id: id,
label: label,
currentGroupName: currentGroupName,
url: url,
lastUpdateDate: lastUpdateDate,
overwriteType: overwriteType,
scriptId: scriptId,
autoUpdateDurationMillis: autoUpdateDurationMillis,
subscriptionInfo: subscriptionInfo,
autoUpdate: autoUpdate,
selectedMap: selectedMap,
unfoldSet: unfoldSet,
order: order,
),
createCompanionCallback:
({
Value<int> id = const Value.absent(),
required String label,
Value<String?> currentGroupName = const Value.absent(),
required String url,
Value<DateTime?> lastUpdateDate = const Value.absent(),
required OverwriteType overwriteType,
Value<int?> scriptId = const Value.absent(),
required int autoUpdateDurationMillis,
Value<SubscriptionInfo?> subscriptionInfo =
const Value.absent(),
required bool autoUpdate,
required Map<String, String> selectedMap,
required Set<String> unfoldSet,
Value<int?> order = const Value.absent(),
}) => ProfilesCompanion.insert(
id: id,
label: label,
currentGroupName: currentGroupName,
url: url,
lastUpdateDate: lastUpdateDate,
overwriteType: overwriteType,
scriptId: scriptId,
autoUpdateDurationMillis: autoUpdateDurationMillis,
subscriptionInfo: subscriptionInfo,
autoUpdate: autoUpdate,
selectedMap: selectedMap,
unfoldSet: unfoldSet,
order: order,
),
withReferenceMapper: (p0) => p0
.map(
(e) => (
e.readTable(table),
$$ProfilesTableReferences(db, table, e),
),
)
.toList(),
prefetchHooksCallback:
({profileRuleLinksRefs = false, proxyGroupsRefs = false}) {
return PrefetchHooks(
db: db,
explicitlyWatchedTables: [
if (profileRuleLinksRefs) db.profileRuleLinks,
if (proxyGroupsRefs) db.proxyGroups,
],
addJoins: null,
getPrefetchedDataCallback: (items) async {
return [
if (profileRuleLinksRefs)
await $_getPrefetchedData<
RawProfile,
$ProfilesTable,
RawProfileRuleLink
>(
currentTable: table,
referencedTable: $$ProfilesTableReferences
._profileRuleLinksRefsTable(db),
managerFromTypedResult: (p0) =>
$$ProfilesTableReferences(
db,
table,
p0,
).profileRuleLinksRefs,
referencedItemsForCurrentItem:
(item, referencedItems) => referencedItems.where(
(e) => e.profileId == item.id,
),
typedResults: items,
),
if (proxyGroupsRefs)
await $_getPrefetchedData<
RawProfile,
$ProfilesTable,
RawProxyGroup
>(
currentTable: table,
referencedTable: $$ProfilesTableReferences
._proxyGroupsRefsTable(db),
managerFromTypedResult: (p0) =>
$$ProfilesTableReferences(
db,
table,
p0,
).proxyGroupsRefs,
referencedItemsForCurrentItem:
(item, referencedItems) => referencedItems.where(
(e) => e.profileId == item.id,
),
typedResults: items,
),
];
},
);
},
),
);
}
typedef $$ProfilesTableProcessedTableManager =
ProcessedTableManager<
_$Database,
$ProfilesTable,
RawProfile,
$$ProfilesTableFilterComposer,
$$ProfilesTableOrderingComposer,
$$ProfilesTableAnnotationComposer,
$$ProfilesTableCreateCompanionBuilder,
$$ProfilesTableUpdateCompanionBuilder,
(RawProfile, $$ProfilesTableReferences),
RawProfile,
PrefetchHooks Function({bool profileRuleLinksRefs, bool proxyGroupsRefs})
>;
typedef $$ScriptsTableCreateCompanionBuilder =
ScriptsCompanion Function({
Value<int> id,
required String label,
required DateTime lastUpdateTime,
});
typedef $$ScriptsTableUpdateCompanionBuilder =
ScriptsCompanion Function({
Value<int> id,
Value<String> label,
Value<DateTime> lastUpdateTime,
});
class $$ScriptsTableFilterComposer extends Composer<_$Database, $ScriptsTable> {
$$ScriptsTableFilterComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnFilters<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get label => $composableBuilder(
column: $table.label,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<DateTime> get lastUpdateTime => $composableBuilder(
column: $table.lastUpdateTime,
builder: (column) => ColumnFilters(column),
);
}
class $$ScriptsTableOrderingComposer
extends Composer<_$Database, $ScriptsTable> {
$$ScriptsTableOrderingComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnOrderings<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get label => $composableBuilder(
column: $table.label,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<DateTime> get lastUpdateTime => $composableBuilder(
column: $table.lastUpdateTime,
builder: (column) => ColumnOrderings(column),
);
}
class $$ScriptsTableAnnotationComposer
extends Composer<_$Database, $ScriptsTable> {
$$ScriptsTableAnnotationComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
GeneratedColumn<int> get id =>
$composableBuilder(column: $table.id, builder: (column) => column);
GeneratedColumn<String> get label =>
$composableBuilder(column: $table.label, builder: (column) => column);
GeneratedColumn<DateTime> get lastUpdateTime => $composableBuilder(
column: $table.lastUpdateTime,
builder: (column) => column,
);
}
class $$ScriptsTableTableManager
extends
RootTableManager<
_$Database,
$ScriptsTable,
RawScript,
$$ScriptsTableFilterComposer,
$$ScriptsTableOrderingComposer,
$$ScriptsTableAnnotationComposer,
$$ScriptsTableCreateCompanionBuilder,
$$ScriptsTableUpdateCompanionBuilder,
(RawScript, BaseReferences<_$Database, $ScriptsTable, RawScript>),
RawScript,
PrefetchHooks Function()
> {
$$ScriptsTableTableManager(_$Database db, $ScriptsTable table)
: super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$ScriptsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$ScriptsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$ScriptsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<int> id = const Value.absent(),
Value<String> label = const Value.absent(),
Value<DateTime> lastUpdateTime = const Value.absent(),
}) => ScriptsCompanion(
id: id,
label: label,
lastUpdateTime: lastUpdateTime,
),
createCompanionCallback:
({
Value<int> id = const Value.absent(),
required String label,
required DateTime lastUpdateTime,
}) => ScriptsCompanion.insert(
id: id,
label: label,
lastUpdateTime: lastUpdateTime,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
),
);
}
typedef $$ScriptsTableProcessedTableManager =
ProcessedTableManager<
_$Database,
$ScriptsTable,
RawScript,
$$ScriptsTableFilterComposer,
$$ScriptsTableOrderingComposer,
$$ScriptsTableAnnotationComposer,
$$ScriptsTableCreateCompanionBuilder,
$$ScriptsTableUpdateCompanionBuilder,
(RawScript, BaseReferences<_$Database, $ScriptsTable, RawScript>),
RawScript,
PrefetchHooks Function()
>;
typedef $$RulesTableCreateCompanionBuilder =
RulesCompanion Function({Value<int> id, required String value});
typedef $$RulesTableUpdateCompanionBuilder =
RulesCompanion Function({Value<int> id, Value<String> value});
final class $$RulesTableReferences
extends BaseReferences<_$Database, $RulesTable, RawRule> {
$$RulesTableReferences(super.$_db, super.$_table, super.$_typedResult);
static MultiTypedResultKey<$ProfileRuleLinksTable, List<RawProfileRuleLink>>
_profileRuleLinksRefsTable(_$Database db) => MultiTypedResultKey.fromTable(
db.profileRuleLinks,
aliasName: $_aliasNameGenerator(db.rules.id, db.profileRuleLinks.ruleId),
);
$$ProfileRuleLinksTableProcessedTableManager get profileRuleLinksRefs {
final manager = $$ProfileRuleLinksTableTableManager(
$_db,
$_db.profileRuleLinks,
).filter((f) => f.ruleId.id.sqlEquals($_itemColumn<int>('id')!));
final cache = $_typedResult.readTableOrNull(
_profileRuleLinksRefsTable($_db),
);
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: cache),
);
}
}
class $$RulesTableFilterComposer extends Composer<_$Database, $RulesTable> {
$$RulesTableFilterComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnFilters<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get value => $composableBuilder(
column: $table.value,
builder: (column) => ColumnFilters(column),
);
Expression<bool> profileRuleLinksRefs(
Expression<bool> Function($$ProfileRuleLinksTableFilterComposer f) f,
) {
final $$ProfileRuleLinksTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.profileRuleLinks,
getReferencedColumn: (t) => t.ruleId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfileRuleLinksTableFilterComposer(
$db: $db,
$table: $db.profileRuleLinks,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
}
class $$RulesTableOrderingComposer extends Composer<_$Database, $RulesTable> {
$$RulesTableOrderingComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnOrderings<int> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get value => $composableBuilder(
column: $table.value,
builder: (column) => ColumnOrderings(column),
);
}
class $$RulesTableAnnotationComposer extends Composer<_$Database, $RulesTable> {
$$RulesTableAnnotationComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
GeneratedColumn<int> get id =>
$composableBuilder(column: $table.id, builder: (column) => column);
GeneratedColumn<String> get value =>
$composableBuilder(column: $table.value, builder: (column) => column);
Expression<T> profileRuleLinksRefs<T extends Object>(
Expression<T> Function($$ProfileRuleLinksTableAnnotationComposer a) f,
) {
final $$ProfileRuleLinksTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.id,
referencedTable: $db.profileRuleLinks,
getReferencedColumn: (t) => t.ruleId,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfileRuleLinksTableAnnotationComposer(
$db: $db,
$table: $db.profileRuleLinks,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return f(composer);
}
}
class $$RulesTableTableManager
extends
RootTableManager<
_$Database,
$RulesTable,
RawRule,
$$RulesTableFilterComposer,
$$RulesTableOrderingComposer,
$$RulesTableAnnotationComposer,
$$RulesTableCreateCompanionBuilder,
$$RulesTableUpdateCompanionBuilder,
(RawRule, $$RulesTableReferences),
RawRule,
PrefetchHooks Function({bool profileRuleLinksRefs})
> {
$$RulesTableTableManager(_$Database db, $RulesTable table)
: super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$RulesTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$RulesTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$RulesTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<int> id = const Value.absent(),
Value<String> value = const Value.absent(),
}) => RulesCompanion(id: id, value: value),
createCompanionCallback:
({Value<int> id = const Value.absent(), required String value}) =>
RulesCompanion.insert(id: id, value: value),
withReferenceMapper: (p0) => p0
.map(
(e) =>
(e.readTable(table), $$RulesTableReferences(db, table, e)),
)
.toList(),
prefetchHooksCallback: ({profileRuleLinksRefs = false}) {
return PrefetchHooks(
db: db,
explicitlyWatchedTables: [
if (profileRuleLinksRefs) db.profileRuleLinks,
],
addJoins: null,
getPrefetchedDataCallback: (items) async {
return [
if (profileRuleLinksRefs)
await $_getPrefetchedData<
RawRule,
$RulesTable,
RawProfileRuleLink
>(
currentTable: table,
referencedTable: $$RulesTableReferences
._profileRuleLinksRefsTable(db),
managerFromTypedResult: (p0) => $$RulesTableReferences(
db,
table,
p0,
).profileRuleLinksRefs,
referencedItemsForCurrentItem: (item, referencedItems) =>
referencedItems.where((e) => e.ruleId == item.id),
typedResults: items,
),
];
},
);
},
),
);
}
typedef $$RulesTableProcessedTableManager =
ProcessedTableManager<
_$Database,
$RulesTable,
RawRule,
$$RulesTableFilterComposer,
$$RulesTableOrderingComposer,
$$RulesTableAnnotationComposer,
$$RulesTableCreateCompanionBuilder,
$$RulesTableUpdateCompanionBuilder,
(RawRule, $$RulesTableReferences),
RawRule,
PrefetchHooks Function({bool profileRuleLinksRefs})
>;
typedef $$ProfileRuleLinksTableCreateCompanionBuilder =
ProfileRuleLinksCompanion Function({
required String id,
Value<int?> profileId,
required int ruleId,
Value<RuleScene?> scene,
Value<String?> order,
Value<int> rowid,
});
typedef $$ProfileRuleLinksTableUpdateCompanionBuilder =
ProfileRuleLinksCompanion Function({
Value<String> id,
Value<int?> profileId,
Value<int> ruleId,
Value<RuleScene?> scene,
Value<String?> order,
Value<int> rowid,
});
final class $$ProfileRuleLinksTableReferences
extends
BaseReferences<_$Database, $ProfileRuleLinksTable, RawProfileRuleLink> {
$$ProfileRuleLinksTableReferences(
super.$_db,
super.$_table,
super.$_typedResult,
);
static $ProfilesTable _profileIdTable(_$Database db) =>
db.profiles.createAlias(
$_aliasNameGenerator(db.profileRuleLinks.profileId, db.profiles.id),
);
$$ProfilesTableProcessedTableManager? get profileId {
final $_column = $_itemColumn<int>('profile_id');
if ($_column == null) return null;
final manager = $$ProfilesTableTableManager(
$_db,
$_db.profiles,
).filter((f) => f.id.sqlEquals($_column));
final item = $_typedResult.readTableOrNull(_profileIdTable($_db));
if (item == null) return manager;
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: [item]),
);
}
static $RulesTable _ruleIdTable(_$Database db) => db.rules.createAlias(
$_aliasNameGenerator(db.profileRuleLinks.ruleId, db.rules.id),
);
$$RulesTableProcessedTableManager get ruleId {
final $_column = $_itemColumn<int>('rule_id')!;
final manager = $$RulesTableTableManager(
$_db,
$_db.rules,
).filter((f) => f.id.sqlEquals($_column));
final item = $_typedResult.readTableOrNull(_ruleIdTable($_db));
if (item == null) return manager;
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: [item]),
);
}
}
class $$ProfileRuleLinksTableFilterComposer
extends Composer<_$Database, $ProfileRuleLinksTable> {
$$ProfileRuleLinksTableFilterComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnFilters<String> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnFilters(column),
);
ColumnWithTypeConverterFilters<RuleScene?, RuleScene, String> get scene =>
$composableBuilder(
column: $table.scene,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnFilters<String> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnFilters(column),
);
$$ProfilesTableFilterComposer get profileId {
final $$ProfilesTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableFilterComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
$$RulesTableFilterComposer get ruleId {
final $$RulesTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.ruleId,
referencedTable: $db.rules,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$RulesTableFilterComposer(
$db: $db,
$table: $db.rules,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProfileRuleLinksTableOrderingComposer
extends Composer<_$Database, $ProfileRuleLinksTable> {
$$ProfileRuleLinksTableOrderingComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnOrderings<String> get id => $composableBuilder(
column: $table.id,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get scene => $composableBuilder(
column: $table.scene,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnOrderings(column),
);
$$ProfilesTableOrderingComposer get profileId {
final $$ProfilesTableOrderingComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableOrderingComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
$$RulesTableOrderingComposer get ruleId {
final $$RulesTableOrderingComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.ruleId,
referencedTable: $db.rules,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$RulesTableOrderingComposer(
$db: $db,
$table: $db.rules,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProfileRuleLinksTableAnnotationComposer
extends Composer<_$Database, $ProfileRuleLinksTable> {
$$ProfileRuleLinksTableAnnotationComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
GeneratedColumn<String> get id =>
$composableBuilder(column: $table.id, builder: (column) => column);
GeneratedColumnWithTypeConverter<RuleScene?, String> get scene =>
$composableBuilder(column: $table.scene, builder: (column) => column);
GeneratedColumn<String> get order =>
$composableBuilder(column: $table.order, builder: (column) => column);
$$ProfilesTableAnnotationComposer get profileId {
final $$ProfilesTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableAnnotationComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
$$RulesTableAnnotationComposer get ruleId {
final $$RulesTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.ruleId,
referencedTable: $db.rules,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$RulesTableAnnotationComposer(
$db: $db,
$table: $db.rules,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProfileRuleLinksTableTableManager
extends
RootTableManager<
_$Database,
$ProfileRuleLinksTable,
RawProfileRuleLink,
$$ProfileRuleLinksTableFilterComposer,
$$ProfileRuleLinksTableOrderingComposer,
$$ProfileRuleLinksTableAnnotationComposer,
$$ProfileRuleLinksTableCreateCompanionBuilder,
$$ProfileRuleLinksTableUpdateCompanionBuilder,
(RawProfileRuleLink, $$ProfileRuleLinksTableReferences),
RawProfileRuleLink,
PrefetchHooks Function({bool profileId, bool ruleId})
> {
$$ProfileRuleLinksTableTableManager(
_$Database db,
$ProfileRuleLinksTable table,
) : super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$ProfileRuleLinksTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$ProfileRuleLinksTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$ProfileRuleLinksTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<String> id = const Value.absent(),
Value<int?> profileId = const Value.absent(),
Value<int> ruleId = const Value.absent(),
Value<RuleScene?> scene = const Value.absent(),
Value<String?> order = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => ProfileRuleLinksCompanion(
id: id,
profileId: profileId,
ruleId: ruleId,
scene: scene,
order: order,
rowid: rowid,
),
createCompanionCallback:
({
required String id,
Value<int?> profileId = const Value.absent(),
required int ruleId,
Value<RuleScene?> scene = const Value.absent(),
Value<String?> order = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => ProfileRuleLinksCompanion.insert(
id: id,
profileId: profileId,
ruleId: ruleId,
scene: scene,
order: order,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map(
(e) => (
e.readTable(table),
$$ProfileRuleLinksTableReferences(db, table, e),
),
)
.toList(),
prefetchHooksCallback: ({profileId = false, ruleId = false}) {
return PrefetchHooks(
db: db,
explicitlyWatchedTables: [],
addJoins:
<
T extends TableManagerState<
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic
>
>(state) {
if (profileId) {
state =
state.withJoin(
currentTable: table,
currentColumn: table.profileId,
referencedTable:
$$ProfileRuleLinksTableReferences
._profileIdTable(db),
referencedColumn:
$$ProfileRuleLinksTableReferences
._profileIdTable(db)
.id,
)
as T;
}
if (ruleId) {
state =
state.withJoin(
currentTable: table,
currentColumn: table.ruleId,
referencedTable:
$$ProfileRuleLinksTableReferences
._ruleIdTable(db),
referencedColumn:
$$ProfileRuleLinksTableReferences
._ruleIdTable(db)
.id,
)
as T;
}
return state;
},
getPrefetchedDataCallback: (items) async {
return [];
},
);
},
),
);
}
typedef $$ProfileRuleLinksTableProcessedTableManager =
ProcessedTableManager<
_$Database,
$ProfileRuleLinksTable,
RawProfileRuleLink,
$$ProfileRuleLinksTableFilterComposer,
$$ProfileRuleLinksTableOrderingComposer,
$$ProfileRuleLinksTableAnnotationComposer,
$$ProfileRuleLinksTableCreateCompanionBuilder,
$$ProfileRuleLinksTableUpdateCompanionBuilder,
(RawProfileRuleLink, $$ProfileRuleLinksTableReferences),
RawProfileRuleLink,
PrefetchHooks Function({bool profileId, bool ruleId})
>;
typedef $$ProxyGroupsTableCreateCompanionBuilder =
ProxyGroupsCompanion Function({
Value<int?> profileId,
required String name,
required String type,
Value<List<String>?> proxies,
Value<List<String>?> use,
Value<String?> url,
Value<int?> interval,
Value<int?> timeout,
Value<int?> maxFailedTimes,
Value<bool?> lazy,
Value<bool?> disableUDP,
Value<String?> filter,
Value<String?> excludeFilter,
Value<String?> excludeType,
Value<String?> expectedStatus,
Value<bool?> includeAll,
Value<bool?> includeAllProxies,
Value<bool?> includeAllProviders,
Value<bool?> hidden,
Value<String?> icon,
Value<String?> order,
Value<int> rowid,
});
typedef $$ProxyGroupsTableUpdateCompanionBuilder =
ProxyGroupsCompanion Function({
Value<int?> profileId,
Value<String> name,
Value<String> type,
Value<List<String>?> proxies,
Value<List<String>?> use,
Value<String?> url,
Value<int?> interval,
Value<int?> timeout,
Value<int?> maxFailedTimes,
Value<bool?> lazy,
Value<bool?> disableUDP,
Value<String?> filter,
Value<String?> excludeFilter,
Value<String?> excludeType,
Value<String?> expectedStatus,
Value<bool?> includeAll,
Value<bool?> includeAllProxies,
Value<bool?> includeAllProviders,
Value<bool?> hidden,
Value<String?> icon,
Value<String?> order,
Value<int> rowid,
});
final class $$ProxyGroupsTableReferences
extends BaseReferences<_$Database, $ProxyGroupsTable, RawProxyGroup> {
$$ProxyGroupsTableReferences(super.$_db, super.$_table, super.$_typedResult);
static $ProfilesTable _profileIdTable(_$Database db) =>
db.profiles.createAlias(
$_aliasNameGenerator(db.proxyGroups.profileId, db.profiles.id),
);
$$ProfilesTableProcessedTableManager? get profileId {
final $_column = $_itemColumn<int>('profile_id');
if ($_column == null) return null;
final manager = $$ProfilesTableTableManager(
$_db,
$_db.profiles,
).filter((f) => f.id.sqlEquals($_column));
final item = $_typedResult.readTableOrNull(_profileIdTable($_db));
if (item == null) return manager;
return ProcessedTableManager(
manager.$state.copyWith(prefetchedData: [item]),
);
}
}
class $$ProxyGroupsTableFilterComposer
extends Composer<_$Database, $ProxyGroupsTable> {
$$ProxyGroupsTableFilterComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnFilters<String> get name => $composableBuilder(
column: $table.name,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get type => $composableBuilder(
column: $table.type,
builder: (column) => ColumnFilters(column),
);
ColumnWithTypeConverterFilters<List<String>?, List<String>, String>
get proxies => $composableBuilder(
column: $table.proxies,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnWithTypeConverterFilters<List<String>?, List<String>, String> get use =>
$composableBuilder(
column: $table.use,
builder: (column) => ColumnWithTypeConverterFilters(column),
);
ColumnFilters<String> get url => $composableBuilder(
column: $table.url,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<int> get interval => $composableBuilder(
column: $table.interval,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<int> get timeout => $composableBuilder(
column: $table.timeout,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<int> get maxFailedTimes => $composableBuilder(
column: $table.maxFailedTimes,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get lazy => $composableBuilder(
column: $table.lazy,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get disableUDP => $composableBuilder(
column: $table.disableUDP,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get filter => $composableBuilder(
column: $table.filter,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get excludeFilter => $composableBuilder(
column: $table.excludeFilter,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get excludeType => $composableBuilder(
column: $table.excludeType,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get expectedStatus => $composableBuilder(
column: $table.expectedStatus,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get includeAll => $composableBuilder(
column: $table.includeAll,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get includeAllProxies => $composableBuilder(
column: $table.includeAllProxies,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get includeAllProviders => $composableBuilder(
column: $table.includeAllProviders,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<bool> get hidden => $composableBuilder(
column: $table.hidden,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get icon => $composableBuilder(
column: $table.icon,
builder: (column) => ColumnFilters(column),
);
ColumnFilters<String> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnFilters(column),
);
$$ProfilesTableFilterComposer get profileId {
final $$ProfilesTableFilterComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableFilterComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProxyGroupsTableOrderingComposer
extends Composer<_$Database, $ProxyGroupsTable> {
$$ProxyGroupsTableOrderingComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
ColumnOrderings<String> get name => $composableBuilder(
column: $table.name,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get type => $composableBuilder(
column: $table.type,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get proxies => $composableBuilder(
column: $table.proxies,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get use => $composableBuilder(
column: $table.use,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get url => $composableBuilder(
column: $table.url,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get interval => $composableBuilder(
column: $table.interval,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get timeout => $composableBuilder(
column: $table.timeout,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<int> get maxFailedTimes => $composableBuilder(
column: $table.maxFailedTimes,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get lazy => $composableBuilder(
column: $table.lazy,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get disableUDP => $composableBuilder(
column: $table.disableUDP,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get filter => $composableBuilder(
column: $table.filter,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get excludeFilter => $composableBuilder(
column: $table.excludeFilter,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get excludeType => $composableBuilder(
column: $table.excludeType,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get expectedStatus => $composableBuilder(
column: $table.expectedStatus,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get includeAll => $composableBuilder(
column: $table.includeAll,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get includeAllProxies => $composableBuilder(
column: $table.includeAllProxies,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get includeAllProviders => $composableBuilder(
column: $table.includeAllProviders,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<bool> get hidden => $composableBuilder(
column: $table.hidden,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get icon => $composableBuilder(
column: $table.icon,
builder: (column) => ColumnOrderings(column),
);
ColumnOrderings<String> get order => $composableBuilder(
column: $table.order,
builder: (column) => ColumnOrderings(column),
);
$$ProfilesTableOrderingComposer get profileId {
final $$ProfilesTableOrderingComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableOrderingComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProxyGroupsTableAnnotationComposer
extends Composer<_$Database, $ProxyGroupsTable> {
$$ProxyGroupsTableAnnotationComposer({
required super.$db,
required super.$table,
super.joinBuilder,
super.$addJoinBuilderToRootComposer,
super.$removeJoinBuilderFromRootComposer,
});
GeneratedColumn<String> get name =>
$composableBuilder(column: $table.name, builder: (column) => column);
GeneratedColumn<String> get type =>
$composableBuilder(column: $table.type, builder: (column) => column);
GeneratedColumnWithTypeConverter<List<String>?, String> get proxies =>
$composableBuilder(column: $table.proxies, builder: (column) => column);
GeneratedColumnWithTypeConverter<List<String>?, String> get use =>
$composableBuilder(column: $table.use, builder: (column) => column);
GeneratedColumn<String> get url =>
$composableBuilder(column: $table.url, builder: (column) => column);
GeneratedColumn<int> get interval =>
$composableBuilder(column: $table.interval, builder: (column) => column);
GeneratedColumn<int> get timeout =>
$composableBuilder(column: $table.timeout, builder: (column) => column);
GeneratedColumn<int> get maxFailedTimes => $composableBuilder(
column: $table.maxFailedTimes,
builder: (column) => column,
);
GeneratedColumn<bool> get lazy =>
$composableBuilder(column: $table.lazy, builder: (column) => column);
GeneratedColumn<bool> get disableUDP => $composableBuilder(
column: $table.disableUDP,
builder: (column) => column,
);
GeneratedColumn<String> get filter =>
$composableBuilder(column: $table.filter, builder: (column) => column);
GeneratedColumn<String> get excludeFilter => $composableBuilder(
column: $table.excludeFilter,
builder: (column) => column,
);
GeneratedColumn<String> get excludeType => $composableBuilder(
column: $table.excludeType,
builder: (column) => column,
);
GeneratedColumn<String> get expectedStatus => $composableBuilder(
column: $table.expectedStatus,
builder: (column) => column,
);
GeneratedColumn<bool> get includeAll => $composableBuilder(
column: $table.includeAll,
builder: (column) => column,
);
GeneratedColumn<bool> get includeAllProxies => $composableBuilder(
column: $table.includeAllProxies,
builder: (column) => column,
);
GeneratedColumn<bool> get includeAllProviders => $composableBuilder(
column: $table.includeAllProviders,
builder: (column) => column,
);
GeneratedColumn<bool> get hidden =>
$composableBuilder(column: $table.hidden, builder: (column) => column);
GeneratedColumn<String> get icon =>
$composableBuilder(column: $table.icon, builder: (column) => column);
GeneratedColumn<String> get order =>
$composableBuilder(column: $table.order, builder: (column) => column);
$$ProfilesTableAnnotationComposer get profileId {
final $$ProfilesTableAnnotationComposer composer = $composerBuilder(
composer: this,
getCurrentColumn: (t) => t.profileId,
referencedTable: $db.profiles,
getReferencedColumn: (t) => t.id,
builder:
(
joinBuilder, {
$addJoinBuilderToRootComposer,
$removeJoinBuilderFromRootComposer,
}) => $$ProfilesTableAnnotationComposer(
$db: $db,
$table: $db.profiles,
$addJoinBuilderToRootComposer: $addJoinBuilderToRootComposer,
joinBuilder: joinBuilder,
$removeJoinBuilderFromRootComposer:
$removeJoinBuilderFromRootComposer,
),
);
return composer;
}
}
class $$ProxyGroupsTableTableManager
extends
RootTableManager<
_$Database,
$ProxyGroupsTable,
RawProxyGroup,
$$ProxyGroupsTableFilterComposer,
$$ProxyGroupsTableOrderingComposer,
$$ProxyGroupsTableAnnotationComposer,
$$ProxyGroupsTableCreateCompanionBuilder,
$$ProxyGroupsTableUpdateCompanionBuilder,
(RawProxyGroup, $$ProxyGroupsTableReferences),
RawProxyGroup,
PrefetchHooks Function({bool profileId})
> {
$$ProxyGroupsTableTableManager(_$Database db, $ProxyGroupsTable table)
: super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$ProxyGroupsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$ProxyGroupsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$ProxyGroupsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<int?> profileId = const Value.absent(),
Value<String> name = const Value.absent(),
Value<String> type = const Value.absent(),
Value<List<String>?> proxies = const Value.absent(),
Value<List<String>?> use = const Value.absent(),
Value<String?> url = const Value.absent(),
Value<int?> interval = const Value.absent(),
Value<int?> timeout = const Value.absent(),
Value<int?> maxFailedTimes = const Value.absent(),
Value<bool?> lazy = const Value.absent(),
Value<bool?> disableUDP = const Value.absent(),
Value<String?> filter = const Value.absent(),
Value<String?> excludeFilter = const Value.absent(),
Value<String?> excludeType = const Value.absent(),
Value<String?> expectedStatus = const Value.absent(),
Value<bool?> includeAll = const Value.absent(),
Value<bool?> includeAllProxies = const Value.absent(),
Value<bool?> includeAllProviders = const Value.absent(),
Value<bool?> hidden = const Value.absent(),
Value<String?> icon = const Value.absent(),
Value<String?> order = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => ProxyGroupsCompanion(
profileId: profileId,
name: name,
type: type,
proxies: proxies,
use: use,
url: url,
interval: interval,
timeout: timeout,
maxFailedTimes: maxFailedTimes,
lazy: lazy,
disableUDP: disableUDP,
filter: filter,
excludeFilter: excludeFilter,
excludeType: excludeType,
expectedStatus: expectedStatus,
includeAll: includeAll,
includeAllProxies: includeAllProxies,
includeAllProviders: includeAllProviders,
hidden: hidden,
icon: icon,
order: order,
rowid: rowid,
),
createCompanionCallback:
({
Value<int?> profileId = const Value.absent(),
required String name,
required String type,
Value<List<String>?> proxies = const Value.absent(),
Value<List<String>?> use = const Value.absent(),
Value<String?> url = const Value.absent(),
Value<int?> interval = const Value.absent(),
Value<int?> timeout = const Value.absent(),
Value<int?> maxFailedTimes = const Value.absent(),
Value<bool?> lazy = const Value.absent(),
Value<bool?> disableUDP = const Value.absent(),
Value<String?> filter = const Value.absent(),
Value<String?> excludeFilter = const Value.absent(),
Value<String?> excludeType = const Value.absent(),
Value<String?> expectedStatus = const Value.absent(),
Value<bool?> includeAll = const Value.absent(),
Value<bool?> includeAllProxies = const Value.absent(),
Value<bool?> includeAllProviders = const Value.absent(),
Value<bool?> hidden = const Value.absent(),
Value<String?> icon = const Value.absent(),
Value<String?> order = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => ProxyGroupsCompanion.insert(
profileId: profileId,
name: name,
type: type,
proxies: proxies,
use: use,
url: url,
interval: interval,
timeout: timeout,
maxFailedTimes: maxFailedTimes,
lazy: lazy,
disableUDP: disableUDP,
filter: filter,
excludeFilter: excludeFilter,
excludeType: excludeType,
expectedStatus: expectedStatus,
includeAll: includeAll,
includeAllProxies: includeAllProxies,
includeAllProviders: includeAllProviders,
hidden: hidden,
icon: icon,
order: order,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map(
(e) => (
e.readTable(table),
$$ProxyGroupsTableReferences(db, table, e),
),
)
.toList(),
prefetchHooksCallback: ({profileId = false}) {
return PrefetchHooks(
db: db,
explicitlyWatchedTables: [],
addJoins:
<
T extends TableManagerState<
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic,
dynamic
>
>(state) {
if (profileId) {
state =
state.withJoin(
currentTable: table,
currentColumn: table.profileId,
referencedTable: $$ProxyGroupsTableReferences
._profileIdTable(db),
referencedColumn: $$ProxyGroupsTableReferences
._profileIdTable(db)
.id,
)
as T;
}
return state;
},
getPrefetchedDataCallback: (items) async {
return [];
},
);
},
),
);
}
typedef $$ProxyGroupsTableProcessedTableManager =
ProcessedTableManager<
_$Database,
$ProxyGroupsTable,
RawProxyGroup,
$$ProxyGroupsTableFilterComposer,
$$ProxyGroupsTableOrderingComposer,
$$ProxyGroupsTableAnnotationComposer,
$$ProxyGroupsTableCreateCompanionBuilder,
$$ProxyGroupsTableUpdateCompanionBuilder,
(RawProxyGroup, $$ProxyGroupsTableReferences),
RawProxyGroup,
PrefetchHooks Function({bool profileId})
>;
class $DatabaseManager {
final _$Database _db;
$DatabaseManager(this._db);
$$ProfilesTableTableManager get profiles =>
$$ProfilesTableTableManager(_db, _db.profiles);
$$ScriptsTableTableManager get scripts =>
$$ScriptsTableTableManager(_db, _db.scripts);
$$RulesTableTableManager get rules =>
$$RulesTableTableManager(_db, _db.rules);
$$ProfileRuleLinksTableTableManager get profileRuleLinks =>
$$ProfileRuleLinksTableTableManager(_db, _db.profileRuleLinks);
$$ProxyGroupsTableTableManager get proxyGroups =>
$$ProxyGroupsTableTableManager(_db, _db.proxyGroups);
}
mixin _$ProfilesDaoMixin on DatabaseAccessor<Database> {
$ProfilesTable get profiles => attachedDatabase.profiles;
}
mixin _$ScriptsDaoMixin on DatabaseAccessor<Database> {
$ScriptsTable get scripts => attachedDatabase.scripts;
}
mixin _$RulesDaoMixin on DatabaseAccessor<Database> {
$RulesTable get rules => attachedDatabase.rules;
$ProfilesTable get profiles => attachedDatabase.profiles;
$ProfileRuleLinksTable get profileRuleLinks =>
attachedDatabase.profileRuleLinks;
}
mixin _$ProxyGroupsDaoMixin on DatabaseAccessor<Database> {
$ProfilesTable get profiles => attachedDatabase.profiles;
$ProxyGroupsTable get proxyGroups => attachedDatabase.proxyGroups;
}