Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,27 @@ package protocbridge.frontend

import protocbridge.{ExtraEnv, ProtocCodeGenerator}

import java.net.ServerSocket
import java.net.{InetAddress, ServerSocket}
import java.nio.file.{Files, Path}
import scala.concurrent.ExecutionContext.Implicits.global
import scala.concurrent.{Future, blocking}

/** PluginFrontend for Windows and macOS where a server socket is used.
*/
abstract class SocketBasedPluginFrontend extends PluginFrontend {

case class InternalState(serverSocket: ServerSocket, shellScript: Path)

override def prepare(
plugin: ProtocCodeGenerator,
env: ExtraEnv
): (Path, InternalState) = {
val ss = new ServerSocket(0) // Bind to any available port.

/** we need to specify an address, otherwise it uses ANY (*.* in netstat)
* which does not conflict with existing 'localhost' sockets on macos,
* resulting in a conflict later on in MacPluginFrontend
*/
val ss = new ServerSocket(0, 50, InetAddress.getByName("127.0.0.1"))
val sh = createShellScript(ss.getLocalPort)

Future {
Expand Down
Loading