(Optionally) add an additional suffix namespace to generated fbs files. (#5698)
[platform/upstream/flatbuffers.git] / tests / generate_code.bat
1 :: Copyright 2015 Google Inc. All rights reserved.
2 ::
3 :: Licensed under the Apache License, Version 2.0 (the "License");
4 :: you may not use this file except in compliance with the License.
5 :: You may obtain a copy of the License at
6 ::
7 ::     http://www.apache.org/licenses/LICENSE-2.0
8 ::
9 :: Unless required by applicable law or agreed to in writing, software
10 :: distributed under the License is distributed on an "AS IS" BASIS,
11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 :: See the License for the specific language governing permissions and
13 :: limitations under the License.
14
15 @SETLOCAL
16
17 set buildtype=Release
18 if "%1"=="-b" set buildtype=%2
19
20 set commandline=%*
21
22
23 if NOT "%commandline%"=="%commandline:--cpp-std c++0x=%" (
24   set TEST_CPP_FLAGS=--cpp-std c++0x
25 ) else (
26   @rem --cpp-std is defined by flatc default settings.
27   set TEST_CPP_FLAGS=
28 )
29
30 set TEST_CPP_FLAGS=--gen-compare --cpp-ptr-type flatbuffers::unique_ptr %TEST_CPP_FLAGS%
31 set TEST_BASE_FLAGS=--reflect-names --gen-mutable --gen-object-api
32 set TEST_NOINCL_FLAGS=%TEST_BASE_FLAGS% --no-includes --no-fb-import
33
34 ..\%buildtype%\flatc.exe --binary --cpp --java --kotlin --csharp --dart --go --lobster --lua --js --ts --php --rust --grpc ^
35 %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% -I include_test monster_test.fbs monsterdata_test.json || goto FAIL
36
37 ..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% --no-fb-import -I include_test monster_test.fbs monsterdata_test.json || goto FAIL
38
39 ..\%buildtype%\flatc.exe --binary --cpp --java --csharp --dart --go --lobster --lua --js --ts --php --python --rust ^
40 %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% -o namespace_test namespace_test/namespace_test1.fbs namespace_test/namespace_test2.fbs || goto FAIL
41
42 ..\%buildtype%\flatc.exe --cpp --java --csharp --js --ts --php %TEST_BASE_FLAGS% %TEST_CPP_FLAGS% -o union_vector ./union_vector/union_vector.fbs || goto FAIL
43 ..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins -I include_test monster_test.fbs || goto FAIL
44 ..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins -I include_test arrays_test.fbs || goto FAIL
45 ..\%buildtype%\flatc.exe --jsonschema --schema -I include_test monster_test.fbs || goto FAIL
46 ..\%buildtype%\flatc.exe --cpp --java --csharp --jsonschema %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% --scoped-enums arrays_test.fbs || goto FAIL
47 ..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% arrays_test.fbs || goto FAIL
48 ..\%buildtype%\flatc.exe --cpp %TEST_BASE_FLAGS% --cpp-ptr-type flatbuffers::unique_ptr native_type_test.fbs || goto FAIL
49
50 if NOT "%MONSTER_EXTRA%"=="skip" (
51   @echo Generate MosterExtra
52   ..\%buildtype%\flatc.exe --cpp --java --csharp %TEST_NOINCL_FLAGS% %TEST_CPP_FLAGS% monster_extra.fbs monsterdata_extra.json || goto FAIL
53   ..\%buildtype%\flatc.exe --python %TEST_BASE_FLAGS% monster_extra.fbs monsterdata_extra.json || goto FAIL
54 ) else (
55   @echo monster_extra.fbs skipped (the strtod function from MSVC2013 or older doesn't support NaN/Inf arguments)
56 )
57
58 set TEST_CPP17_FLAGS=--cpp --cpp-std c++17 -o ./cpp17/generated_cpp17 %TEST_NOINCL_FLAGS%
59 if NOT "%MONSTER_EXTRA%"=="skip" (
60   @rem Flag c++17 requires Clang6, GCC7, MSVC2017 (_MSC_VER >= 1914)  or higher.
61   ..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% -I include_test monster_test.fbs  || goto FAIL
62   @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% arrays_test.fbs                   || goto FAIL
63   @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% native_type_test.fbs              || goto FAIL
64   @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% monster_extra.fbs                 || goto FAIL
65   @rem..\%buildtype%\flatc.exe %TEST_CPP17_FLAGS% ./union_vector/union_vector.fbs   || goto FAIL
66 )
67
68 cd ../samples
69 ..\%buildtype%\flatc.exe --cpp --lobster %TEST_BASE_FLAGS% %TEST_CPP_FLAGS% monster.fbs || goto FAIL
70 ..\%buildtype%\flatc.exe -b --schema --bfbs-comments --bfbs-builtins monster.fbs || goto FAIL
71 cd ../reflection
72 call generate_code.bat %1 %2 || goto FAIL
73
74 set EXITCODE=0
75 goto SUCCESS
76 :FAIL
77 set EXITCODE=1
78 :SUCCESS
79 cd ../tests
80 EXIT /B %EXITCODE%