@@ -53,7 +53,7 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
53
53
}
54
54
55
55
@override
56
- Future <Box > openBox (
56
+ Future <Box < E >> openBox < E > (
57
57
String name, {
58
58
List <int > encryptionKey,
59
59
KeyComparator keyComparator,
@@ -62,16 +62,27 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
62
62
bool lazy = false ,
63
63
}) async {
64
64
if (isBoxOpen (name)) {
65
- return box (name);
65
+ var openedBox = box <E >(name);
66
+ if (openedBox.lazy != lazy) {
67
+ throw HiveError (
68
+ 'The box "$name " is already open. You cannot open a box as lazy '
69
+ 'and non-lazy at the same time.' );
70
+ }
71
+ return openedBox;
66
72
} else {
67
73
var cs = compactionStrategy ?? defaultCompactionStrategy;
68
74
var crypto = getCryptoHelper (encryptionKey);
69
75
var backend = await openBackend (this , name, lazy, crashRecovery, crypto);
70
- BoxBase box;
76
+ BoxBase < E > box;
71
77
if (lazy) {
72
- box = LazyBoxImpl (this , name, keyComparator, cs, backend);
78
+ if (E == dynamic ) {
79
+ var lazyBox = LazyBoxImpl (this , name, keyComparator, cs, backend);
80
+ box = lazyBox as BoxBase <E >;
81
+ } else {
82
+ throw HiveError ('Lazy boxes do not support type arguments.' );
83
+ }
73
84
} else {
74
- box = BoxImpl (this , name, keyComparator, cs, backend);
85
+ box = BoxImpl < E > (this , name, keyComparator, cs, backend);
75
86
}
76
87
await box.initialize ();
77
88
_boxes[name.toLowerCase ()] = box;
@@ -81,7 +92,7 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
81
92
}
82
93
83
94
@override
84
- Future <Box > openBoxFromBytes (
95
+ Future <Box < E >> openBoxFromBytes < E > (
85
96
String name,
86
97
Uint8List bytes, {
87
98
List <int > encryptionKey,
@@ -92,7 +103,7 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
92
103
} else {
93
104
var crypto = getCryptoHelper (encryptionKey);
94
105
var backend = StorageBackendMemory (bytes, crypto);
95
- var box = BoxImpl (this , name, keyComparator, null , backend);
106
+ var box = BoxImpl < E > (this , name, keyComparator, null , backend);
96
107
await box.initialize ();
97
108
_boxes[name.toLowerCase ()] = box;
98
109
@@ -101,9 +112,15 @@ class HiveImpl extends TypeRegistryImpl implements HiveInterface {
101
112
}
102
113
103
114
@override
104
- Box box (String name) {
115
+ Box < E > box < E > (String name) {
105
116
if (isBoxOpen (name)) {
106
- return _boxes[name.toLowerCase ()];
117
+ var box = _boxes[name.toLowerCase ()] as BoxBase ;
118
+ if (box.valueType == E ) {
119
+ return box as Box <E >;
120
+ } else {
121
+ throw HiveError ('The box "$name " is already open and of type '
122
+ 'Box<${box .valueType }>. You cannot open the same box as Box<$E >.' );
123
+ }
107
124
} else {
108
125
throw HiveError ('Box not found. Did you forget to call Hive.openBox()?' );
109
126
}
0 commit comments