-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the language server into toolchain's busybox. (#4469)
Removes the separate language server binary; I'm not sure we need to provide it. Instead, `carbon language-server` is added as a subcommand. Moves //language_server to //toolchain/language_server. Splits into a trivial language_server.h, and a substantive server.h. I wasn't sure about a better name, but wanted the split similar to check/check.h, lex/lex.h, etc. At the same time, the class is probably going to be a little big so not a good fit to through into just a cpp file. This fixes some style issues with the language server class, but generally I'm trying to not address things here in order to keep it simpler.
- Loading branch information
Showing
17 changed files
with
197 additions
and
94 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,6 @@ jobs: | |
toolchain: | ||
- 'common/**' | ||
- 'core/**' | ||
- 'language_server/**' | ||
- 'testing/**' | ||
- 'toolchain/**' | ||
|
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 was deleted.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#include "toolchain/driver/language_server_subcommand.h" | ||
|
||
#include "toolchain/language_server/language_server.h" | ||
|
||
namespace Carbon { | ||
|
||
constexpr CommandLine::CommandInfo LanguageServerSubcommand::Info = { | ||
.name = "language-server", | ||
.help = R"""( | ||
Runs the language server. | ||
)""", | ||
}; | ||
|
||
auto LanguageServerSubcommand::Run(DriverEnv& driver_env) -> DriverResult { | ||
// TODO: Consider a way to override stdin, but it's a `FILE*` so less | ||
// convenient to work with. | ||
auto err = LanguageServer::Run(stdin, driver_env.output_stream); | ||
if (!err.ok()) { | ||
driver_env.error_stream << "error: " << err.error() << "\n"; | ||
} | ||
return {.success = err.ok()}; | ||
} | ||
|
||
} // namespace Carbon |
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,27 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#ifndef CARBON_TOOLCHAIN_DRIVER_LANGUAGE_SERVER_SUBCOMMAND_H_ | ||
#define CARBON_TOOLCHAIN_DRIVER_LANGUAGE_SERVER_SUBCOMMAND_H_ | ||
|
||
#include "common/command_line.h" | ||
#include "llvm/ADT/SmallVector.h" | ||
#include "llvm/ADT/StringRef.h" | ||
#include "toolchain/driver/codegen_options.h" | ||
#include "toolchain/driver/driver_env.h" | ||
#include "toolchain/driver/driver_subcommand.h" | ||
|
||
namespace Carbon { | ||
|
||
// Implements the link subcommand of the driver. | ||
class LanguageServerSubcommand : public DriverSubcommand { | ||
public: | ||
static const CommandLine::CommandInfo Info; | ||
|
||
auto Run(DriverEnv& driver_env) -> DriverResult override; | ||
}; | ||
|
||
} // namespace Carbon | ||
|
||
#endif // CARBON_TOOLCHAIN_DRIVER_LANGUAGE_SERVER_SUBCOMMAND_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
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,17 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#include "toolchain/language_server/language_server.h" | ||
|
||
#include "toolchain/language_server/server.h" | ||
|
||
namespace Carbon::LanguageServer { | ||
|
||
auto Run(std::FILE* input_stream, llvm::raw_ostream& output_stream) | ||
-> ErrorOr<Success> { | ||
Server server(input_stream, output_stream); | ||
return server.Run(); | ||
} | ||
|
||
} // namespace Carbon::LanguageServer |
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,19 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#ifndef CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_H_ | ||
#define CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_H_ | ||
|
||
#include "common/error.h" | ||
#include "common/ostream.h" | ||
|
||
namespace Carbon::LanguageServer { | ||
|
||
// Start the language server. | ||
auto Run(std::FILE* input_stream, llvm::raw_ostream& output_stream) | ||
-> ErrorOr<Success>; | ||
|
||
} // namespace Carbon::LanguageServer | ||
|
||
#endif // CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_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
Oops, something went wrong.