Skip to content

Commit 59fb9bb

Browse files
committed
Add compiled starter for scala
1 parent 042f7aa commit 59fb9bb

File tree

16 files changed

+236
-41
lines changed

16 files changed

+236
-41
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to compile your program on CodeCrafters
4+
#
5+
# This runs before .codecrafters/run.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
sbt assembly
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to run your program on CodeCrafters
4+
#
5+
# This runs after .codecrafters/compile.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
exec java -jar ./target/scala-3.3.5/sqlite.jar "$@"
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

compiled_starters/scala/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
**/target
2+
/.bloop/
3+
/.bsp/
4+
/.metals/
5+
/project/.bloop/
6+
metals.sbt
7+
metals/project/

compiled_starters/scala/README.md

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
![progress-banner](https://codecrafters.io/landing/images/default_progress_banners/sqlite.png)
2+
3+
This is a starting point for Scala solutions to the
4+
["Build Your Own SQLite" Challenge](https://codecrafters.io/challenges/sqlite).
5+
6+
In this challenge, you'll build a barebones SQLite implementation that supports
7+
basic SQL queries like `SELECT`. Along the way we'll learn about
8+
[SQLite's file format](https://www.sqlite.org/fileformat.html), how indexed data
9+
is
10+
[stored in B-trees](https://jvns.ca/blog/2014/10/02/how-does-sqlite-work-part-2-btrees/)
11+
and more.
12+
13+
**Note**: If you're viewing this repo on GitHub, head over to
14+
[codecrafters.io](https://codecrafters.io) to try the challenge.
15+
16+
# Passing the first stage
17+
18+
The entry point for your SQLite implementation is in `src/main/scala/Main.scala`.
19+
Study and uncomment the relevant code, and push your changes to pass the first
20+
stage:
21+
22+
```sh
23+
git commit -am "pass 1st stage" # any msg
24+
git push origin master
25+
```
26+
27+
Time to move on to the next stage!
28+
29+
# Stage 2 & beyond
30+
31+
Note: This section is for stages 2 and beyond.
32+
33+
1. Ensure you have `mvn` installed locally
34+
1. Run `./your_program.sh` to run your program, which is implemented in
35+
`src/main/scala/Main.scala`.
36+
1. Commit your changes and run `git push origin master` to submit your solution
37+
to CodeCrafters. Test output will be streamed to your terminal.
38+
39+
# Sample Databases
40+
41+
To make it easy to test queries locally, we've added a sample database in the
42+
root of this repository: `sample.db`.
43+
44+
This contains two tables: `apples` & `oranges`. You can use this to test your
45+
implementation for the first 6 stages.
46+
47+
You can explore this database by running queries against it like this:
48+
49+
```sh
50+
$ sqlite3 sample.db "select id, name from apples"
51+
1|Granny Smith
52+
2|Fuji
53+
3|Honeycrisp
54+
4|Golden Delicious
55+
```
56+
57+
There are two other databases that you can use:
58+
59+
1. `superheroes.db`:
60+
- This is a small version of the test database used in the table-scan stage.
61+
- It contains one table: `superheroes`.
62+
- It is ~1MB in size.
63+
1. `companies.db`:
64+
- This is a small version of the test database used in the index-scan stage.
65+
- It contains one table: `companies`, and one index: `idx_companies_country`
66+
- It is ~7MB in size.
67+
68+
These aren't included in the repository because they're large in size. You can
69+
download them by running this script:
70+
71+
```sh
72+
./download_sample_databases.sh
73+
```
74+
75+
If the script doesn't work for some reason, you can download the databases
76+
directly from
77+
[codecrafters-io/sample-sqlite-databases](https://github.com/codecrafters-io/sample-sqlite-databases).

compiled_starters/scala/build.sbt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ThisBuild / scalaVersion := "3.3.5"
2+
ThisBuild / version := "0.1.0-SNAPSHOT"
3+
ThisBuild / organization := "com.CodeCrafters"
4+
ThisBuild / organizationName := "CodeCrafters"
5+
6+
assembly / assemblyJarName := "sqlite"
7+
8+
lazy val root = (project in file("."))
9+
.settings(
10+
name := "codecrafter-sqlite",
11+
// List your dependencies here
12+
libraryDependencies ++= Seq(
13+
),
14+
)
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set this to true if you want debug logs.
2+
#
3+
# These can be VERY verbose, so we suggest turning them off
4+
# unless you really need them.
5+
debug: false
6+
7+
# Use this to change the Java version used to run your code
8+
# on Codecrafters.
9+
#
10+
# Available versions: java-23
11+
language_pack: java-17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
echo "Downloading superheroes.db: ~1MB (used in stage 7)"
4+
curl -Lo superheroes.db https://raw.githubusercontent.com/codecrafters-io/sample-sqlite-databases/master/superheroes.db
5+
6+
echo "Downloading companies.db: ~7MB (used in stage 8)"
7+
curl -Lo companies.db https://raw.githubusercontent.com/codecrafters-io/sample-sqlite-databases/master/companies.db
8+
9+
echo "Sample databases downloaded."
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.10.7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
3+
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")

compiled_starters/scala/sample.db

16 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import java.io.File
2+
import java.io.FileInputStream
3+
import java.io.IOException
4+
import java.nio.ByteBuffer
5+
6+
object Main extends App {
7+
if args.length < 2
8+
then {
9+
println("Missing <database path> and <command>")
10+
System.exit(0);
11+
}
12+
val databaseFilePath = args(0);
13+
val command = args(1);
14+
command match {
15+
case ".dbinfo" => {
16+
val databaseFile = new FileInputStream(new File(databaseFilePath))
17+
databaseFile.skip(16)
18+
val pageSizeBytes = new Array[Byte](2)
19+
databaseFile.read(pageSizeBytes)
20+
val pageSizeSigned = ByteBuffer.wrap(pageSizeBytes).getShort()
21+
val pageSize = pageSizeSigned & 0xFFFF
22+
println("database page size: " + pageSize)
23+
}
24+
case _ => println("Missing or invalid command passed: " + command)
25+
}
26+
}
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/sh
2+
#
3+
# Use this script to run your program LOCALLY.
4+
#
5+
# Note: Changing this script WILL NOT affect how CodeCrafters runs your program.
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit early if any commands fail
10+
11+
# Copied from .codecrafters/compile.sh
12+
#
13+
# - Edit this to change how your program compiles locally
14+
# - Edit .codecrafters/compile.sh to change how your program compiles remotely
15+
(
16+
cd "$(dirname "$0")" # Ensure compile steps are run within the repository directory
17+
sbt assembly
18+
)
19+
20+
# Copied from .codecrafters/run.sh
21+
#
22+
# - Edit this to change how your program runs locally
23+
# - Edit .codecrafters/run.sh to change how your program runs remotely
24+
exec java -jar ./target/scala-3.3.5/sqlite.jar "$@"

solutions/scala/01-dr6/diff/src/main/java/Main.java.diff

-40
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
--- starter_templates/scala/code/src/main/scala/Main.scala 2025-03-27 19:30:51.374671531 -0400
2+
+++ solutions/scala/01-dr6/code/src/main/scala/Main.scala 2025-03-27 19:22:20.930550947 -0400
3+
@@ -1,31 +1,26 @@
4+
import java.io.File
5+
import java.io.FileInputStream
6+
import java.io.IOException
7+
import java.nio.ByteBuffer
8+
9+
object Main extends App {
10+
if args.length < 2
11+
then {
12+
println("Missing <database path> and <command>")
13+
System.exit(0);
14+
}
15+
val databaseFilePath = args(0);
16+
val command = args(1);
17+
command match {
18+
case ".dbinfo" => {
19+
val databaseFile = new FileInputStream(new File(databaseFilePath))
20+
databaseFile.skip(16)
21+
val pageSizeBytes = new Array[Byte](2)
22+
databaseFile.read(pageSizeBytes)
23+
val pageSizeSigned = ByteBuffer.wrap(pageSizeBytes).getShort()
24+
val pageSize = pageSizeSigned & 0xFFFF
25+
-
26+
- // You can use print statements as follows for debugging, they'll be visible when running tests.
27+
- System.err.println("Logs from your program will appear here!")
28+
-
29+
- // Uncomment this block to pass the first stage
30+
- // println("database page size: " + pageSize)
31+
+ println("database page size: " + pageSize)
32+
}
33+
case _ => println("Missing or invalid command passed: " + command)
34+
}
35+
}

starter_templates/scala/code/src/main/scala/Main.scala

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ object Main extends App {
1919
databaseFile.read(pageSizeBytes)
2020
val pageSizeSigned = ByteBuffer.wrap(pageSizeBytes).getShort()
2121
val pageSize = pageSizeSigned & 0xFFFF
22-
println("database page size: " + pageSize)
22+
23+
// You can use print statements as follows for debugging, they'll be visible when running tests.
24+
System.err.println("Logs from your program will appear here!")
25+
26+
// Uncomment this block to pass the first stage
27+
// println("database page size: " + pageSize)
2328
}
2429
case _ => println("Missing or invalid command passed: " + command)
2530
}

0 commit comments

Comments
 (0)