Skip to content

Commit 2b0aa83

Browse files
committed
Add ResourceExhausted error return for StreamAllocate functions.
1 parent b72349c commit 2b0aa83

File tree

3 files changed

+78
-33
lines changed

3 files changed

+78
-33
lines changed

examples/camera-app/camera-common/include/camera-device-interface.h

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ enum class CameraError
4343
ERROR_SNAPSHOT_STREAM_STOP_FAILED,
4444
ERROR_CAPTURE_SNAPSHOT_FAILED,
4545
ERROR_CONFIG_FAILED,
46+
ERROR_RESOURCE_EXHAUSTED,
4647
ERROR_NOT_IMPLEMENTED, // For features not supported on a platform
4748
};
4849

examples/camera-app/linux/src/camera-device.cpp

+53-15
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,29 @@ CameraError CameraDevice::InitializeStreams()
8282

8383
CameraError CameraDevice::VideoStreamAllocate(const VideoStreamStruct & allocateArgs, uint16_t & outStreamID)
8484
{
85+
outStreamID = kInvalidStreamID;
86+
bool foundAvailableStream = false;
87+
8588
for (VideoStream & stream : videoStreams)
8689
{
87-
// Fake allocation with just matching codec
88-
if (!stream.isAllocated && stream.codec == allocateArgs.videoCodec)
90+
if (!stream.isAllocated)
8991
{
90-
stream.isAllocated = true;
91-
outStreamID = stream.id;
92-
return CameraError::SUCCESS;
92+
foundAvailableStream = true;
93+
94+
if (stream.codec == allocateArgs.videoCodec)
95+
{
96+
stream.isAllocated = true;
97+
outStreamID = stream.id;
98+
return CameraError::SUCCESS;
99+
}
93100
}
94101
}
95102

103+
if (!foundAvailableStream)
104+
{
105+
return CameraError::ERROR_RESOURCE_EXHAUSTED;
106+
}
107+
96108
return CameraError::ERROR_VIDEO_STREAM_ALLOC_FAILED;
97109
}
98110

@@ -112,17 +124,30 @@ CameraError CameraDevice::VideoStreamDeallocate(const uint16_t streamID)
112124

113125
CameraError CameraDevice::AudioStreamAllocate(const AudioStreamStruct & allocateArgs, uint16_t & outStreamID)
114126
{
127+
outStreamID = kInvalidStreamID;
128+
129+
bool foundAvailableStream = false;
130+
115131
for (AudioStream & stream : audioStreams)
116132
{
117-
// TODO: Match more params
118-
if (!stream.isAllocated && stream.codec == allocateArgs.audioCodec)
133+
if (!stream.isAllocated)
119134
{
120-
stream.isAllocated = true;
121-
outStreamID = stream.id;
122-
return CameraError::SUCCESS;
135+
foundAvailableStream = true;
136+
137+
if (stream.codec == allocateArgs.audioCodec)
138+
{
139+
stream.isAllocated = true;
140+
outStreamID = stream.id;
141+
return CameraError::SUCCESS;
142+
}
123143
}
124144
}
125145

146+
if (!foundAvailableStream)
147+
{
148+
return CameraError::ERROR_RESOURCE_EXHAUSTED;
149+
}
150+
126151
return CameraError::ERROR_AUDIO_STREAM_ALLOC_FAILED;
127152
}
128153

@@ -142,17 +167,30 @@ CameraError CameraDevice::AudioStreamDeallocate(const uint16_t streamID)
142167

143168
CameraError CameraDevice::SnapshotStreamAllocate(const SnapshotStreamStruct & allocateArgs, uint16_t & outStreamID)
144169
{
170+
outStreamID = kInvalidStreamID;
171+
172+
bool foundAvailableStream = false;
173+
145174
for (SnapshotStream & stream : snapshotStreams)
146175
{
147-
// TODO: Match more params
148-
if (!stream.isAllocated && stream.codec == allocateArgs.imageCodec)
176+
if (!stream.isAllocated)
149177
{
150-
stream.isAllocated = true;
151-
outStreamID = stream.id;
152-
return CameraError::SUCCESS;
178+
foundAvailableStream = true;
179+
180+
if (stream.codec == allocateArgs.imageCodec)
181+
{
182+
stream.isAllocated = true;
183+
outStreamID = stream.id;
184+
return CameraError::SUCCESS;
185+
}
153186
}
154187
}
155188

189+
if (!foundAvailableStream)
190+
{
191+
return CameraError::ERROR_RESOURCE_EXHAUSTED;
192+
}
193+
156194
return CameraError::ERROR_SNAPSHOT_STREAM_ALLOC_FAILED;
157195
}
158196

examples/camera-app/linux/src/clusters/camera-avstream-mgmt/camera-av-stream-manager.cpp

+24-18
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,15 @@ Protocols::InteractionModel::Status CameraAVStreamManager::VideoStreamAllocate(c
4343
{
4444
outStreamID = kInvalidStreamID;
4545

46-
if (CameraDevice::GetInstance().VideoStreamAllocate(allocateArgs, outStreamID) == CameraError::SUCCESS)
46+
CameraError error = CameraDevice::GetInstance().VideoStreamAllocate(allocateArgs, outStreamID);
47+
switch (error)
4748
{
48-
return Status::Success;
49-
}
50-
else
51-
{
52-
return Status::Failure;
49+
case CameraError::SUCCESS:
50+
return Status::Success;
51+
case CameraError::ERROR_RESOURCE_EXHAUSTED:
52+
return Status::ResourceExhausted;
53+
default:
54+
return Status::Failure;
5355
}
5456
}
5557

@@ -83,13 +85,15 @@ Protocols::InteractionModel::Status CameraAVStreamManager::AudioStreamAllocate(c
8385
{
8486
outStreamID = kInvalidStreamID;
8587

86-
if (CameraDevice::GetInstance().AudioStreamAllocate(allocateArgs, outStreamID) == CameraError::SUCCESS)
88+
CameraError error = CameraDevice::GetInstance().AudioStreamAllocate(allocateArgs, outStreamID);
89+
switch (error)
8790
{
88-
return Status::Success;
89-
}
90-
else
91-
{
92-
return Status::Failure;
91+
case CameraError::SUCCESS:
92+
return Status::Success;
93+
case CameraError::ERROR_RESOURCE_EXHAUSTED:
94+
return Status::ResourceExhausted;
95+
default:
96+
return Status::Failure;
9397
}
9498
}
9599

@@ -105,13 +109,15 @@ Protocols::InteractionModel::Status CameraAVStreamManager::SnapshotStreamAllocat
105109
{
106110
outStreamID = kInvalidStreamID;
107111

108-
if (CameraDevice::GetInstance().SnapshotStreamAllocate(allocateArgs, outStreamID) == CameraError::SUCCESS)
109-
{
110-
return Status::Success;
111-
}
112-
else
112+
CameraError error = CameraDevice::GetInstance().SnapshotStreamAllocate(allocateArgs, outStreamID);
113+
switch (error)
113114
{
114-
return Status::Failure;
115+
case CameraError::SUCCESS:
116+
return Status::Success;
117+
case CameraError::ERROR_RESOURCE_EXHAUSTED:
118+
return Status::ResourceExhausted;
119+
default:
120+
return Status::Failure;
115121
}
116122
}
117123

0 commit comments

Comments
 (0)