-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmodels.py
More file actions
226 lines (185 loc) · 8.18 KB
/
models.py
File metadata and controls
226 lines (185 loc) · 8.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
from sqlalchemy import (
Column,
Integer,
BigInteger,
String,
DateTime,
Text,
ForeignKey,
JSON,
Index,
Boolean,
UniqueConstraint,
)
from sqlalchemy.orm import declarative_base, relationship
from datetime import datetime, UTC
Base = declarative_base()
class Commit(Base):
__tablename__ = "commits"
sha = Column(String(40), primary_key=True)
timestamp = Column(DateTime, nullable=False)
message = Column(Text, nullable=False)
author = Column(String(255), nullable=False)
python_major = Column(Integer, nullable=False)
python_minor = Column(Integer, nullable=False)
python_patch = Column(Integer, nullable=False)
runs = relationship("Run", back_populates="commit")
__table_args__ = (
Index("idx_commits_timestamp", "timestamp"),
Index(
"idx_commits_python_version", "python_major", "python_minor", "python_patch"
),
Index(
"idx_commits_timestamp_python_version",
"timestamp",
"python_major",
"python_minor",
),
Index("idx_commits_sha_timestamp", "sha", "timestamp"),
)
class Binary(Base):
__tablename__ = "binaries"
id = Column(String(50), primary_key=True)
name = Column(String(255), nullable=False)
flags = Column(JSON, nullable=False) # Array of strings
description = Column(
Text, nullable=True
) # Description of what this binary configuration does
color = Column(String(7), nullable=True, default="#8b5cf6") # Hex color code
icon = Column(String(50), nullable=True, default="server") # Lucide icon name
display_order = Column(Integer, nullable=True, default=0) # Order for display
runs = relationship("Run", back_populates="binary")
class Environment(Base):
__tablename__ = "environments"
id = Column(String(50), primary_key=True)
name = Column(String(255), nullable=False)
description = Column(Text, nullable=True)
runs = relationship("Run", back_populates="environment")
class Run(Base):
__tablename__ = "runs"
run_id = Column(String(100), primary_key=True)
commit_sha = Column(String(40), ForeignKey("commits.sha"), nullable=False)
binary_id = Column(String(50), ForeignKey("binaries.id"), nullable=False)
environment_id = Column(String(50), ForeignKey("environments.id"), nullable=False)
python_major = Column(Integer, nullable=False)
python_minor = Column(Integer, nullable=False)
python_patch = Column(Integer, nullable=False)
timestamp = Column(DateTime, nullable=False)
commit = relationship("Commit", back_populates="runs")
binary = relationship("Binary", back_populates="runs")
environment = relationship("Environment", back_populates="runs")
benchmark_results = relationship("BenchmarkResult", back_populates="run")
__table_args__ = (
UniqueConstraint(
"commit_sha", "binary_id", "environment_id", name="unique_commit_binary_env"
),
Index("idx_runs_timestamp", "timestamp"),
Index(
"idx_runs_python_version", "python_major", "python_minor", "python_patch"
),
Index(
"idx_runs_binary_env_timestamp", "binary_id", "environment_id", "timestamp"
),
Index(
"idx_runs_env_timestamp", "environment_id", "timestamp"
), # For environment-based queries
Index(
"idx_runs_env_python_timestamp",
"environment_id",
"python_major",
"python_minor",
"timestamp",
), # For filtered queries
)
class BenchmarkResult(Base):
__tablename__ = "benchmark_results"
id = Column(String(200), primary_key=True)
run_id = Column(String(100), ForeignKey("runs.run_id"), nullable=False)
benchmark_name = Column(String(100), nullable=False)
high_watermark_bytes = Column(BigInteger, nullable=False)
allocation_histogram = Column(JSON, nullable=False) # Array of [size, count] tuples
total_allocated_bytes = Column(BigInteger, nullable=False)
top_allocating_functions = Column(JSON, nullable=False) # Array of function objects
flamegraph_html = Column(Text, nullable=True) # HTML content of the flamegraph
run = relationship("Run", back_populates="benchmark_results")
__table_args__ = (
Index("idx_benchmark_results_run_benchmark", "run_id", "benchmark_name"),
Index("idx_benchmark_results_benchmark_name", "benchmark_name"),
Index("idx_benchmark_results_name_run", "benchmark_name", "run_id"),
Index(
"idx_benchmark_results_run_high_watermark", "run_id", "high_watermark_bytes"
), # For sorted queries
)
class AuthToken(Base):
__tablename__ = "auth_tokens"
id = Column(Integer, primary_key=True, autoincrement=True)
token = Column(
String(64), unique=True, nullable=False, index=True
) # SHA-256 hex = 64 chars
name = Column(String(255), nullable=False) # Human-readable name for the token
description = Column(Text, nullable=True) # Optional description
created_at = Column(
DateTime, nullable=False, default=lambda: datetime.now(UTC).replace(tzinfo=None)
)
last_used = Column(DateTime, nullable=True) # Track when token was last used
is_active = Column(Boolean, nullable=False, default=True) # Allow disabling tokens
__table_args__ = (
Index("idx_auth_tokens_token", "token"),
Index("idx_auth_tokens_active", "is_active"),
)
class AdminUser(Base):
__tablename__ = "admin_users"
id = Column(Integer, primary_key=True, autoincrement=True)
github_username = Column(String(255), unique=True, nullable=False, index=True)
github_user_id = Column(Integer, nullable=True) # Optional, for reference
added_by = Column(String(255), nullable=False) # Who added this admin
added_at = Column(
DateTime, nullable=False, default=lambda: datetime.now(UTC).replace(tzinfo=None)
)
is_active = Column(Boolean, nullable=False, default=True)
notes = Column(Text, nullable=True) # Optional notes about this admin
__table_args__ = (
Index("idx_admin_users_username", "github_username"),
Index("idx_admin_users_active", "is_active"),
)
class AdminSession(Base):
__tablename__ = "admin_sessions"
id = Column(Integer, primary_key=True, autoincrement=True)
session_token = Column(String(64), unique=True, nullable=False, index=True)
github_user_id = Column(Integer, nullable=False)
github_username = Column(String(255), nullable=False)
github_name = Column(String(255), nullable=True)
github_email = Column(String(255), nullable=True)
github_avatar_url = Column(String(500), nullable=True)
created_at = Column(
DateTime, nullable=False, default=lambda: datetime.now(UTC).replace(tzinfo=None)
)
expires_at = Column(DateTime, nullable=False)
is_active = Column(Boolean, nullable=False, default=True)
__table_args__ = (
Index("idx_admin_sessions_token", "session_token"),
Index("idx_admin_sessions_github_user", "github_user_id"),
Index("idx_admin_sessions_active", "is_active"),
Index("idx_admin_sessions_expires", "expires_at"),
)
class MemrayBuildFailure(Base):
__tablename__ = "memray_build_failures"
id = Column(Integer, primary_key=True, autoincrement=True)
commit_sha = Column(String(40), nullable=False)
binary_id = Column(String(50), ForeignKey("binaries.id"), nullable=False)
environment_id = Column(String(50), ForeignKey("environments.id"), nullable=False)
error_message = Column(Text, nullable=False)
failure_timestamp = Column(
DateTime, nullable=False, default=lambda: datetime.now(UTC).replace(tzinfo=None)
)
commit_timestamp = Column(DateTime, nullable=False) # Timestamp of the failing commit
binary = relationship("Binary")
environment = relationship("Environment")
__table_args__ = (
UniqueConstraint(
"binary_id", "environment_id", name="unique_binary_env_failure"
),
Index("idx_memray_failures_timestamp", "failure_timestamp"),
Index("idx_memray_failures_commit_timestamp", "commit_timestamp"),
Index("idx_memray_failures_binary_env", "binary_id", "environment_id"),
)