-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
사다리-함수형 프로그래밍 #22
base: sansan20535
Are you sure you want to change the base?
사다리-함수형 프로그래밍 #22
Changes from all commits
da7bf6f
bf39581
9f02c12
ce853c5
5cb3737
a465a83
9bd9a42
ef10d69
570a69a
5c9654e
ba0be8f
0d8536a
d1369ee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import controller.LadderController; | ||
import repository.ladder.LadderRepository; | ||
import repository.results.ResultsRepository; | ||
import repository.users.UserRepository; | ||
import service.ladder.LadderServiceImpl; | ||
import service.results.ResultsServiceImpl; | ||
import service.users.UserService; | ||
import view.InputView; | ||
import view.OutputView; | ||
|
||
public class LadderApplication { | ||
public static void main(String[] args) { | ||
LadderController ladderController = new LadderController( | ||
new LadderServiceImpl(new LadderRepository()), | ||
new UserService(new UserRepository()), | ||
new ResultsServiceImpl(new ResultsRepository()), | ||
new OutputView(), | ||
new InputView() | ||
); | ||
|
||
ladderController.start(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
package controller; | ||
|
||
import domain.ladder.Ladder; | ||
import domain.ladder.LadderLine; | ||
import domain.results.Results; | ||
import domain.users.User; | ||
import domain.users.Users; | ||
import service.ladder.LadderService; | ||
import service.results.ResultsService; | ||
import service.users.UserService; | ||
import view.InputView; | ||
import view.OutputView; | ||
|
||
public class LadderController { | ||
|
||
private final LadderService ladderService; | ||
private final UserService userService; | ||
private final ResultsService resultsService; | ||
private final OutputView outputView; | ||
private final InputView inputView; | ||
|
||
public LadderController(final LadderService ladderService, final UserService userService, final ResultsService resultsService, final OutputView outputView, final InputView inputView) { | ||
this.ladderService = ladderService; | ||
this.userService = userService; | ||
this.resultsService = resultsService; | ||
this.outputView = outputView; | ||
this.inputView = inputView; | ||
} | ||
|
||
public void start() { | ||
userService.makeUsers(inputView.inputUserNames()); | ||
resultsService.saveResults(inputView.inputResults()); | ||
ladderService.makeLadder(userService.getUsers().users().size(), inputView.inputHeight()); | ||
|
||
userService.updatePosition(ladderService.getLadder(), userService.getUsers()); | ||
|
||
printLadder(userService.getUsers(), ladderService.getLadder(), resultsService.getResults()); | ||
printLadderResult(userService.getUsers(), resultsService.getResults()); | ||
} | ||
|
||
private void printLadder(final Users users, final Ladder ladder, final Results results) { | ||
for (User user : users.users()) { | ||
outputView.printUser(user.getName()); | ||
} | ||
outputView.printEmpty(); | ||
for (LadderLine ladderLine : ladder.ladderLines()) { | ||
outputView.printLadderLine(ladderLine.connections()); | ||
} | ||
for (String result : results.results()) { | ||
outputView.printResult(result); | ||
} | ||
outputView.printEmpty(); | ||
} | ||
|
||
private void printLadderResult(final Users users, final Results results) { | ||
int printCount = 0; | ||
while (printCount < users.users().size()) { | ||
final String wantedUserName = inputView.inputWantedUserName(); | ||
printResult(wantedUserName, users, results, wantedUserName.equals("all")); | ||
} | ||
} | ||
|
||
private void printResult(final String wantedUserName, final Users users, final Results results, final boolean isAll) { | ||
if (!isAll) { | ||
outputView.printExecutionResult(); | ||
outputView.printUserResult(results.results() | ||
.get(userService.findByName(wantedUserName).getPosition()) | ||
); | ||
return; | ||
} | ||
|
||
outputView.printExecutionResult(); | ||
for (User user : users.users()) { | ||
outputView.printAllUserResults(user.getName(), results.results() | ||
.get(user.getPosition())); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package domain.ladder; | ||
|
||
import java.util.List; | ||
|
||
public record Ladder( | ||
List<LadderLine> ladderLines, | ||
LadderInfo ladderInfo | ||
) { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package domain.ladder; | ||
|
||
public record LadderInfo( | ||
int width, | ||
int height | ||
) { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package domain.ladder; | ||
|
||
import java.util.List; | ||
|
||
public record LadderLine( | ||
List<Boolean> connections | ||
) { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package domain.ladder; | ||
|
||
import java.util.Arrays; | ||
|
||
public enum LadderLineConnection { | ||
|
||
CONNECT_LADDER("|-----", true), | ||
NOT_CONNECT_LADDER("| ", false); | ||
|
||
LadderLineConnection(final String ladderConnectionFormat, final boolean isConnected) { | ||
this.ladderConnectionFormat = ladderConnectionFormat; | ||
this.isConnected = isConnected; | ||
} | ||
|
||
private final String ladderConnectionFormat; | ||
private final boolean isConnected; | ||
|
||
public String getLadderConnectionFormat() { | ||
return ladderConnectionFormat; | ||
} | ||
|
||
public static LadderLineConnection of(final boolean isConnected) { | ||
if (isConnected) { | ||
return CONNECT_LADDER; | ||
} | ||
return NOT_CONNECT_LADDER; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package domain.results; | ||
|
||
import java.util.List; | ||
|
||
public record Results( | ||
List<String> results | ||
) { | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package domain.users; | ||
|
||
public class User { | ||
|
||
private final String name; | ||
private int position; | ||
|
||
public User(final String name, final int position) { | ||
this.name = name; | ||
this.position = position; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setPosition(int position) { | ||
this.position = position; | ||
} | ||
|
||
public int getPosition() { | ||
return position; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package domain.users; | ||
|
||
import java.util.List; | ||
|
||
public record Users( | ||
List<User> users | ||
) { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package repository.ladder; | ||
|
||
import domain.ladder.Ladder; | ||
|
||
public class LadderRepository { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저도 이 비슷한 코드를 프리코스중 하나에 만들었던 기억이 있는데요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 아하..!! 그런 불편함이 있을 수 있군요..!! 감사합니다 다음부터 유의해보도록 하겠습니다 : ) |
||
|
||
private Ladder ladder; | ||
|
||
public Ladder getLadder() { | ||
return ladder; | ||
} | ||
|
||
public void setLadder(final Ladder ladder) { | ||
this.ladder = ladder; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package repository.results; | ||
|
||
import domain.results.Results; | ||
|
||
public class ResultsRepository { | ||
|
||
private Results results; | ||
|
||
public Results getResults() { | ||
return results; | ||
} | ||
|
||
public void setResults(final Results results) { | ||
this.results = results; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package repository.users; | ||
|
||
import domain.users.User; | ||
import domain.users.Users; | ||
|
||
public class UserRepository { | ||
|
||
private Users users; | ||
|
||
public Users getUsers() { | ||
return users; | ||
} | ||
|
||
public void setUsers(final Users users) { | ||
this.users = users; | ||
} | ||
|
||
public User findByName(final String userName) { | ||
return users.users().stream() | ||
.filter(user -> user.getName().equals(userName)) | ||
.findFirst() | ||
.orElseThrow(() -> new RuntimeException("해당 유저를 찾을 수 없습니다!")); // 또는 예외를 던질 수 있습니다. | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package service.ladder; | ||
|
||
import domain.ladder.Ladder; | ||
|
||
public interface LadderService { | ||
|
||
void makeLadder(final int width, final int height); | ||
|
||
Ladder getLadder(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package service.ladder; | ||
|
||
import domain.ladder.Ladder; | ||
import domain.ladder.LadderInfo; | ||
import domain.ladder.LadderLine; | ||
import repository.ladder.LadderRepository; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Random; | ||
import java.util.stream.IntStream; | ||
|
||
public class LadderServiceImpl implements LadderService { | ||
|
||
private final LadderRepository ladderRepository; | ||
|
||
public LadderServiceImpl(final LadderRepository ladderRepository) { | ||
this.ladderRepository = ladderRepository; | ||
} | ||
|
||
@Override | ||
public void makeLadder(final int width, final int height) { | ||
ladderRepository.setLadder(new Ladder(makeLadderLines(height, width), new LadderInfo(width, height))); | ||
} | ||
|
||
private List<LadderLine> makeLadderLines(final int height, final int width) { | ||
return IntStream.range(0, height) | ||
.mapToObj(i -> makeLadderLine(width)) | ||
.toList(); | ||
} | ||
|
||
private LadderLine makeLadderLine(final int width) { | ||
List<Boolean> connections = makeConnections(width); | ||
return new LadderLine(connections); | ||
} | ||
|
||
private List<Boolean> makeConnections(final int width) { | ||
List<Boolean> connections = new ArrayList<Boolean>(); | ||
Random random = new Random(); | ||
|
||
while (connections.size() < width - 1) { | ||
addConnections(connections, random.nextBoolean()); | ||
} | ||
|
||
return connections; | ||
} | ||
Comment on lines
+37
to
+46
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 힘드실 것 같긴 하지만 이 부분에 대한 테스트가 있으면 좋을 것 같아요! 대부분 가장 많이 실수하는 경우가 처음 생성 로직이 예상과는 다르게 진행되는 것인데요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 랜덤에 대한 테스트는 필요하다고 생각했었습니다..!! 한 번 테스트 해보도록 하겠습니다 감사합니다 : ) |
||
|
||
private void addConnections(final List<Boolean> connections, final boolean isConnected) { | ||
if (connections.isEmpty() || !isConnected || !connections.get(connections.size() - 1)) { | ||
connections.add(isConnected); | ||
} | ||
} | ||
|
||
@Override | ||
public Ladder getLadder() { | ||
return ladderRepository.getLadder(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package service.results; | ||
|
||
import domain.results.Results; | ||
|
||
import java.util.List; | ||
|
||
public interface ResultsService { | ||
void saveResults(final List<String> results); | ||
|
||
Results getResults(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package service.results; | ||
|
||
import domain.results.Results; | ||
import repository.results.ResultsRepository; | ||
|
||
import java.util.List; | ||
|
||
public class ResultsServiceImpl implements ResultsService { | ||
|
||
private final ResultsRepository resultsRepository; | ||
|
||
public ResultsServiceImpl(final ResultsRepository resultsRepository) { | ||
this.resultsRepository = resultsRepository; | ||
} | ||
|
||
@Override | ||
public void saveResults(final List<String> results) { | ||
resultsRepository.setResults(new Results(results)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이 메소드가 약간 직관적이지 않은 것 같아요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 맞는 것 같습니다!! save-로 메소드명을 바꾸는 등 로직에 맞게 수정할 필요가 있어보입니다..!! 감사합니다 : ) |
||
} | ||
|
||
@Override | ||
public Results getResults() { | ||
return resultsRepository.getResults(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
약간 개인 취향에 가까운데요
가이드라인에서는 분명히 일급 컬렉션을 되게 중요시 여기는 것을 알고 있어서 그 부분을 적용해주시는 것은 아주 좋다고 생각합니다!
해봐야 어떤 부분이 좋은지 명확하게 알다보니까요
단순하게 .users() 형태로 꺼내오기만 하게 되면 이 클래스의 존재 의미가 없을 것 같아요
만약 이 클래스를 쓰게 된다면 조금 더 메소드를 넣어서 이 클래스의 기능을 추가해보는 것이 좋을 것 같아요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
맞는 것 같습니다! 여기서는 "User의 모음"이라는 부분을 강조하기 위해 Users를 만들었는데, 이후 유저에 관한 작업이 명시되지 않는 다면 리팩토링하면 좋을 것 같습니다 !! 감사합니다 : )