blob: b8009cddee11aae422adbe90769dec30e4f1ae99 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001/*
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
ethannicholasb3058bd2016-07-01 08:22:01 -07008#include <fstream>
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "src/sksl/SkSLCompiler.h"
10#include "src/sksl/SkSLFileOutputStream.h"
ethannicholasb3058bd2016-07-01 08:22:01 -070011
Ethan Nicholas762466e2017-06-29 10:03:38 -040012// 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.
15static 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
ethannicholasb3058bd2016-07-01 08:22:01 -070030/**
31 * Very simple standalone executable to facilitate testing.
32 */
33int 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 Nicholas762466e2017-06-29 10:03:38 -040039 SkSL::String input(argv[1]);
40 if (input.endsWith(".vert")) {
ethannicholasb3058bd2016-07-01 08:22:01 -070041 kind = SkSL::Program::kVertex_Kind;
Ethan Nicholas762466e2017-06-29 10:03:38 -040042 } else if (input.endsWith(".frag")) {
ethannicholasb3058bd2016-07-01 08:22:01 -070043 kind = SkSL::Program::kFragment_Kind;
Ethan Nicholas762466e2017-06-29 10:03:38 -040044 } else if (input.endsWith(".geom")) {
Ethan Nicholas52cad152017-02-16 16:37:32 -050045 kind = SkSL::Program::kGeometry_Kind;
Ethan Nicholas762466e2017-06-29 10:03:38 -040046 } else if (input.endsWith(".fp")) {
47 kind = SkSL::Program::kFragmentProcessor_Kind;
Ethan Nicholas00543112018-07-31 09:44:36 -040048 } else if (input.endsWith(".stage")) {
49 kind = SkSL::Program::kPipelineStage_Kind;
ethannicholasb3058bd2016-07-01 08:22:01 -070050 } else {
Ethan Nicholas00543112018-07-31 09:44:36 -040051 printf("input filename must end in '.vert', '.frag', '.geom', '.fp', or '.stage'\n");
ethannicholasb3058bd2016-07-01 08:22:01 -070052 exit(1);
53 }
54
55 std::ifstream in(argv[1]);
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050056 std::string stdText((std::istreambuf_iterator<char>(in)),
57 std::istreambuf_iterator<char>());
Ethan Nicholas0df1b042017-03-31 13:56:23 -040058 SkSL::String text(stdText.c_str());
ethannicholasb3058bd2016-07-01 08:22:01 -070059 if (in.rdstate()) {
60 printf("error reading '%s'\n", argv[1]);
61 exit(2);
62 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -050063 SkSL::Program::Settings settings;
Ethan Nicholas762466e2017-06-29 10:03:38 -040064 settings.fArgs.insert(std::make_pair("gpImplementsDistanceVector", 1));
Ethan Nicholas0df1b042017-03-31 13:56:23 -040065 SkSL::String name(argv[2]);
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050066 if (name.endsWith(".spirv")) {
Ethan Nicholas0df1b042017-03-31 13:56:23 -040067 SkSL::FileOutputStream out(argv[2]);
ethannicholas5961bc92016-10-12 06:39:56 -070068 SkSL::Compiler compiler;
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050069 if (!out.isValid()) {
70 printf("error writing '%s'\n", argv[2]);
71 exit(4);
72 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -050073 std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings);
74 if (!program || !compiler.toSPIRV(*program, out)) {
ethannicholas5961bc92016-10-12 06:39:56 -070075 printf("%s", compiler.errorText().c_str());
76 exit(3);
77 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -040078 if (!out.close()) {
79 printf("error writing '%s'\n", argv[2]);
80 exit(4);
81 }
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050082 } else if (name.endsWith(".glsl")) {
Ethan Nicholas0df1b042017-03-31 13:56:23 -040083 SkSL::FileOutputStream out(argv[2]);
Ethan Nicholas9e1138d2016-11-21 10:39:35 -050084 SkSL::Compiler compiler;
85 if (!out.isValid()) {
ethannicholas5961bc92016-10-12 06:39:56 -070086 printf("error writing '%s'\n", argv[2]);
87 exit(4);
88 }
Ethan Nicholas941e7e22016-12-12 15:33:30 -050089 std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, text, settings);
90 if (!program || !compiler.toGLSL(*program, out)) {
ethannicholas5961bc92016-10-12 06:39:56 -070091 printf("%s", compiler.errorText().c_str());
92 exit(3);
93 }
Ethan Nicholas0df1b042017-03-31 13:56:23 -040094 if (!out.close()) {
95 printf("error writing '%s'\n", argv[2]);
96 exit(4);
97 }
Ethan Nicholascc305772017-10-13 16:17:45 -040098 } 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 Nicholas762466e2017-06-29 10:03:38 -0400114 } else if (name.endsWith(".h")) {
115 SkSL::FileOutputStream out(argv[2]);
Ethan Nicholas6e1cbc02017-07-14 10:12:15 -0400116 SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag);
Ethan Nicholas762466e2017-06-29 10:03:38 -0400117 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 Nicholas6e1cbc02017-07-14 10:12:15 -0400133 SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag);
Ethan Nicholas762466e2017-06-29 10:03:38 -0400134 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 }
ethannicholas5961bc92016-10-12 06:39:56 -0700148 } else {
Ethan Nicholascc305772017-10-13 16:17:45 -0400149 printf("expected output filename to end with '.spirv', '.glsl', '.cpp', '.h', or '.metal'");
150 exit(1);
ethannicholasb3058bd2016-07-01 08:22:01 -0700151 }
152}