-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFirebaseDatabaseHelper.java
72 lines (61 loc) · 2.52 KB
/
FirebaseDatabaseHelper.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package change.com.animationwithsplash;
import androidx.annotation.NonNull;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
public class FirebaseDatabaseHelper {
private FirebaseDatabase mDatabase;
private DatabaseReference mRefrence;
private List<Information> info = new ArrayList<>();
public interface DataStatus{
void DataIsLoader(List<Information> books,List<String> keys);
void DataIsInserted();
void DataIsUpdated();
void DataIsDeleted();
}
public FirebaseDatabaseHelper() {
mDatabase = FirebaseDatabase.getInstance();
mRefrence = mDatabase.getReference("CarData");
}
public void ReadCars(final DataStatus dataStatus) {
mRefrence.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
info.clear();
List<String> keys = new ArrayList<>();
for (DataSnapshot KeyNode : dataSnapshot.getChildren()) {
keys.add(KeyNode.getKey());
Information information = KeyNode.getValue(Information.class);
info.add(information);
}
dataStatus.DataIsLoader(info, keys);
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
}
public void updateBook(String key,Information book,final DataStatus dataStatus){
mRefrence.child(key).setValue(book)
.addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
dataStatus.DataIsUpdated();
}
});
}
public void deleteBook(String key,final DataStatus dataStatus){
mRefrence.child(key).setValue(null)
.addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
dataStatus.DataIsDeleted();
}
});
}
}