-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shared_lib: Tests for protozero serialization
These cover most of the protozero macros. The sample protos in this test have been generated from the schemas at `external/perfetto/src/protozero/test/example_proto/`. A future commit contains the script that generates the sample headers from the schema. Bug: 237053538 Change-Id: Iaae9dabd14c9989460a2025d3042deee37438f4e
- Loading branch information
1 parent
334ca7d
commit 2471cd8
Showing
10 changed files
with
1,049 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (C) 2023 The Android Open Source Project | ||
# | ||
# 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. | ||
|
||
source_set("protos") { | ||
testonly = true | ||
sources = [ | ||
"library.pzc.h", | ||
"library_internals/galaxies.pzc.h", | ||
"test_messages.pzc.h", | ||
"upper_import.pzc.h", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright (C) 2023 The Android Open Source Project | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_PZC_H_ | ||
#define SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_PZC_H_ | ||
|
||
#include <stdbool.h> | ||
#include <stdint.h> | ||
|
||
#include "perfetto/public/pb_macros.h" | ||
#include "src/shared_lib/test/protos/library_internals/galaxies.pzc.h" | ||
|
||
PERFETTO_PB_ENUM_IN_MSG(protozero_test_protos_TransgalacticMessage, | ||
MessageType){ | ||
PERFETTO_PB_ENUM_IN_MSG_ENTRY(protozero_test_protos_TransgalacticMessage, | ||
REGULAR) = 0, | ||
PERFETTO_PB_ENUM_IN_MSG_ENTRY(protozero_test_protos_TransgalacticMessage, | ||
EXPRESS) = 1, | ||
}; | ||
|
||
PERFETTO_PB_MSG(protozero_test_protos_TransgalacticMessage); | ||
PERFETTO_PB_FIELD(protozero_test_protos_TransgalacticMessage, | ||
VARINT, | ||
enum protozero_test_protos_Galaxy, | ||
origin_galaxy, | ||
1); | ||
PERFETTO_PB_FIELD(protozero_test_protos_TransgalacticMessage, | ||
STRING, | ||
const char*, | ||
origin_planet, | ||
2); | ||
PERFETTO_PB_FIELD(protozero_test_protos_TransgalacticMessage, | ||
VARINT, | ||
enum protozero_test_protos_Galaxy, | ||
destination_galaxy, | ||
3); | ||
PERFETTO_PB_FIELD(protozero_test_protos_TransgalacticMessage, | ||
STRING, | ||
const char*, | ||
destination_planet, | ||
4); | ||
PERFETTO_PB_FIELD(protozero_test_protos_TransgalacticMessage, | ||
STRING, | ||
const char*, | ||
proto_message, | ||
5); | ||
|
||
#endif // SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_PZC_H_ |
32 changes: 32 additions & 0 deletions
32
src/shared_lib/test/protos/library_internals/galaxies.pzc.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright (C) 2023 The Android Open Source Project | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_INTERNALS_GALAXIES_PZC_H_ | ||
#define SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_INTERNALS_GALAXIES_PZC_H_ | ||
|
||
#include <stdbool.h> | ||
#include <stdint.h> | ||
|
||
#include "perfetto/public/pb_macros.h" | ||
#include "src/shared_lib/test/protos/upper_import.pzc.h" | ||
|
||
PERFETTO_PB_ENUM(protozero_test_protos_Galaxy){ | ||
PERFETTO_PB_ENUM_ENTRY(protozero_test_protos_MILKY_WAY) = 1, | ||
PERFETTO_PB_ENUM_ENTRY(protozero_test_protos_ANDROMEDA) = 2, | ||
PERFETTO_PB_ENUM_ENTRY(protozero_test_protos_SUNFLOWER) = 3, | ||
}; | ||
|
||
#endif // SRC_SHARED_LIB_TEST_PROTOS_LIBRARY_INTERNALS_GALAXIES_PZC_H_ |
Oops, something went wrong.