generated from DataStax-Examples/datastax-examples-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CreateVideoQueryProvider.java
134 lines (121 loc) · 5.02 KB
/
CreateVideoQueryProvider.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Copyright DataStax, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.examples.mapper.killrvideo.video;
import com.datastax.oss.driver.api.core.CqlSession;
import com.datastax.oss.driver.api.core.cql.BatchStatement;
import com.datastax.oss.driver.api.core.cql.BatchStatementBuilder;
import com.datastax.oss.driver.api.core.cql.BoundStatement;
import com.datastax.oss.driver.api.core.cql.BoundStatementBuilder;
import com.datastax.oss.driver.api.core.cql.DefaultBatchType;
import com.datastax.oss.driver.api.core.cql.PreparedStatement;
import com.datastax.oss.driver.api.mapper.MapperContext;
import com.datastax.oss.driver.api.mapper.entity.EntityHelper;
import com.datastax.oss.driver.api.mapper.entity.saving.NullSavingStrategy;
import java.time.Instant;
import java.time.ZoneOffset;
import java.time.format.DateTimeFormatter;
import java.util.UUID;
/**
* Provides the implementation of {@link VideoDao#create}.
*
* <p>Package-private visibility is sufficient, this will be called only from the generated DAO
* implementation.
*/
class CreateVideoQueryProvider {
private final CqlSession session;
private final EntityHelper<Video> videoHelper;
private final EntityHelper<UserVideo> userVideoHelper;
private final EntityHelper<LatestVideo> latestVideoHelper;
private final EntityHelper<VideoByTag> videoByTagHelper;
private final PreparedStatement preparedInsertVideo;
private final PreparedStatement preparedInsertUserVideo;
private final PreparedStatement preparedInsertLatestVideo;
private final PreparedStatement preparedInsertVideoByTag;
CreateVideoQueryProvider(
MapperContext context,
EntityHelper<Video> videoHelper,
EntityHelper<UserVideo> userVideoHelper,
EntityHelper<LatestVideo> latestVideoHelper,
EntityHelper<VideoByTag> videoByTagHelper) {
this.session = context.getSession();
this.videoHelper = videoHelper;
this.userVideoHelper = userVideoHelper;
this.latestVideoHelper = latestVideoHelper;
this.videoByTagHelper = videoByTagHelper;
this.preparedInsertVideo = prepareInsert(session, videoHelper);
this.preparedInsertUserVideo = prepareInsert(session, userVideoHelper);
this.preparedInsertLatestVideo = prepareInsert(session, latestVideoHelper);
this.preparedInsertVideoByTag = prepareInsert(session, videoByTagHelper);
}
void create(Video video) {
if (video.getVideoid() == null) {
video.setVideoid(UUID.randomUUID());
}
if (video.getAddedDate() == null) {
video.setAddedDate(Instant.now());
}
BatchStatementBuilder batch = BatchStatement.builder(DefaultBatchType.LOGGED);
batch.addStatement(bind(preparedInsertVideo, video, videoHelper));
batch.addStatement(bind(preparedInsertUserVideo, toUserVideo(video), userVideoHelper));
batch.addStatement(bind(preparedInsertLatestVideo, toLatestVideo(video), latestVideoHelper));
if (video.getTags() != null) {
for (String tag : video.getTags()) {
batch.addStatement(
bind(preparedInsertVideoByTag, toVideoByTag(video, tag), videoByTagHelper));
}
}
session.execute(batch.build());
}
private static <T> PreparedStatement prepareInsert(
CqlSession session, EntityHelper<T> entityHelper) {
return session.prepare(entityHelper.insert().asCql());
}
private static <T> BoundStatement bind(
PreparedStatement preparedStatement, T entity, EntityHelper<T> entityHelper) {
BoundStatementBuilder boundStatement = preparedStatement.boundStatementBuilder();
entityHelper.set(entity, boundStatement, NullSavingStrategy.DO_NOT_SET);
return boundStatement.build();
}
private static UserVideo toUserVideo(Video video) {
return new UserVideo(
video.getUserid(),
video.getAddedDate(),
video.getVideoid(),
video.getName(),
video.getPreviewImageLocation());
}
private static LatestVideo toLatestVideo(Video video) {
return new LatestVideo(
DAY_FORMATTER.format(video.getAddedDate()),
video.getAddedDate(),
video.getVideoid(),
video.getUserid(),
video.getName(),
video.getPreviewImageLocation());
}
private static final DateTimeFormatter DAY_FORMATTER =
DateTimeFormatter.ofPattern("yyyyMMdd").withZone(ZoneOffset.UTC);
private static VideoByTag toVideoByTag(Video video, String tag) {
return new VideoByTag(
tag,
video.getVideoid(),
video.getAddedDate(),
video.getUserid(),
video.getName(),
video.getPreviewImageLocation(),
video.getAddedDate());
}
}