-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauftakt_swp_üb_ss13.tex
464 lines (420 loc) · 14.5 KB
/
auftakt_swp_üb_ss13.tex
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
\documentclass[ucs,9pt]{beamer}
% Copyright 2004 by Till Tantau <[email protected]>.
%
% In principle, this file can be redistributed and/or modified under
% the terms of the GNU Public License, version 2.
%
% However, this file is supposed to be a template to be modified
% for your own needs. For this reason, if you use this file as a
% template and not specifically distribute it as part of a another
% package/program, I grant the extra permission to freely copy and
% modify this file as you see fit and even to delete this copyright
% notice.
%
% Modified by Tobias G. Pfeiffer <[email protected]>
% to show usage of some features specific to the FU Berlin template.
% remove this line and the "ucs" option to the documentclass when your editor is not utf8-capable
\usepackage[utf8x]{inputenc} % to make utf-8 input possible
\usepackage[english,german]{babel} % hyphenation etc., alternatively use 'german' as parameter
\usepackage{hyperref}
\include{fu-beamer-template} % THIS is the line that includes the FU template!
\usepackage{arev,t1enc} % looks nicer than the standard sans-serif font
% if you experience problems, comment out the line above and change
% the documentclass option "9pt" to "10pt"
% image to be shown on the title page (without file extension, should be pdf or png)
\titleimage{fu_500}
\newcommand{\email}[1]{\href{mailto:#1}{\texttt{#1}}}
\title{SWP Übersetzerbau im SS 13}
\subtitle{Einführung und Organisatorisches}
\author{Till~Zoppke \and Maximilian~Konzack \and Yves~Müller}
\institute[FU Berlin]{Freie Universität Berlin}
\date{Auftaktveranstaltung am 13.~April 2013}
% you can redefine the text shown in the footline. use a combination of
% \insertshortauthor, \insertshortinstitute, \insertshorttitle, \insertshortdate, ...
\renewcommand{\footlinetext}{\insertshortinstitute, \insertshorttitle, \insertshortdate}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
%\AtBeginSubsection[]
%{
% \begin{frame}<beamer>{Outline}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
%}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}{Übersicht}
\tableofcontents
\end{frame}
\section{Projektidee}
\begin{frame}
\frametitle{Entwicklung eines Compilers im Team}
\begin{center}
\includegraphics[width=0.7\textwidth]{pair_prog}
\end{center}
\end{frame}
\begin{frame}
\frametitle{Modularer Compiler}
\begin{block}{Idee}
\begin{itemize}
\item Implementierung eines Übersetzers
\item soll im Rahmen der Übersetzerbau genutzt werden können
\item Quellsprache ist imperativ und statisch typisiert
\end{itemize}
\end{block}
\begin{columns}
\begin{column}{0.3\textwidth}
\begin{center}
\includegraphics[height=3cm]{java_duke}
\end{center}
\end{column}
\begin{column}{0.7\textwidth}
\begin{block}{Ziele}
\begin{description}
\item[modular] Abgrenzung gegenüber anderen Modulen
\item[einfach] Verwendbarkeit mit anderen Komponenten
\item[getestet] Black- und Whiteboxtests
\item[dokumentiert] im Quellcode und als Text
\end{description}
\end{block}
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\frametitle{Veranschaulichung der zu erstellenden Artefakte}
\begin{center}
\includegraphics[width=0.9\textwidth]{pipeline}
\end{center}
\begin{itemize}
\item bekannte Aufteilung in Front- und Backend
\item Projektmanagement bezogene Artefakte
\begin{enumerate}
\item Präsentationen
\item Dokumentation
\end{enumerate}
\item Visualisierung als GUI und/oder Commandline Interface von
\begin{enumerate}
\item abstrakter Syntax (AST) als ASCII, xml, SVG, \dots
\item drei Adresscode als Text, Tripel-, Quadrupeldarstellung,
\dots
\item anderen Ergebnissen: Interpreter, Debugger, \dots
\end{enumerate}
\end{itemize}
\end{frame}
\section{Einteilung in Gruppen}
\begin{frame}
\frametitle{Aufteilung in Gruppen}
\begin{block}{Gruppengröße}
\begin{itemize}
\item $\approx 25$ Teilnehmer im KVV
\item 2 Gruppen mit $\approx 12,5$ Teilnehmer
\end{itemize}
\end{block}
\begin{block}{Organisation}
\begin{itemize}
\item grundsätzlich frei gestellt
\item zwei unterschiedlichen Zielcode:
\begin{enumerate}
\item Java Bytecode
\item LLVM, GNU Assembler, \dots
\end{enumerate}
\item jedoch legen wir Wert auf:
\begin{enumerate}
\item Inkrementelle Software Entwicklung
\item Implementierung
\item Interface Spezifikation
\item Automatisierung der verschiedenen Tests
\item Visualisierung der Ergebnisse über Commandline, GUI,
\dots
\end{enumerate}
\end{itemize}
\end{block}
\end{frame}
\section{Organisatorisches}
\subsection{Treffen}
\begin{frame}
\frametitle{Projekttreffen}
\begin{block}{Treffen aller Teilnehmer}
\begin{itemize}
\item alle zwei Wochen
\item donnerstags von 14 bis 16 Uhr c.t. im SR~049
\item bei zu vielen Fehlterminen wird Anwesenheitspflicht eingeführt!
\item von jedem Teilnehmer wird erwartet mindestens \emph{1x} zu
präsentieren
\end{itemize}
\end{block}
$\Rightarrow$ andere Woche für Statusbericht und projektinterne Treffen vormerken!
\begin{block}{Zweck der Projekttreffen}
\begin{enumerate}
\item Arbeitsfortschritt
\item Wissensaustausch
\item Projektmanagement
\item Visualisierung der Ergebnisse
\item Probleme, Fragen, Diskussion, \dots
\end{enumerate}
\end{block}
\end{frame}
\begin{frame}
\frametitle{Vorgaben zu den Präsentationen}
\begin{block}{Allgemeines}
\begin{itemize}
\item Dauer eines Vortrags $\approx$ 15~Minuten
\begin{itemize}
\item 10 Minuten davon für Präsentation
\item 5 Minute für Fragen vorsehen
\end{itemize}
\item im Zweifel weniger Folien sind besser!
\end{itemize}
\end{block}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{block}{Präsentation zum Meilenstein}
Fokus auf Projektalltag:
\begin{enumerate}
\item Projektstruktur
\item Status zum Meilenstein
\item Aufgabenverteilung
\item Projektmanagement
\item Demonstration des Compilers
\item \dots
\end{enumerate}
\end{block}
\end{column}
\begin{column}{0.5\textwidth}
\begin{block}{Fachvortrag}
Fokus auf Wissensaustausch. Mögliche Themen:
\begin{enumerate}
\item Aufbau und Struktur von Java Bytecode
\item git (Branch und Merge Strategien, Issues, \dots)
\item Design Patterns (Visitor, Interpreter,
Factory, \dots)
\item JUnit
\end{enumerate}
\end{block}
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\frametitle{Statusbericht über Meilenstein}
\begin{itemize}
\item kurzer Status Strukturierung des Meilensteins
\item wenn \emph{kein Projekttreffen} ist
\end{itemize}
\begin{block}{Was wollen wir sehen?}
mind. 1 Punkt aus folgenden:
\begin{itemize}
\item Offene und abgeschlossene Tickets/Issues
\item To-Do-Liste
\item Projektverlaufsplan
\item Mündlicher Bericht
\item \dots
\end{itemize}
\end{block}
\begin{block}{Was \emph{nicht}?}
alles was im Vortrag zum Meilenstein gehört
\end{block}
\end{frame}
\subsection{Bürozeiten der Betreuer}
\begin{frame}
\frametitle{Bürozeiten der Betreuer}
Betreuer des Softwareprojekts sind
\begin{enumerate}
\item Till Zoppke Email:~\email{[email protected]}
\item Maximilian Konzack Email:~\email{[email protected]}
\item Yves Müller Email:~\email{[email protected]}
\end{enumerate}
\begin{block}{Wo und wann?}
Donnerstags 16 bis 18 Uhr im SR~158
\end{block}
\begin{block}{Wann zu nutzen?}
bei
\begin{itemize}
\item Problemen im Team
\item Unklarheiten
\item Fragen
\item Anregungen
\item \dots
\end{itemize}
\end{block}
\end{frame}
\subsection{Bewertung}
\begin{frame}
\frametitle{Bewertungsschema}
umfasst
\begin{enumerate}
\item Quellcode
\item Dokumentation
\item Präsentationen
\item Abschluss
\end{enumerate} bezüglich der Meilensteine
\begin{block}{Meilensteine}
\begin{description}
\item[M1] Arithmetik
\item[M2] \texttt{print} Anweisung und Verzweigungen
\item[M3] Schleifen und Arrays
\end{description}
\end{block}
\end{frame}
\subsection{Repositories}
\begin{frame}
\frametitle{Verwaltung des SWPs auf GitHub}
GitHub Organisation für das SWP:
\url{https://github.com/swp-uebersetzerbau-ss13}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{center}
\includegraphics[height=2cm]{githuboctacat}
\end{center}
\end{column}
\begin{column}{0.5\textwidth}
\begin{block}{Repositories}
\begin{enumerate}
\item Ein \emph{allgemeines Repository} für projektübergreifende
\begin{itemize}
\item Dokumentation
\item Beispiele
\item Tests
\item Interfaces
\end{itemize}
\item \emph{jede} Gruppe erhält eigenes Repository für ihre
Implementierung
\end{enumerate}
\end{block}
\end{column}
\end{columns}
\begin{block}{Mailingliste vom Softwareprojekt}
Email:~\email{[email protected]}
\end{block}
\end{frame}
\section{Git Primer}
\begin{frame}
\frametitle{Einführung in git}
\begin{columns}
\begin{column}{0.3\textwidth}
\begin{center}
\includegraphics[width=3cm]{git_logo}
\end{center}
\end{column}
\begin{column}{0.7\textwidth}
\begin{block}{Was ist git?}
\begin{enumerate}
\item Versionsverwaltung von Dateien, insbesondere für Quellcode
\item freie Software
\item geeignet für kleine bis große Projekte
\item kann nur nur lokal (auf einem Rechner) oder stark verteilt
genutzt werden
\item viele große Open Source Projekte nutzen git
\end{enumerate}
\end{block}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
\frametitle{Wichtige Befehle für die Arbeit mit git}
\begin{enumerate}
\item Lokale Kopie vom Repository anlegen:
\begin{verbatim}
$ git clone <repo>
\end{verbatim}
\item Revision ansehen:
\begin{verbatim}
$ git show <rev number>
\end{verbatim}
\item Lokalen Veränderungen (noch ohne commit) ansehen:
\begin{verbatim}
$ git status
\end{verbatim}
\item Commit auf lokalem Repo:
\begin{verbatim}
$ git commit -m "message" -a|<file>|<dir>
\end{verbatim}
\item Veränderungen vom remote Repo ziehen:
\begin{verbatim}
$ git pull origin <branch>
\end{verbatim}
\item Eigene Commits auf remote Repo hoch laden:
\begin{verbatim}
$ git push origin <branch>
\end{verbatim}
\end{enumerate}
\end{frame}
\begin{frame}[fragile]
\frametitle{Befehle zur Verwaltung von Branches}
\begin{enumerate}
\item Erstelle einen neuen Branch (und wechsle zu ihm):
\begin{verbatim}
$ git checkout -b <branch>
\end{verbatim}
\item Zeige alle verfügbaren Branches:
\begin{verbatim}
$ git branch -a
\end{verbatim}
\item Wechsle vom aktuellen Branch zu angegeben:
\begin{verbatim}
$ git checkout <branch>
\end{verbatim}
\item Merge von aktuellen Branch mit angegeben:
\begin{verbatim}
$ git merge <branch>
\end{verbatim}
\end{enumerate}
\end{frame}
\section{Ende}
\begin{frame}
\frametitle{Ende}
\begin{center}
\Huge
Danke für die Aufmerksamkeit.\\[1em]
\includegraphics[height=5cm]{compilers}
\
\end{center}
\end{frame}
\begin{frame}
\frametitle{To Dos bis zum nächsten mal}
\begin{center}
\begin{enumerate}
\item git Repo auschecken
\item Projekteinfindung
\item Quellsprache verstehen
\item Projektstruktur festlegen
\item Meilstein strukturieren
\item Entwurf von Interfaces
\item \dots
\end{enumerate}
\end{center}
\end{frame}
% All of the following is optional and typically not needed.
\appendix
\section*{\appendixname}
\begin{frame}
\frametitle{Literatur}
\begin{thebibliography}{10}
\beamertemplatebookbibitems
% Start with overview books.
\bibitem[AUS08]{Aho08}
Alfred~V. Aho, Jeffrey Ullman, and Ravi Sethi.
\newblock {\em Compiler: {P}rinzipien, {T}echniken und {W}erkzeuge}.
\newblock Pearson Studium, 2. edition, 2008.
\bibitem[Fin]{FindBugsWeb}
{F}ind{B}ugs -- {F}ind {B}ugs in {J}ava {P}rograms.
\newblock {\url{http://findbugs.sourceforge.net/}}.
\bibitem[GitHub]{GitHubWeb}
{G}it{H}ub
\newblock {\url{https://github.com/}}.
\bibitem[CodeSchool]{TryGit}
{C}ode {S}chool -- {T}ry {G}it
\newblock {\url{http://try.github.io}}.
\bibitem[GitRef]{GitRefWeb}
{G}it {R}eference
\newblock {\url{http://gitref.org/}}.
\bibitem[GitNotes]{GitNotesWeb}
{S}ome {N}otes on {G}it
\newblock {\url{http://java.dzone.com/articles/some-notes-git}}.
\bibitem[Sco09]{Scott09}
Michael~Lee Scott.
\newblock {\em Programming language pragmatics}.
\newblock Morgan Kaufmann Publishers, 3. edition, 2009.
\end{thebibliography}
\end{frame}
\end{document}