ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 8 | #include <fstream> |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 9 | #include "src/sksl/SkSLCompiler.h" |
| 10 | #include "src/sksl/SkSLFileOutputStream.h" |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 11 | |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 12 | // Given the path to a file (e.g. src/gpu/effects/GrFooFragmentProcessor.fp) and the expected |
| 13 | // filename prefix and suffix (e.g. "Gr" and ".fp"), returns the "base name" of the |
| 14 | // file (in this case, 'FooFragmentProcessor'). If no match, returns the empty string. |
| 15 | static SkSL::String base_name(const char* fpPath, const char* prefix, const char* suffix) { |
| 16 | SkSL::String result; |
| 17 | const char* end = fpPath + strlen(fpPath); |
| 18 | const char* fileName = end; |
| 19 | // back up until we find a slash |
| 20 | while (fileName != fpPath && '/' != *(fileName - 1) && '\\' != *(fileName - 1)) { |
| 21 | --fileName; |
| 22 | } |
| 23 | if (!strncmp(fileName, prefix, strlen(prefix)) && |
| 24 | !strncmp(end - strlen(suffix), suffix, strlen(suffix))) { |
| 25 | result.append(fileName + strlen(prefix), end - fileName - strlen(prefix) - strlen(suffix)); |
| 26 | } |
| 27 | return result; |
| 28 | } |
| 29 | |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 30 | /** |
| 31 | * Very simple standalone executable to facilitate testing. |
| 32 | */ |
| 33 | int main(int argc, const char** argv) { |
| 34 | if (argc != 3) { |
| 35 | printf("usage: skslc <input> <output>\n"); |
| 36 | exit(1); |
| 37 | } |
| 38 | SkSL::Program::Kind kind; |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 39 | SkSL::String input(argv[1]); |
| 40 | if (input.endsWith(".vert")) { |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 41 | kind = SkSL::Program::kVertex_Kind; |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 42 | } else if (input.endsWith(".frag")) { |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 43 | kind = SkSL::Program::kFragment_Kind; |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 44 | } else if (input.endsWith(".geom")) { |
Ethan Nicholas | 52cad15 | 2017-02-16 16:37:32 -0500 | [diff] [blame] | 45 | kind = SkSL::Program::kGeometry_Kind; |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 46 | } else if (input.endsWith(".fp")) { |
| 47 | kind = SkSL::Program::kFragmentProcessor_Kind; |
Ethan Nicholas | 0054311 | 2018-07-31 09:44:36 -0400 | [diff] [blame] | 48 | } else if (input.endsWith(".stage")) { |
| 49 | kind = SkSL::Program::kPipelineStage_Kind; |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 50 | } else { |
Ethan Nicholas | 0054311 | 2018-07-31 09:44:36 -0400 | [diff] [blame] | 51 | printf("input filename must end in '.vert', '.frag', '.geom', '.fp', or '.stage'\n"); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 52 | exit(1); |
| 53 | } |
| 54 | |
| 55 | std::ifstream in(argv[1]); |
Ethan Nicholas | 9e1138d | 2016-11-21 10:39:35 -0500 | [diff] [blame] | 56 | std::string stdText((std::istreambuf_iterator<char>(in)), |
| 57 | std::istreambuf_iterator<char>()); |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 58 | SkSL::String text(stdText.c_str()); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 59 | if (in.rdstate()) { |
| 60 | printf("error reading '%s'\n", argv[1]); |
| 61 | exit(2); |
| 62 | } |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 63 | SkSL::Program::Settings settings; |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 64 | settings.fArgs.insert(std::make_pair("gpImplementsDistanceVector", 1)); |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 65 | SkSL::String name(argv[2]); |
Ethan Nicholas | 9e1138d | 2016-11-21 10:39:35 -0500 | [diff] [blame] | 66 | if (name.endsWith(".spirv")) { |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 67 | SkSL::FileOutputStream out(argv[2]); |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 68 | SkSL::Compiler compiler; |
Ethan Nicholas | 9e1138d | 2016-11-21 10:39:35 -0500 | [diff] [blame] | 69 | if (!out.isValid()) { |
| 70 | printf("error writing '%s'\n", argv[2]); |
| 71 | exit(4); |
| 72 | } |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 73 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings); |
| 74 | if (!program || !compiler.toSPIRV(*program, out)) { |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 75 | printf("%s", compiler.errorText().c_str()); |
| 76 | exit(3); |
| 77 | } |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 78 | if (!out.close()) { |
| 79 | printf("error writing '%s'\n", argv[2]); |
| 80 | exit(4); |
| 81 | } |
Ethan Nicholas | 9e1138d | 2016-11-21 10:39:35 -0500 | [diff] [blame] | 82 | } else if (name.endsWith(".glsl")) { |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 83 | SkSL::FileOutputStream out(argv[2]); |
Ethan Nicholas | 9e1138d | 2016-11-21 10:39:35 -0500 | [diff] [blame] | 84 | SkSL::Compiler compiler; |
| 85 | if (!out.isValid()) { |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 86 | printf("error writing '%s'\n", argv[2]); |
| 87 | exit(4); |
| 88 | } |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 89 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings); |
| 90 | if (!program || !compiler.toGLSL(*program, out)) { |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 91 | printf("%s", compiler.errorText().c_str()); |
| 92 | exit(3); |
| 93 | } |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 94 | if (!out.close()) { |
| 95 | printf("error writing '%s'\n", argv[2]); |
| 96 | exit(4); |
| 97 | } |
Ethan Nicholas | cc30577 | 2017-10-13 16:17:45 -0400 | [diff] [blame] | 98 | } else if (name.endsWith(".metal")) { |
| 99 | SkSL::FileOutputStream out(argv[2]); |
| 100 | SkSL::Compiler compiler; |
| 101 | if (!out.isValid()) { |
| 102 | printf("error writing '%s'\n", argv[2]); |
| 103 | exit(4); |
| 104 | } |
| 105 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings); |
| 106 | if (!program || !compiler.toMetal(*program, out)) { |
| 107 | printf("%s", compiler.errorText().c_str()); |
| 108 | exit(3); |
| 109 | } |
| 110 | if (!out.close()) { |
| 111 | printf("error writing '%s'\n", argv[2]); |
| 112 | exit(4); |
| 113 | } |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 114 | } else if (name.endsWith(".h")) { |
| 115 | SkSL::FileOutputStream out(argv[2]); |
Ethan Nicholas | 6e1cbc0 | 2017-07-14 10:12:15 -0400 | [diff] [blame] | 116 | SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag); |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 117 | if (!out.isValid()) { |
| 118 | printf("error writing '%s'\n", argv[2]); |
| 119 | exit(4); |
| 120 | } |
| 121 | settings.fReplaceSettings = false; |
| 122 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings); |
| 123 | if (!program || !compiler.toH(*program, base_name(argv[1], "Gr", ".fp"), out)) { |
| 124 | printf("%s", compiler.errorText().c_str()); |
| 125 | exit(3); |
| 126 | } |
| 127 | if (!out.close()) { |
| 128 | printf("error writing '%s'\n", argv[2]); |
| 129 | exit(4); |
| 130 | } |
| 131 | } else if (name.endsWith(".cpp")) { |
| 132 | SkSL::FileOutputStream out(argv[2]); |
Ethan Nicholas | 6e1cbc0 | 2017-07-14 10:12:15 -0400 | [diff] [blame] | 133 | SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag); |
Ethan Nicholas | 762466e | 2017-06-29 10:03:38 -0400 | [diff] [blame] | 134 | if (!out.isValid()) { |
| 135 | printf("error writing '%s'\n", argv[2]); |
| 136 | exit(4); |
| 137 | } |
| 138 | settings.fReplaceSettings = false; |
| 139 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings); |
| 140 | if (!program || !compiler.toCPP(*program, base_name(argv[1], "Gr", ".fp"), out)) { |
| 141 | printf("%s", compiler.errorText().c_str()); |
| 142 | exit(3); |
| 143 | } |
| 144 | if (!out.close()) { |
| 145 | printf("error writing '%s'\n", argv[2]); |
| 146 | exit(4); |
| 147 | } |
ethannicholas | 5961bc9 | 2016-10-12 06:39:56 -0700 | [diff] [blame] | 148 | } else { |
Ethan Nicholas | cc30577 | 2017-10-13 16:17:45 -0400 | [diff] [blame] | 149 | printf("expected output filename to end with '.spirv', '.glsl', '.cpp', '.h', or '.metal'"); |
| 150 | exit(1); |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 151 | } |
| 152 | } |