├── .clang-format ├── .clang-tidy ├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── build-alpine.yml │ ├── build-arch-all.yml │ ├── build-arch-basic.yml │ ├── build-freebsd-basic.yml │ ├── clang-format-check.yml │ └── codeql.yml ├── .gitignore ├── CMakeLists.txt ├── COPYING ├── Dockerfile-build-alpine ├── Dockerfile-build-arch ├── Dockerfile-release ├── INSTALL.md ├── README.md ├── SUBSONIC.md ├── approot ├── admin-about.xml ├── admin-db.xml ├── admin-debugtools.xml ├── admin-initwizard.xml ├── admin-medialibraries.xml ├── admin-medialibrary.xml ├── admin-scannercontroller.xml ├── admin-scansettings.xml ├── admin-tracing.xml ├── admin-user.xml ├── admin-users.xml ├── artist.xml ├── artists.xml ├── error.xml ├── explore.xml ├── images │ ├── unknown-artist.svg │ └── unknown-cover.svg ├── login.xml ├── main.xml ├── mediaplayer.xml ├── messages.xml ├── messages_en-US.xml ├── messages_es.xml ├── messages_fr.xml ├── messages_it.xml ├── messages_pl.xml ├── messages_zh.xml ├── misc.xml ├── notifications.xml ├── playqueue.xml ├── release.xml ├── releases.xml ├── settings.xml ├── tracklist.xml ├── tracklists.xml └── tracks.xml ├── cmake └── modules │ ├── FindFilesystem.cmake │ ├── FindPAM.cmake │ └── FindStbImage.cmake ├── conf ├── lms.conf ├── pam │ └── lms └── systemd │ └── default.service ├── docroot ├── css │ ├── bootstrap.solar.min.css │ └── lms.css └── js │ ├── bootstrap.bundle.min.js │ └── mediaplayer.js └── src ├── CMakeLists.txt ├── libs ├── CMakeLists.txt ├── audio │ ├── CMakeLists.txt │ ├── impl │ │ ├── AudioFileInfoParser.cpp │ │ ├── TagReader.cpp │ │ ├── ffmpeg │ │ │ ├── AudioFile.cpp │ │ │ ├── AudioFile.hpp │ │ │ ├── AudioFileInfo.cpp │ │ │ ├── AudioFileInfo.hpp │ │ │ ├── AudioFileInfoParser.cpp │ │ │ ├── AudioFileInfoParser.hpp │ │ │ ├── ImageReader.cpp │ │ │ ├── ImageReader.hpp │ │ │ ├── TagReader.cpp │ │ │ ├── TagReader.hpp │ │ │ ├── Transcoder.cpp │ │ │ ├── Transcoder.hpp │ │ │ ├── Utils.cpp │ │ │ └── Utils.hpp │ │ └── taglib │ │ │ ├── AudioFileInfo.cpp │ │ │ ├── AudioFileInfo.hpp │ │ │ ├── AudioFileInfoParser.cpp │ │ │ ├── AudioFileInfoParser.hpp │ │ │ ├── ImageReader.cpp │ │ │ ├── ImageReader.hpp │ │ │ ├── TagLibDefs.hpp │ │ │ ├── TagReader.cpp │ │ │ ├── TagReader.hpp │ │ │ ├── Utils.cpp │ │ │ └── Utils.hpp │ └── include │ │ └── audio │ │ ├── AudioProperties.hpp │ │ ├── Exception.hpp │ │ ├── IAudioFileInfo.hpp │ │ ├── IAudioFileInfoParser.hpp │ │ ├── IImageReader.hpp │ │ ├── ITagReader.hpp │ │ ├── ITranscoder.hpp │ │ └── TranscodeTypes.hpp ├── core │ ├── CMakeLists.txt │ ├── bench │ │ ├── CMakeLists.txt │ │ └── TraceLoggerBench.cpp │ ├── impl │ │ ├── ArchiveZipper.cpp │ │ ├── ArchiveZipper.hpp │ │ ├── ChildProcess.cpp │ │ ├── ChildProcess.hpp │ │ ├── ChildProcessManager.cpp │ │ ├── ChildProcessManager.hpp │ │ ├── Config.cpp │ │ ├── Config.hpp │ │ ├── FileResourceHandler.cpp │ │ ├── FileResourceHandler.hpp │ │ ├── IOContextRunner.cpp │ │ ├── JobScheduler.cpp │ │ ├── JobScheduler.hpp │ │ ├── Logger.cpp │ │ ├── Logger.hpp │ │ ├── MimeTypes.cpp │ │ ├── NetAddress.cpp │ │ ├── PartialDateTime.cpp │ │ ├── Path.cpp │ │ ├── Random.cpp │ │ ├── RecursiveSharedMutex.cpp │ │ ├── String.cpp │ │ ├── TraceLogger.cpp │ │ ├── TraceLogger.hpp │ │ ├── UUID.cpp │ │ ├── Version.cpp.in │ │ ├── XxHash3.cpp │ │ ├── http │ │ │ ├── Client.cpp │ │ │ ├── Client.hpp │ │ │ ├── ClientRequest.hpp │ │ │ ├── SendQueue.cpp │ │ │ └── SendQueue.hpp │ │ └── media │ │ │ ├── Codec.cpp │ │ │ ├── Container.cpp │ │ │ ├── ImageType.cpp │ │ │ └── MimeType.cpp │ ├── include │ │ └── core │ │ │ ├── Crc32Calculator.hpp │ │ │ ├── EnumSet.hpp │ │ │ ├── Exception.hpp │ │ │ ├── FileResourceHandlerCreator.hpp │ │ │ ├── IChildProcess.hpp │ │ │ ├── IChildProcessManager.hpp │ │ │ ├── IConfig.hpp │ │ │ ├── IJob.hpp │ │ │ ├── IJobScheduler.hpp │ │ │ ├── ILogger.hpp │ │ │ ├── IOContextRunner.hpp │ │ │ ├── IResourceHandler.hpp │ │ │ ├── ITraceLogger.hpp │ │ │ ├── IZipper.hpp │ │ │ ├── LiteralString.hpp │ │ │ ├── MimeTypes.hpp │ │ │ ├── NetAddress.hpp │ │ │ ├── PartialDateTime.hpp │ │ │ ├── Path.hpp │ │ │ ├── Random.hpp │ │ │ ├── RecursiveSharedMutex.hpp │ │ │ ├── Service.hpp │ │ │ ├── SizeLiterals.hpp │ │ │ ├── String.hpp │ │ │ ├── SystemPaths.hpp │ │ │ ├── TaggedType.hpp │ │ │ ├── Tuple.hpp │ │ │ ├── UUID.hpp │ │ │ ├── Utils.hpp │ │ │ ├── Version.hpp │ │ │ ├── XxHash3.hpp │ │ │ ├── ZipperResourceHandlerCreator.hpp │ │ │ ├── http │ │ │ ├── ClientRequestParameters.hpp │ │ │ └── IClient.hpp │ │ │ └── media │ │ │ ├── Codec.hpp │ │ │ ├── Container.hpp │ │ │ ├── ImageType.hpp │ │ │ └── MimeType.hpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── EnumSet.cpp │ │ ├── JobScheduler.cpp │ │ ├── LiteralString.cpp │ │ ├── PartialDateTime.cpp │ │ ├── Path.cpp │ │ ├── RecursiveSharedMutex.cpp │ │ ├── Service.cpp │ │ ├── String.cpp │ │ ├── TraceLogger.cpp │ │ ├── UUID.cpp │ │ ├── Utils.cpp │ │ └── XxHash3.cpp ├── database │ ├── CMakeLists.txt │ ├── impl │ │ ├── Db.cpp │ │ ├── Db.hpp │ │ ├── IdType.cpp │ │ ├── Migration.cpp │ │ ├── Migration.hpp │ │ ├── Object.cpp │ │ ├── QueryPlanRecorder.cpp │ │ ├── QueryPlanRecorder.hpp │ │ ├── Session.cpp │ │ ├── SqlQuery.cpp │ │ ├── SqlQuery.hpp │ │ ├── Transaction.cpp │ │ ├── TransactionChecker.cpp │ │ ├── TransactionChecker.hpp │ │ ├── Utils.cpp │ │ ├── Utils.hpp │ │ ├── objects │ │ │ ├── Artist.cpp │ │ │ ├── ArtistInfo.cpp │ │ │ ├── Artwork.cpp │ │ │ ├── AuthToken.cpp │ │ │ ├── Cluster.cpp │ │ │ ├── Directory.cpp │ │ │ ├── Image.cpp │ │ │ ├── Listen.cpp │ │ │ ├── MediaLibrary.cpp │ │ │ ├── Medium.cpp │ │ │ ├── PlayListFile.cpp │ │ │ ├── PlayQueue.cpp │ │ │ ├── Podcast.cpp │ │ │ ├── PodcastEpisode.cpp │ │ │ ├── RatedArtist.cpp │ │ │ ├── RatedRelease.cpp │ │ │ ├── RatedTrack.cpp │ │ │ ├── Release.cpp │ │ │ ├── ScanSettings.cpp │ │ │ ├── StarredArtist.cpp │ │ │ ├── StarredRelease.cpp │ │ │ ├── StarredTrack.cpp │ │ │ ├── Track.cpp │ │ │ ├── TrackArtistLink.cpp │ │ │ ├── TrackBookmark.cpp │ │ │ ├── TrackEmbeddedImage.cpp │ │ │ ├── TrackEmbeddedImageLink.cpp │ │ │ ├── TrackFeatures.cpp │ │ │ ├── TrackList.cpp │ │ │ ├── TrackLyrics.cpp │ │ │ ├── Types.cpp │ │ │ ├── UIState.cpp │ │ │ ├── User.cpp │ │ │ └── detail │ │ │ │ ├── Types.cpp │ │ │ │ └── Types.hpp │ │ └── traits │ │ │ ├── EnumSetTraits.hpp │ │ │ ├── IdTypeTraits.hpp │ │ │ ├── ImageHashTypeTraits.hpp │ │ │ ├── PartialDateTimeTraits.hpp │ │ │ ├── PathTraits.hpp │ │ │ └── StringViewTraits.hpp │ ├── include │ │ └── database │ │ │ ├── IDb.hpp │ │ │ ├── IQueryPlanRecorder.hpp │ │ │ ├── IdRange.hpp │ │ │ ├── IdType.hpp │ │ │ ├── Object.hpp │ │ │ ├── Session.hpp │ │ │ ├── Transaction.hpp │ │ │ ├── Types.hpp │ │ │ └── objects │ │ │ ├── Artist.hpp │ │ │ ├── ArtistId.hpp │ │ │ ├── ArtistInfo.hpp │ │ │ ├── ArtistInfoId.hpp │ │ │ ├── Artwork.hpp │ │ │ ├── ArtworkId.hpp │ │ │ ├── AuthToken.hpp │ │ │ ├── AuthTokenId.hpp │ │ │ ├── Cluster.hpp │ │ │ ├── ClusterId.hpp │ │ │ ├── CountryId.hpp │ │ │ ├── Directory.hpp │ │ │ ├── DirectoryId.hpp │ │ │ ├── Filters.hpp │ │ │ ├── Image.hpp │ │ │ ├── ImageId.hpp │ │ │ ├── LabelId.hpp │ │ │ ├── Listen.hpp │ │ │ ├── ListenId.hpp │ │ │ ├── MediaLibrary.hpp │ │ │ ├── MediaLibraryId.hpp │ │ │ ├── Medium.hpp │ │ │ ├── MediumId.hpp │ │ │ ├── PlayListFile.hpp │ │ │ ├── PlayQueue.hpp │ │ │ ├── Podcast.hpp │ │ │ ├── PodcastEpisode.hpp │ │ │ ├── PodcastEpisodeId.hpp │ │ │ ├── PodcastId.hpp │ │ │ ├── RatedArtist.hpp │ │ │ ├── RatedArtistId.hpp │ │ │ ├── RatedRelease.hpp │ │ │ ├── RatedReleaseId.hpp │ │ │ ├── RatedTrack.hpp │ │ │ ├── RatedTrackId.hpp │ │ │ ├── Release.hpp │ │ │ ├── ReleaseId.hpp │ │ │ ├── ReleaseTypeId.hpp │ │ │ ├── ScanSettings.hpp │ │ │ ├── StarredArtist.hpp │ │ │ ├── StarredArtistId.hpp │ │ │ ├── StarredRelease.hpp │ │ │ ├── StarredReleaseId.hpp │ │ │ ├── StarredTrack.hpp │ │ │ ├── StarredTrackId.hpp │ │ │ ├── Track.hpp │ │ │ ├── TrackArtistLink.hpp │ │ │ ├── TrackBookmark.hpp │ │ │ ├── TrackEmbeddedImage.hpp │ │ │ ├── TrackEmbeddedImageId.hpp │ │ │ ├── TrackEmbeddedImageLink.hpp │ │ │ ├── TrackEmbeddedImageLinkId.hpp │ │ │ ├── TrackFeatures.hpp │ │ │ ├── TrackId.hpp │ │ │ ├── TrackList.hpp │ │ │ ├── TrackListId.hpp │ │ │ ├── TrackLyrics.hpp │ │ │ ├── Types.hpp │ │ │ ├── UIState.hpp │ │ │ ├── UIStateId.hpp │ │ │ ├── User.hpp │ │ │ ├── UserId.hpp │ │ │ └── detail │ │ │ └── Types.hpp │ └── test │ │ ├── Artist.cpp │ │ ├── ArtistInfo.cpp │ │ ├── Artwork.cpp │ │ ├── AuthToken.cpp │ │ ├── CMakeLists.txt │ │ ├── Cluster.cpp │ │ ├── Common.cpp │ │ ├── Common.hpp │ │ ├── DatabaseTest.cpp │ │ ├── Directory.cpp │ │ ├── Image.cpp │ │ ├── Listen.cpp │ │ ├── Medium.cpp │ │ ├── Migration.cpp │ │ ├── PlayListFile.cpp │ │ ├── Podcast.cpp │ │ ├── RatedArtist.cpp │ │ ├── RatedRelease.cpp │ │ ├── RatedTrack.cpp │ │ ├── Release.cpp │ │ ├── ScanSettings.cpp │ │ ├── StarredArtist.cpp │ │ ├── StarredRelease.cpp │ │ ├── StarredTrack.cpp │ │ ├── Track.cpp │ │ ├── TrackArtistLink.cpp │ │ ├── TrackBookmark.cpp │ │ ├── TrackEmbeddedImage.cpp │ │ ├── TrackFeatures.cpp │ │ ├── TrackList.cpp │ │ ├── TrackLyrics.cpp │ │ └── User.cpp ├── image │ ├── CMakeLists.txt │ ├── impl │ │ ├── EncodedImage.cpp │ │ ├── EncodedImage.hpp │ │ ├── graphicsmagick │ │ │ ├── Image.cpp │ │ │ ├── RawImage.cpp │ │ │ └── RawImage.hpp │ │ └── stb │ │ │ ├── Exception.cpp │ │ │ ├── Exception.hpp │ │ │ ├── Image.cpp │ │ │ ├── RawImage.cpp │ │ │ ├── RawImage.hpp │ │ │ ├── StbImage.cpp │ │ │ ├── StbImage.hpp │ │ │ ├── StbImageResize.cpp │ │ │ ├── StbImageResize.hpp │ │ │ ├── StbImageWrite.cpp │ │ │ └── StbImageWrite.hpp │ └── include │ │ └── image │ │ ├── Exception.hpp │ │ ├── IEncodedImage.hpp │ │ ├── IRawImage.hpp │ │ ├── Image.hpp │ │ └── Types.hpp ├── services │ ├── CMakeLists.txt │ ├── artwork │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── ArtworkService.cpp │ │ │ ├── ArtworkService.hpp │ │ │ ├── ImageCache.cpp │ │ │ └── ImageCache.hpp │ │ └── include │ │ │ └── services │ │ │ └── artwork │ │ │ └── IArtworkService.hpp │ ├── auth │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── AuthServiceBase.cpp │ │ │ ├── AuthServiceBase.hpp │ │ │ ├── AuthTokenService.cpp │ │ │ ├── AuthTokenService.hpp │ │ │ ├── EnvService.cpp │ │ │ ├── LoginThrottler.cpp │ │ │ ├── LoginThrottler.hpp │ │ │ ├── PasswordServiceBase.cpp │ │ │ ├── PasswordServiceBase.hpp │ │ │ ├── http-headers │ │ │ │ ├── HttpHeadersEnvService.cpp │ │ │ │ └── HttpHeadersEnvService.hpp │ │ │ ├── internal │ │ │ │ ├── InternalPasswordService.cpp │ │ │ │ └── InternalPasswordService.hpp │ │ │ └── pam │ │ │ │ ├── PAMPasswordService.cpp │ │ │ │ └── PAMPasswordService.hpp │ │ └── include │ │ │ └── services │ │ │ └── auth │ │ │ ├── IAuthTokenService.hpp │ │ │ ├── IEnvService.hpp │ │ │ ├── IPasswordService.hpp │ │ │ └── Types.hpp │ ├── feedback │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── FeedbackService.cpp │ │ │ ├── FeedbackService.hpp │ │ │ ├── FeedbackService.impl.hpp │ │ │ ├── IFeedbackBackend.hpp │ │ │ ├── internal │ │ │ │ ├── InternalBackend.cpp │ │ │ │ └── InternalBackend.hpp │ │ │ └── listenbrainz │ │ │ │ ├── Exception.hpp │ │ │ │ ├── FeedbackTypes.cpp │ │ │ │ ├── FeedbackTypes.hpp │ │ │ │ ├── FeedbacksParser.cpp │ │ │ │ ├── FeedbacksParser.hpp │ │ │ │ ├── FeedbacksSynchronizer.cpp │ │ │ │ ├── FeedbacksSynchronizer.hpp │ │ │ │ ├── ListenBrainzBackend.cpp │ │ │ │ ├── ListenBrainzBackend.hpp │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.hpp │ │ └── include │ │ │ └── services │ │ │ └── feedback │ │ │ ├── Exception.hpp │ │ │ └── IFeedbackService.hpp │ ├── podcast │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── Exception.hpp │ │ │ ├── Executor.cpp │ │ │ ├── Executor.hpp │ │ │ ├── PodcastParsing.cpp │ │ │ ├── PodcastParsing.hpp │ │ │ ├── PodcastService.cpp │ │ │ ├── PodcastService.hpp │ │ │ ├── PodcastTypes.hpp │ │ │ ├── RefreshContext.hpp │ │ │ └── steps │ │ │ │ ├── CheckForMissingFilesStep.cpp │ │ │ │ ├── CheckForMissingFilesStep.hpp │ │ │ │ ├── ClearTmpDirectoryStep.cpp │ │ │ │ ├── ClearTmpDirectoryStep.hpp │ │ │ │ ├── DownloadEpisodeArtworksStep.cpp │ │ │ │ ├── DownloadEpisodeArtworksStep.hpp │ │ │ │ ├── DownloadEpisodesStep.cpp │ │ │ │ ├── DownloadEpisodesStep.hpp │ │ │ │ ├── DownloadPodcastArtworksStep.cpp │ │ │ │ ├── DownloadPodcastArtworksStep.hpp │ │ │ │ ├── RefreshPodcastsStep.cpp │ │ │ │ ├── RefreshPodcastsStep.hpp │ │ │ │ ├── RefreshStep.hpp │ │ │ │ ├── RemoveEpisodesStep.cpp │ │ │ │ ├── RemoveEpisodesStep.hpp │ │ │ │ ├── RemovePodcastsStep.cpp │ │ │ │ ├── RemovePodcastsStep.hpp │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.hpp │ │ ├── include │ │ │ └── services │ │ │ │ └── podcast │ │ │ │ └── IPodcastService.hpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── PodcastParser.cpp │ │ │ └── PodcastService.cpp │ ├── recommendation │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── ClustersEngineCreator.hpp │ │ │ ├── FeaturesEngineCreator.hpp │ │ │ ├── IEngine.hpp │ │ │ ├── PlaylistGeneratorService.cpp │ │ │ ├── PlaylistGeneratorService.hpp │ │ │ ├── RecommendationService.cpp │ │ │ ├── RecommendationService.hpp │ │ │ ├── clusters │ │ │ │ ├── ClustersEngine.cpp │ │ │ │ └── ClustersEngine.hpp │ │ │ ├── features │ │ │ │ ├── FeaturesDefs.cpp │ │ │ │ ├── FeaturesDefs.hpp │ │ │ │ ├── FeaturesEngine.cpp │ │ │ │ ├── FeaturesEngine.hpp │ │ │ │ ├── FeaturesEngineCache.cpp │ │ │ │ └── FeaturesEngineCache.hpp │ │ │ └── playlist-constraints │ │ │ │ ├── ConsecutiveArtists.cpp │ │ │ │ ├── ConsecutiveArtists.hpp │ │ │ │ ├── ConsecutiveReleases.cpp │ │ │ │ ├── ConsecutiveReleases.hpp │ │ │ │ ├── DuplicateTracks.cpp │ │ │ │ ├── DuplicateTracks.hpp │ │ │ │ └── IConstraint.hpp │ │ └── include │ │ │ └── services │ │ │ └── recommendation │ │ │ ├── IPlaylistGeneratorService.hpp │ │ │ ├── IRecommendationService.hpp │ │ │ └── Types.hpp │ ├── scanner │ │ ├── CMakeLists.txt │ │ ├── bench │ │ │ ├── CMakeLists.txt │ │ │ ├── Lyrics.cpp │ │ │ ├── Scanner.cpp │ │ │ └── TrackMetadataParser.cpp │ │ ├── impl │ │ │ ├── FileScanners.cpp │ │ │ ├── FileScanners.hpp │ │ │ ├── MediaLibraryInfo.hpp │ │ │ ├── ScanContext.hpp │ │ │ ├── ScannerService.cpp │ │ │ ├── ScannerService.hpp │ │ │ ├── ScannerServiceTraceLogger.cpp │ │ │ ├── ScannerSettings.hpp │ │ │ ├── ScannerStats.cpp │ │ │ ├── helpers │ │ │ │ ├── ArtistHelpers.cpp │ │ │ │ └── ArtistHelpers.hpp │ │ │ ├── scanners │ │ │ │ ├── FileScanOperationBase.cpp │ │ │ │ ├── FileScanOperationBase.hpp │ │ │ │ ├── FileToScan.hpp │ │ │ │ ├── IFileScanOperation.hpp │ │ │ │ ├── IFileScanner.hpp │ │ │ │ ├── ImageFileScanner.cpp │ │ │ │ ├── ImageFileScanner.hpp │ │ │ │ ├── Utils.cpp │ │ │ │ ├── Utils.hpp │ │ │ │ ├── artistinfo │ │ │ │ │ ├── ArtistInfoFileScanner.cpp │ │ │ │ │ ├── ArtistInfoFileScanner.hpp │ │ │ │ │ ├── ArtistInfoParser.cpp │ │ │ │ │ └── ArtistInfoParser.hpp │ │ │ │ ├── audiofile │ │ │ │ │ ├── AudioFileInfoParserSet.cpp │ │ │ │ │ ├── AudioFileInfoParserSet.hpp │ │ │ │ │ ├── AudioFileScanOperation.cpp │ │ │ │ │ ├── AudioFileScanOperation.hpp │ │ │ │ │ ├── AudioFileScanner.cpp │ │ │ │ │ ├── AudioFileScanner.hpp │ │ │ │ │ ├── TrackMetadataParser.cpp │ │ │ │ │ ├── TrackMetadataParser.hpp │ │ │ │ │ ├── Utils.cpp │ │ │ │ │ └── Utils.hpp │ │ │ │ ├── lyrics │ │ │ │ │ ├── LyricsFileScanner.cpp │ │ │ │ │ ├── LyricsFileScanner.hpp │ │ │ │ │ ├── LyricsParser.cpp │ │ │ │ │ └── LyricsParser.hpp │ │ │ │ └── playlist │ │ │ │ │ ├── PlayListFileScanner.cpp │ │ │ │ │ ├── PlayListFileScanner.hpp │ │ │ │ │ ├── PlayListParser.cpp │ │ │ │ │ └── PlayListParser.hpp │ │ │ ├── steps │ │ │ │ ├── IScanStep.hpp │ │ │ │ ├── JobQueue.cpp │ │ │ │ ├── JobQueue.hpp │ │ │ │ ├── ScanErrorLogger.cpp │ │ │ │ ├── ScanErrorLogger.hpp │ │ │ │ ├── ScanStepArtistReconciliation.cpp │ │ │ │ ├── ScanStepArtistReconciliation.hpp │ │ │ │ ├── ScanStepAssociateArtistImages.cpp │ │ │ │ ├── ScanStepAssociateArtistImages.hpp │ │ │ │ ├── ScanStepAssociateExternalLyrics.cpp │ │ │ │ ├── ScanStepAssociateExternalLyrics.hpp │ │ │ │ ├── ScanStepAssociateMediumImages.cpp │ │ │ │ ├── ScanStepAssociateMediumImages.hpp │ │ │ │ ├── ScanStepAssociatePlayListTracks.cpp │ │ │ │ ├── ScanStepAssociatePlayListTracks.hpp │ │ │ │ ├── ScanStepAssociateReleaseImages.cpp │ │ │ │ ├── ScanStepAssociateReleaseImages.hpp │ │ │ │ ├── ScanStepAssociateTrackImages.cpp │ │ │ │ ├── ScanStepAssociateTrackImages.hpp │ │ │ │ ├── ScanStepBase.cpp │ │ │ │ ├── ScanStepBase.hpp │ │ │ │ ├── ScanStepCheckForDuplicatedFiles.cpp │ │ │ │ ├── ScanStepCheckForDuplicatedFiles.hpp │ │ │ │ ├── ScanStepCheckForRemovedFiles.cpp │ │ │ │ ├── ScanStepCheckForRemovedFiles.hpp │ │ │ │ ├── ScanStepCompact.cpp │ │ │ │ ├── ScanStepCompact.hpp │ │ │ │ ├── ScanStepComputeClusterStats.cpp │ │ │ │ ├── ScanStepComputeClusterStats.hpp │ │ │ │ ├── ScanStepOptimize.cpp │ │ │ │ ├── ScanStepOptimize.hpp │ │ │ │ ├── ScanStepRemoveOrphanedDbEntries.cpp │ │ │ │ ├── ScanStepRemoveOrphanedDbEntries.hpp │ │ │ │ ├── ScanStepScanFiles.cpp │ │ │ │ ├── ScanStepScanFiles.hpp │ │ │ │ ├── ScanStepUpdateLibraryFields.cpp │ │ │ │ └── ScanStepUpdateLibraryFields.hpp │ │ │ └── types │ │ │ │ ├── ArtistInfo.hpp │ │ │ │ ├── Lyrics.hpp │ │ │ │ ├── PlayList.hpp │ │ │ │ └── TrackMetadata.hpp │ │ ├── include │ │ │ └── services │ │ │ │ └── scanner │ │ │ │ ├── IScannerService.hpp │ │ │ │ ├── ScanErrors.hpp │ │ │ │ ├── ScannerEvents.hpp │ │ │ │ ├── ScannerOptions.hpp │ │ │ │ └── ScannerStats.hpp │ │ └── test │ │ │ ├── ArtistInfo.cpp │ │ │ ├── AudioFileUtils.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Lyrics.cpp │ │ │ ├── PlayList.cpp │ │ │ ├── Scanner.cpp │ │ │ ├── TestTagReader.hpp │ │ │ └── TrackMetadataParser.cpp │ ├── scrobbling │ │ ├── CMakeLists.txt │ │ ├── impl │ │ │ ├── IScrobblingBackend.hpp │ │ │ ├── ScrobblingService.cpp │ │ │ ├── ScrobblingService.hpp │ │ │ ├── internal │ │ │ │ ├── InternalBackend.cpp │ │ │ │ └── InternalBackend.hpp │ │ │ └── listenbrainz │ │ │ │ ├── Exception.hpp │ │ │ │ ├── ListenBrainzBackend.cpp │ │ │ │ ├── ListenBrainzBackend.hpp │ │ │ │ ├── ListenTypes.cpp │ │ │ │ ├── ListenTypes.hpp │ │ │ │ ├── ListensParser.cpp │ │ │ │ ├── ListensParser.hpp │ │ │ │ ├── ListensSynchronizer.cpp │ │ │ │ ├── ListensSynchronizer.hpp │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.hpp │ │ ├── include │ │ │ └── services │ │ │ │ └── scrobbling │ │ │ │ ├── Exception.hpp │ │ │ │ ├── IScrobblingService.hpp │ │ │ │ └── Listen.hpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── Listenbrainz.cpp │ │ │ └── Scrobbling.cpp │ └── transcoding │ │ ├── CMakeLists.txt │ │ ├── impl │ │ ├── TranscodeResourceHandler.cpp │ │ ├── TranscodeResourceHandler.hpp │ │ ├── TranscodeService.cpp │ │ └── TranscodeService.hpp │ │ └── include │ │ └── services │ │ └── transcoding │ │ ├── Exception.hpp │ │ └── ITranscodeService.hpp ├── som │ ├── CMakeLists.txt │ ├── bench │ │ ├── CMakeLists.txt │ │ └── SomBench.cpp │ ├── impl │ │ ├── DataNormalizer.cpp │ │ └── Network.cpp │ ├── include │ │ └── som │ │ │ ├── DataNormalizer.hpp │ │ │ ├── InputVector.hpp │ │ │ ├── Matrix.hpp │ │ │ └── Network.hpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SomTest.cpp └── subsonic │ ├── CMakeLists.txt │ ├── bench │ ├── CMakeLists.txt │ └── SubsonicBench.cpp │ ├── impl │ ├── CoverArtId.cpp │ ├── CoverArtId.hpp │ ├── ParameterParsing.cpp │ ├── ParameterParsing.hpp │ ├── ProtocolVersion.cpp │ ├── ProtocolVersion.hpp │ ├── RequestContext.cpp │ ├── RequestContext.hpp │ ├── ResponseFormat.cpp │ ├── ResponseFormat.hpp │ ├── SubsonicId.cpp │ ├── SubsonicId.hpp │ ├── SubsonicResource.cpp │ ├── SubsonicResource.hpp │ ├── SubsonicResourceConfig.cpp │ ├── SubsonicResourceConfig.hpp │ ├── SubsonicResponse.cpp │ ├── SubsonicResponse.hpp │ ├── SubsonicResponseAllocator.hpp │ ├── TLSMonotonicMemoryResource.hpp │ ├── endpoints │ │ ├── AlbumSongLists.cpp │ │ ├── AlbumSongLists.hpp │ │ ├── Bookmarks.cpp │ │ ├── Bookmarks.hpp │ │ ├── Browsing.cpp │ │ ├── Browsing.hpp │ │ ├── MediaAnnotation.cpp │ │ ├── MediaAnnotation.hpp │ │ ├── MediaLibraryScanning.cpp │ │ ├── MediaLibraryScanning.hpp │ │ ├── MediaRetrieval.cpp │ │ ├── MediaRetrieval.hpp │ │ ├── Playlists.cpp │ │ ├── Playlists.hpp │ │ ├── Podcast.cpp │ │ ├── Podcast.hpp │ │ ├── Searching.cpp │ │ ├── Searching.hpp │ │ ├── System.cpp │ │ ├── System.hpp │ │ ├── Transcoding.cpp │ │ ├── Transcoding.hpp │ │ ├── UserManagement.cpp │ │ ├── UserManagement.hpp │ │ └── transcoding │ │ │ ├── AudioFileId.hpp │ │ │ ├── AudioFileInfo.cpp │ │ │ ├── AudioFileInfo.hpp │ │ │ ├── TranscodeDecision.cpp │ │ │ ├── TranscodeDecision.hpp │ │ │ ├── TranscodeDecisionTracker.cpp │ │ │ └── TranscodeDecisionTracker.hpp │ ├── payloads │ │ ├── ClientInfo.cpp │ │ ├── ClientInfo.hpp │ │ ├── StreamDetails.cpp │ │ └── StreamDetails.hpp │ └── responses │ │ ├── Album.cpp │ │ ├── Album.hpp │ │ ├── AlbumInfo.cpp │ │ ├── AlbumInfo.hpp │ │ ├── Artist.cpp │ │ ├── Artist.hpp │ │ ├── Bookmark.cpp │ │ ├── Bookmark.hpp │ │ ├── Contributor.cpp │ │ ├── Contributor.hpp │ │ ├── DiscTitle.cpp │ │ ├── DiscTitle.hpp │ │ ├── Genre.cpp │ │ ├── Genre.hpp │ │ ├── ItemDate.cpp │ │ ├── ItemDate.hpp │ │ ├── ItemGenre.cpp │ │ ├── ItemGenre.hpp │ │ ├── Lyrics.cpp │ │ ├── Lyrics.hpp │ │ ├── Playlist.cpp │ │ ├── Playlist.hpp │ │ ├── Podcast.cpp │ │ ├── Podcast.hpp │ │ ├── RecordLabel.cpp │ │ ├── RecordLabel.hpp │ │ ├── ReplayGain.cpp │ │ ├── ReplayGain.hpp │ │ ├── Song.cpp │ │ ├── Song.hpp │ │ ├── User.cpp │ │ └── User.hpp │ ├── include │ └── subsonic │ │ └── SubsonicResource.hpp │ └── test │ ├── CMakeLists.txt │ ├── ClientInfo.cpp │ ├── Subsonic.cpp │ ├── SubsonicResponse.cpp │ └── TranscodeDecision.cpp ├── lms ├── CMakeLists.txt ├── main.cpp └── ui │ ├── Auth.cpp │ ├── Auth.hpp │ ├── LmsApplication.cpp │ ├── LmsApplication.hpp │ ├── LmsApplicationException.hpp │ ├── LmsApplicationManager.cpp │ ├── LmsApplicationManager.hpp │ ├── LmsInitApplication.cpp │ ├── LmsInitApplication.hpp │ ├── LmsTheme.cpp │ ├── LmsTheme.hpp │ ├── MediaPlayer.cpp │ ├── MediaPlayer.hpp │ ├── ModalManager.cpp │ ├── ModalManager.hpp │ ├── Notification.hpp │ ├── NotificationContainer.cpp │ ├── NotificationContainer.hpp │ ├── PlayQueue.cpp │ ├── PlayQueue.hpp │ ├── SettingsView.cpp │ ├── SettingsView.hpp │ ├── State.cpp │ ├── State.hpp │ ├── Tooltip.cpp │ ├── Tooltip.hpp │ ├── Utils.cpp │ ├── Utils.hpp │ ├── admin │ ├── About.cpp │ ├── About.hpp │ ├── DebugToolsView.cpp │ ├── DebugToolsView.hpp │ ├── InitWizardView.cpp │ ├── InitWizardView.hpp │ ├── MediaLibrariesView.cpp │ ├── MediaLibrariesView.hpp │ ├── MediaLibraryModal.cpp │ ├── MediaLibraryModal.hpp │ ├── ScanSettingsView.cpp │ ├── ScanSettingsView.hpp │ ├── ScannerController.cpp │ ├── ScannerController.hpp │ ├── ScannerReportResource.cpp │ ├── ScannerReportResource.hpp │ ├── UserView.cpp │ ├── UserView.hpp │ ├── UsersView.cpp │ ├── UsersView.hpp │ └── debug │ │ ├── Database.cpp │ │ ├── Database.hpp │ │ ├── Tracing.cpp │ │ └── Tracing.hpp │ ├── common │ ├── DoubleValidator.cpp │ ├── DoubleValidator.hpp │ ├── InfiniteScrollingContainer.cpp │ ├── InfiniteScrollingContainer.hpp │ ├── LoadingIndicator.cpp │ ├── LoadingIndicator.hpp │ ├── LoginNameValidator.cpp │ ├── LoginNameValidator.hpp │ ├── MandatoryValidator.cpp │ ├── MandatoryValidator.hpp │ ├── PasswordValidator.cpp │ ├── PasswordValidator.hpp │ ├── Template.cpp │ ├── Template.hpp │ ├── UUIDValidator.cpp │ ├── UUIDValidator.hpp │ ├── UppercaseValidator.cpp │ ├── UppercaseValidator.hpp │ └── ValueStringModel.hpp │ ├── explore │ ├── ArtistCollector.cpp │ ├── ArtistCollector.hpp │ ├── ArtistListHelpers.cpp │ ├── ArtistListHelpers.hpp │ ├── ArtistView.cpp │ ├── ArtistView.hpp │ ├── ArtistsView.cpp │ ├── ArtistsView.hpp │ ├── DatabaseCollectorBase.cpp │ ├── DatabaseCollectorBase.hpp │ ├── DropDownMenuSelector.hpp │ ├── Explore.cpp │ ├── Explore.hpp │ ├── Filters.cpp │ ├── Filters.hpp │ ├── PlayQueueController.cpp │ ├── PlayQueueController.hpp │ ├── ReleaseCollector.cpp │ ├── ReleaseCollector.hpp │ ├── ReleaseHelpers.cpp │ ├── ReleaseHelpers.hpp │ ├── ReleaseTypes.cpp │ ├── ReleaseTypes.hpp │ ├── ReleaseView.cpp │ ├── ReleaseView.hpp │ ├── ReleasesView.cpp │ ├── ReleasesView.hpp │ ├── SortModeSelector.hpp │ ├── TrackArtistLinkTypeSelector.hpp │ ├── TrackCollector.cpp │ ├── TrackCollector.hpp │ ├── TrackListHelpers.cpp │ ├── TrackListHelpers.hpp │ ├── TrackListView.cpp │ ├── TrackListView.hpp │ ├── TrackListsView.cpp │ ├── TrackListsView.hpp │ ├── TracksView.cpp │ └── TracksView.hpp │ └── resource │ ├── ArtworkResource.cpp │ ├── ArtworkResource.hpp │ ├── AudioFileResource.cpp │ ├── AudioFileResource.hpp │ ├── AudioTranscodingResource.cpp │ ├── AudioTranscodingResource.hpp │ ├── DownloadResource.cpp │ └── DownloadResource.hpp └── tools ├── CMakeLists.txt ├── audioinfo ├── CMakeLists.txt └── LmsAudioInfo.cpp ├── db-generator ├── CMakeLists.txt └── LmsDbGenerator.cpp ├── recommendation ├── CMakeLists.txt └── LmsRecommendation.cpp ├── similarity-parameters ├── GeneticAlgorithm.hpp ├── LmsSimilarityParameters.cpp └── ParallelFor.hpp └── subsonic-api-bench └── search3.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/build-alpine.yml -------------------------------------------------------------------------------- /.github/workflows/build-arch-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/build-arch-all.yml -------------------------------------------------------------------------------- /.github/workflows/build-arch-basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/build-arch-basic.yml -------------------------------------------------------------------------------- /.github/workflows/build-freebsd-basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/build-freebsd-basic.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile-build-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/Dockerfile-build-alpine -------------------------------------------------------------------------------- /Dockerfile-build-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/Dockerfile-build-arch -------------------------------------------------------------------------------- /Dockerfile-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/Dockerfile-release -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/README.md -------------------------------------------------------------------------------- /SUBSONIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/SUBSONIC.md -------------------------------------------------------------------------------- /approot/admin-about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-about.xml -------------------------------------------------------------------------------- /approot/admin-db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-db.xml -------------------------------------------------------------------------------- /approot/admin-debugtools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-debugtools.xml -------------------------------------------------------------------------------- /approot/admin-initwizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-initwizard.xml -------------------------------------------------------------------------------- /approot/admin-medialibraries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-medialibraries.xml -------------------------------------------------------------------------------- /approot/admin-medialibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-medialibrary.xml -------------------------------------------------------------------------------- /approot/admin-scannercontroller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-scannercontroller.xml -------------------------------------------------------------------------------- /approot/admin-scansettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-scansettings.xml -------------------------------------------------------------------------------- /approot/admin-tracing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-tracing.xml -------------------------------------------------------------------------------- /approot/admin-user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-user.xml -------------------------------------------------------------------------------- /approot/admin-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/admin-users.xml -------------------------------------------------------------------------------- /approot/artist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/artist.xml -------------------------------------------------------------------------------- /approot/artists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/artists.xml -------------------------------------------------------------------------------- /approot/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/error.xml -------------------------------------------------------------------------------- /approot/explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/explore.xml -------------------------------------------------------------------------------- /approot/images/unknown-artist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/images/unknown-artist.svg -------------------------------------------------------------------------------- /approot/images/unknown-cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/images/unknown-cover.svg -------------------------------------------------------------------------------- /approot/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/login.xml -------------------------------------------------------------------------------- /approot/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/main.xml -------------------------------------------------------------------------------- /approot/mediaplayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/mediaplayer.xml -------------------------------------------------------------------------------- /approot/messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages.xml -------------------------------------------------------------------------------- /approot/messages_en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_en-US.xml -------------------------------------------------------------------------------- /approot/messages_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_es.xml -------------------------------------------------------------------------------- /approot/messages_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_fr.xml -------------------------------------------------------------------------------- /approot/messages_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_it.xml -------------------------------------------------------------------------------- /approot/messages_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_pl.xml -------------------------------------------------------------------------------- /approot/messages_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/messages_zh.xml -------------------------------------------------------------------------------- /approot/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/misc.xml -------------------------------------------------------------------------------- /approot/notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/notifications.xml -------------------------------------------------------------------------------- /approot/playqueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/playqueue.xml -------------------------------------------------------------------------------- /approot/release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/release.xml -------------------------------------------------------------------------------- /approot/releases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/releases.xml -------------------------------------------------------------------------------- /approot/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/settings.xml -------------------------------------------------------------------------------- /approot/tracklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/tracklist.xml -------------------------------------------------------------------------------- /approot/tracklists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/tracklists.xml -------------------------------------------------------------------------------- /approot/tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/approot/tracks.xml -------------------------------------------------------------------------------- /cmake/modules/FindFilesystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/cmake/modules/FindFilesystem.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPAM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/cmake/modules/FindPAM.cmake -------------------------------------------------------------------------------- /cmake/modules/FindStbImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/cmake/modules/FindStbImage.cmake -------------------------------------------------------------------------------- /conf/lms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/conf/lms.conf -------------------------------------------------------------------------------- /conf/pam/lms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/conf/pam/lms -------------------------------------------------------------------------------- /conf/systemd/default.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/conf/systemd/default.service -------------------------------------------------------------------------------- /docroot/css/bootstrap.solar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/docroot/css/bootstrap.solar.min.css -------------------------------------------------------------------------------- /docroot/css/lms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/docroot/css/lms.css -------------------------------------------------------------------------------- /docroot/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/docroot/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docroot/js/mediaplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/docroot/js/mediaplayer.js -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/audio/impl/AudioFileInfoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/AudioFileInfoParser.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/TagReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/TagReader.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFile.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFile.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFileInfo.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFileInfo.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFileInfoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFileInfoParser.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/AudioFileInfoParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/AudioFileInfoParser.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/ImageReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/ImageReader.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/ImageReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/ImageReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/TagReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/TagReader.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/TagReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/TagReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/Transcoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/Transcoder.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/Transcoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/Transcoder.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/Utils.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/ffmpeg/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/ffmpeg/Utils.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/AudioFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/AudioFileInfo.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/AudioFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/AudioFileInfo.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/AudioFileInfoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/AudioFileInfoParser.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/AudioFileInfoParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/AudioFileInfoParser.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/ImageReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/ImageReader.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/ImageReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/ImageReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/TagLibDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/TagLibDefs.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/TagReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/TagReader.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/TagReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/TagReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/Utils.cpp -------------------------------------------------------------------------------- /src/libs/audio/impl/taglib/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/impl/taglib/Utils.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/AudioProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/AudioProperties.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/Exception.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/IAudioFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/IAudioFileInfo.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/IAudioFileInfoParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/IAudioFileInfoParser.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/IImageReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/IImageReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/ITagReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/ITagReader.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/ITranscoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/ITranscoder.hpp -------------------------------------------------------------------------------- /src/libs/audio/include/audio/TranscodeTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/audio/include/audio/TranscodeTypes.hpp -------------------------------------------------------------------------------- /src/libs/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/core/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/bench/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/core/bench/TraceLoggerBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/bench/TraceLoggerBench.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/ArchiveZipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ArchiveZipper.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/ArchiveZipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ArchiveZipper.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ChildProcess.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/ChildProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ChildProcess.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/ChildProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ChildProcessManager.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/ChildProcessManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/ChildProcessManager.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Config.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Config.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/FileResourceHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/FileResourceHandler.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/FileResourceHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/FileResourceHandler.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/IOContextRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/IOContextRunner.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/JobScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/JobScheduler.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/JobScheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/JobScheduler.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Logger.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Logger.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/MimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/MimeTypes.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/NetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/NetAddress.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/PartialDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/PartialDateTime.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Path.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Random.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/RecursiveSharedMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/RecursiveSharedMutex.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/String.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/TraceLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/TraceLogger.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/TraceLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/TraceLogger.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/UUID.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/Version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/Version.cpp.in -------------------------------------------------------------------------------- /src/libs/core/impl/XxHash3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/XxHash3.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/http/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/http/Client.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/http/Client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/http/Client.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/http/ClientRequest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/http/ClientRequest.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/http/SendQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/http/SendQueue.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/http/SendQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/http/SendQueue.hpp -------------------------------------------------------------------------------- /src/libs/core/impl/media/Codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/media/Codec.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/media/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/media/Container.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/media/ImageType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/media/ImageType.cpp -------------------------------------------------------------------------------- /src/libs/core/impl/media/MimeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/impl/media/MimeType.cpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Crc32Calculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Crc32Calculator.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/EnumSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/EnumSet.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Exception.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/FileResourceHandlerCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/FileResourceHandlerCreator.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IChildProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IChildProcess.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IChildProcessManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IChildProcessManager.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IConfig.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IJob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IJob.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IJobScheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IJobScheduler.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/ILogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/ILogger.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IOContextRunner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IOContextRunner.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IResourceHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IResourceHandler.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/ITraceLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/ITraceLogger.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/IZipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/IZipper.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/LiteralString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/LiteralString.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/MimeTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/MimeTypes.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/NetAddress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/NetAddress.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/PartialDateTime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/PartialDateTime.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Path.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Random.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/RecursiveSharedMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/RecursiveSharedMutex.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Service.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/SizeLiterals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/SizeLiterals.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/String.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/SystemPaths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/SystemPaths.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/TaggedType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/TaggedType.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Tuple.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/UUID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/UUID.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Utils.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/Version.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/XxHash3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/XxHash3.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/ZipperResourceHandlerCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/ZipperResourceHandlerCreator.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/http/ClientRequestParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/http/ClientRequestParameters.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/http/IClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/http/IClient.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/media/Codec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/media/Codec.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/media/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/media/Container.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/media/ImageType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/media/ImageType.hpp -------------------------------------------------------------------------------- /src/libs/core/include/core/media/MimeType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/include/core/media/MimeType.hpp -------------------------------------------------------------------------------- /src/libs/core/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/core/test/EnumSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/EnumSet.cpp -------------------------------------------------------------------------------- /src/libs/core/test/JobScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/JobScheduler.cpp -------------------------------------------------------------------------------- /src/libs/core/test/LiteralString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/LiteralString.cpp -------------------------------------------------------------------------------- /src/libs/core/test/PartialDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/PartialDateTime.cpp -------------------------------------------------------------------------------- /src/libs/core/test/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/Path.cpp -------------------------------------------------------------------------------- /src/libs/core/test/RecursiveSharedMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/RecursiveSharedMutex.cpp -------------------------------------------------------------------------------- /src/libs/core/test/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/Service.cpp -------------------------------------------------------------------------------- /src/libs/core/test/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/String.cpp -------------------------------------------------------------------------------- /src/libs/core/test/TraceLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/TraceLogger.cpp -------------------------------------------------------------------------------- /src/libs/core/test/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/UUID.cpp -------------------------------------------------------------------------------- /src/libs/core/test/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/Utils.cpp -------------------------------------------------------------------------------- /src/libs/core/test/XxHash3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/core/test/XxHash3.cpp -------------------------------------------------------------------------------- /src/libs/database/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/database/impl/Db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Db.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/Db.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Db.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/IdType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/IdType.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/Migration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Migration.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/Migration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Migration.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Object.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/QueryPlanRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/QueryPlanRecorder.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/QueryPlanRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/QueryPlanRecorder.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Session.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/SqlQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/SqlQuery.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/SqlQuery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/SqlQuery.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Transaction.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/TransactionChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/TransactionChecker.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/TransactionChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/TransactionChecker.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Utils.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/Utils.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Artist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Artist.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/ArtistInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/ArtistInfo.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Artwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Artwork.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/AuthToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/AuthToken.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Cluster.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Directory.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Image.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Listen.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/MediaLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/MediaLibrary.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Medium.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/PlayListFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/PlayListFile.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/PlayQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/PlayQueue.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Podcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Podcast.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/PodcastEpisode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/PodcastEpisode.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/RatedArtist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/RatedArtist.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/RatedRelease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/RatedRelease.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/RatedTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/RatedTrack.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Release.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/ScanSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/ScanSettings.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/StarredArtist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/StarredArtist.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/StarredRelease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/StarredRelease.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/StarredTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/StarredTrack.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Track.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackArtistLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackArtistLink.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackBookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackBookmark.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackEmbeddedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackEmbeddedImage.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackEmbeddedImageLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackEmbeddedImageLink.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackFeatures.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackList.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/TrackLyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/TrackLyrics.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/Types.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/UIState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/UIState.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/User.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/detail/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/detail/Types.cpp -------------------------------------------------------------------------------- /src/libs/database/impl/objects/detail/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/objects/detail/Types.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/EnumSetTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/EnumSetTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/IdTypeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/IdTypeTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/ImageHashTypeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/ImageHashTypeTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/PartialDateTimeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/PartialDateTimeTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/PathTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/PathTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/impl/traits/StringViewTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/impl/traits/StringViewTraits.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/IDb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/IDb.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/IQueryPlanRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/IQueryPlanRecorder.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/IdRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/IdRange.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/IdType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/IdType.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/Object.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/Session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/Session.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/Transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/Transaction.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/Types.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Artist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Artist.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ArtistId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ArtistId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ArtistInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ArtistInfo.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ArtistInfoId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ArtistInfoId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Artwork.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Artwork.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ArtworkId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ArtworkId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/AuthToken.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/AuthToken.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/AuthTokenId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/AuthTokenId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Cluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Cluster.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ClusterId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ClusterId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/CountryId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/CountryId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Directory.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/DirectoryId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/DirectoryId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Filters.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Image.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ImageId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ImageId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/LabelId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/LabelId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Listen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Listen.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ListenId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ListenId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/MediaLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/MediaLibrary.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/MediaLibraryId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/MediaLibraryId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Medium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Medium.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/MediumId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/MediumId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/PlayListFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/PlayListFile.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/PlayQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/PlayQueue.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Podcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Podcast.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/PodcastEpisode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/PodcastEpisode.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/PodcastEpisodeId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/PodcastEpisodeId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/PodcastId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/PodcastId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedArtist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedArtist.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedArtistId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedArtistId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedRelease.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedRelease.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedReleaseId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedReleaseId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedTrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedTrack.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/RatedTrackId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/RatedTrackId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Release.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Release.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ReleaseId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ReleaseId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ReleaseTypeId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ReleaseTypeId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/ScanSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/ScanSettings.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredArtist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredArtist.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredArtistId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredArtistId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredRelease.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredRelease.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredReleaseId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredReleaseId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredTrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredTrack.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/StarredTrackId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/StarredTrackId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Track.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackArtistLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackArtistLink.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackBookmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackBookmark.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackEmbeddedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackEmbeddedImage.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackEmbeddedImageId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackEmbeddedImageId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackEmbeddedImageLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackEmbeddedImageLink.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackFeatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackFeatures.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackList.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackListId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackListId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/TrackLyrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/TrackLyrics.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/Types.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/UIState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/UIState.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/UIStateId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/UIStateId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/User.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/User.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/UserId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/UserId.hpp -------------------------------------------------------------------------------- /src/libs/database/include/database/objects/detail/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/include/database/objects/detail/Types.hpp -------------------------------------------------------------------------------- /src/libs/database/test/Artist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Artist.cpp -------------------------------------------------------------------------------- /src/libs/database/test/ArtistInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/ArtistInfo.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Artwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Artwork.cpp -------------------------------------------------------------------------------- /src/libs/database/test/AuthToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/AuthToken.cpp -------------------------------------------------------------------------------- /src/libs/database/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/database/test/Cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Cluster.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Common.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Common.hpp -------------------------------------------------------------------------------- /src/libs/database/test/DatabaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/DatabaseTest.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Directory.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Image.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Listen.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Medium.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Migration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Migration.cpp -------------------------------------------------------------------------------- /src/libs/database/test/PlayListFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/PlayListFile.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Podcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Podcast.cpp -------------------------------------------------------------------------------- /src/libs/database/test/RatedArtist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/RatedArtist.cpp -------------------------------------------------------------------------------- /src/libs/database/test/RatedRelease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/RatedRelease.cpp -------------------------------------------------------------------------------- /src/libs/database/test/RatedTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/RatedTrack.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Release.cpp -------------------------------------------------------------------------------- /src/libs/database/test/ScanSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/ScanSettings.cpp -------------------------------------------------------------------------------- /src/libs/database/test/StarredArtist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/StarredArtist.cpp -------------------------------------------------------------------------------- /src/libs/database/test/StarredRelease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/StarredRelease.cpp -------------------------------------------------------------------------------- /src/libs/database/test/StarredTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/StarredTrack.cpp -------------------------------------------------------------------------------- /src/libs/database/test/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/Track.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackArtistLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackArtistLink.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackBookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackBookmark.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackEmbeddedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackEmbeddedImage.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackFeatures.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackList.cpp -------------------------------------------------------------------------------- /src/libs/database/test/TrackLyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/TrackLyrics.cpp -------------------------------------------------------------------------------- /src/libs/database/test/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/database/test/User.cpp -------------------------------------------------------------------------------- /src/libs/image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/image/impl/EncodedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/EncodedImage.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/EncodedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/EncodedImage.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/graphicsmagick/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/graphicsmagick/Image.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/graphicsmagick/RawImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/graphicsmagick/RawImage.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/graphicsmagick/RawImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/graphicsmagick/RawImage.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/Exception.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/Exception.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/Image.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/RawImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/RawImage.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/RawImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/RawImage.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImage.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImage.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImageResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImageResize.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImageResize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImageResize.hpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImageWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImageWrite.cpp -------------------------------------------------------------------------------- /src/libs/image/impl/stb/StbImageWrite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/impl/stb/StbImageWrite.hpp -------------------------------------------------------------------------------- /src/libs/image/include/image/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/include/image/Exception.hpp -------------------------------------------------------------------------------- /src/libs/image/include/image/IEncodedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/include/image/IEncodedImage.hpp -------------------------------------------------------------------------------- /src/libs/image/include/image/IRawImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/include/image/IRawImage.hpp -------------------------------------------------------------------------------- /src/libs/image/include/image/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/include/image/Image.hpp -------------------------------------------------------------------------------- /src/libs/image/include/image/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/image/include/image/Types.hpp -------------------------------------------------------------------------------- /src/libs/services/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/artwork/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/artwork/impl/ArtworkService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/impl/ArtworkService.cpp -------------------------------------------------------------------------------- /src/libs/services/artwork/impl/ArtworkService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/impl/ArtworkService.hpp -------------------------------------------------------------------------------- /src/libs/services/artwork/impl/ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/impl/ImageCache.cpp -------------------------------------------------------------------------------- /src/libs/services/artwork/impl/ImageCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/impl/ImageCache.hpp -------------------------------------------------------------------------------- /src/libs/services/artwork/include/services/artwork/IArtworkService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/artwork/include/services/artwork/IArtworkService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/auth/impl/AuthServiceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/AuthServiceBase.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/AuthServiceBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/AuthServiceBase.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/AuthTokenService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/AuthTokenService.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/AuthTokenService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/AuthTokenService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/EnvService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/EnvService.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/LoginThrottler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/LoginThrottler.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/LoginThrottler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/LoginThrottler.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/PasswordServiceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/PasswordServiceBase.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/PasswordServiceBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/PasswordServiceBase.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/http-headers/HttpHeadersEnvService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/http-headers/HttpHeadersEnvService.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/http-headers/HttpHeadersEnvService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/http-headers/HttpHeadersEnvService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/internal/InternalPasswordService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/internal/InternalPasswordService.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/internal/InternalPasswordService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/internal/InternalPasswordService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/pam/PAMPasswordService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/pam/PAMPasswordService.cpp -------------------------------------------------------------------------------- /src/libs/services/auth/impl/pam/PAMPasswordService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/impl/pam/PAMPasswordService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/include/services/auth/IAuthTokenService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/include/services/auth/IAuthTokenService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/include/services/auth/IEnvService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/include/services/auth/IEnvService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/include/services/auth/IPasswordService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/include/services/auth/IPasswordService.hpp -------------------------------------------------------------------------------- /src/libs/services/auth/include/services/auth/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/auth/include/services/auth/Types.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/FeedbackService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/FeedbackService.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/FeedbackService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/FeedbackService.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/FeedbackService.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/FeedbackService.impl.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/IFeedbackBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/IFeedbackBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/internal/InternalBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/internal/InternalBackend.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/internal/InternalBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/internal/InternalBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/Exception.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbackTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbackTypes.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbackTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbackTypes.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbacksParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbacksParser.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbacksParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbacksParser.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbacksSynchronizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbacksSynchronizer.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/FeedbacksSynchronizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/FeedbacksSynchronizer.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/ListenBrainzBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/ListenBrainzBackend.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/ListenBrainzBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/ListenBrainzBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/Utils.cpp -------------------------------------------------------------------------------- /src/libs/services/feedback/impl/listenbrainz/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/impl/listenbrainz/Utils.hpp -------------------------------------------------------------------------------- /src/libs/services/feedback/include/services/feedback/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/feedback/include/services/feedback/Exception.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/Exception.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/Executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/Executor.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/Executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/Executor.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/PodcastParsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/PodcastParsing.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/PodcastParsing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/PodcastParsing.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/PodcastService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/PodcastService.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/PodcastService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/PodcastService.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/PodcastTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/PodcastTypes.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/RefreshContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/RefreshContext.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/CheckForMissingFilesStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/CheckForMissingFilesStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/CheckForMissingFilesStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/CheckForMissingFilesStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/ClearTmpDirectoryStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/ClearTmpDirectoryStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/ClearTmpDirectoryStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/ClearTmpDirectoryStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadEpisodeArtworksStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadEpisodeArtworksStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadEpisodeArtworksStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadEpisodeArtworksStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadEpisodesStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadEpisodesStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadEpisodesStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadEpisodesStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadPodcastArtworksStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadPodcastArtworksStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/DownloadPodcastArtworksStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/DownloadPodcastArtworksStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RefreshPodcastsStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RefreshPodcastsStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RefreshPodcastsStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RefreshPodcastsStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RefreshStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RefreshStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RemoveEpisodesStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RemoveEpisodesStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RemoveEpisodesStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RemoveEpisodesStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RemovePodcastsStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RemovePodcastsStep.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/RemovePodcastsStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/RemovePodcastsStep.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/Utils.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/impl/steps/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/impl/steps/Utils.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/include/services/podcast/IPodcastService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/include/services/podcast/IPodcastService.hpp -------------------------------------------------------------------------------- /src/libs/services/podcast/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/podcast/test/PodcastParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/test/PodcastParser.cpp -------------------------------------------------------------------------------- /src/libs/services/podcast/test/PodcastService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/podcast/test/PodcastService.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/ClustersEngineCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/ClustersEngineCreator.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/FeaturesEngineCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/FeaturesEngineCreator.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/IEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/IEngine.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/PlaylistGeneratorService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/PlaylistGeneratorService.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/PlaylistGeneratorService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/PlaylistGeneratorService.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/RecommendationService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/RecommendationService.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/RecommendationService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/RecommendationService.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/clusters/ClustersEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/clusters/ClustersEngine.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/clusters/ClustersEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/clusters/ClustersEngine.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesDefs.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesDefs.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesEngine.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesEngine.hpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesEngineCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesEngineCache.cpp -------------------------------------------------------------------------------- /src/libs/services/recommendation/impl/features/FeaturesEngineCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/recommendation/impl/features/FeaturesEngineCache.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/scanner/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/bench/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/scanner/bench/Lyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/bench/Lyrics.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/bench/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/bench/Scanner.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/bench/TrackMetadataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/bench/TrackMetadataParser.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/FileScanners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/FileScanners.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/FileScanners.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/FileScanners.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/MediaLibraryInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/MediaLibraryInfo.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScanContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScanContext.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScannerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScannerService.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScannerService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScannerService.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScannerServiceTraceLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScannerServiceTraceLogger.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScannerSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScannerSettings.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/ScannerStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/ScannerStats.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/helpers/ArtistHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/helpers/ArtistHelpers.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/helpers/ArtistHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/helpers/ArtistHelpers.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/FileScanOperationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/FileScanOperationBase.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/FileScanOperationBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/FileScanOperationBase.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/FileToScan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/FileToScan.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/IFileScanOperation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/IFileScanOperation.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/IFileScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/IFileScanner.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/ImageFileScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/ImageFileScanner.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/ImageFileScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/ImageFileScanner.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/Utils.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/Utils.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/audiofile/AudioFileScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/audiofile/AudioFileScanner.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/audiofile/AudioFileScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/audiofile/AudioFileScanner.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/audiofile/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/audiofile/Utils.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/audiofile/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/audiofile/Utils.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/lyrics/LyricsFileScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/lyrics/LyricsFileScanner.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/lyrics/LyricsFileScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/lyrics/LyricsFileScanner.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/lyrics/LyricsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/lyrics/LyricsParser.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/lyrics/LyricsParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/lyrics/LyricsParser.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/playlist/PlayListParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/playlist/PlayListParser.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/scanners/playlist/PlayListParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/scanners/playlist/PlayListParser.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/IScanStep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/IScanStep.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/JobQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/JobQueue.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/JobQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/JobQueue.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanErrorLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanErrorLogger.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanErrorLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanErrorLogger.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepArtistReconciliation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepArtistReconciliation.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepArtistReconciliation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepArtistReconciliation.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateArtistImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateArtistImages.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateArtistImages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateArtistImages.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateMediumImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateMediumImages.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateMediumImages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateMediumImages.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateTrackImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateTrackImages.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepAssociateTrackImages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepAssociateTrackImages.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepBase.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepBase.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepCheckForRemovedFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepCheckForRemovedFiles.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepCheckForRemovedFiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepCheckForRemovedFiles.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepCompact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepCompact.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepCompact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepCompact.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepComputeClusterStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepComputeClusterStats.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepComputeClusterStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepComputeClusterStats.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepOptimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepOptimize.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepOptimize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepOptimize.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepScanFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepScanFiles.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepScanFiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepScanFiles.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepUpdateLibraryFields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepUpdateLibraryFields.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/steps/ScanStepUpdateLibraryFields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/steps/ScanStepUpdateLibraryFields.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/types/ArtistInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/types/ArtistInfo.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/types/Lyrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/types/Lyrics.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/types/PlayList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/types/PlayList.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/impl/types/TrackMetadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/impl/types/TrackMetadata.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/include/services/scanner/IScannerService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/include/services/scanner/IScannerService.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/include/services/scanner/ScanErrors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/include/services/scanner/ScanErrors.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/include/services/scanner/ScannerEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/include/services/scanner/ScannerEvents.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/include/services/scanner/ScannerOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/include/services/scanner/ScannerOptions.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/include/services/scanner/ScannerStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/include/services/scanner/ScannerStats.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/ArtistInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/ArtistInfo.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/AudioFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/AudioFileUtils.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/scanner/test/Lyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/Lyrics.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/PlayList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/PlayList.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/Scanner.cpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/TestTagReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/TestTagReader.hpp -------------------------------------------------------------------------------- /src/libs/services/scanner/test/TrackMetadataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scanner/test/TrackMetadataParser.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/IScrobblingBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/IScrobblingBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/ScrobblingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/ScrobblingService.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/ScrobblingService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/ScrobblingService.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/internal/InternalBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/internal/InternalBackend.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/internal/InternalBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/internal/InternalBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/Exception.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListenBrainzBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListenBrainzBackend.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListenBrainzBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListenBrainzBackend.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListenTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListenTypes.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListenTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListenTypes.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListensParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListensParser.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/ListensParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/ListensParser.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/Utils.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/impl/listenbrainz/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/impl/listenbrainz/Utils.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/include/services/scrobbling/Listen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/include/services/scrobbling/Listen.hpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/scrobbling/test/Listenbrainz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/test/Listenbrainz.cpp -------------------------------------------------------------------------------- /src/libs/services/scrobbling/test/Scrobbling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/scrobbling/test/Scrobbling.cpp -------------------------------------------------------------------------------- /src/libs/services/transcoding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/transcoding/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/services/transcoding/impl/TranscodeResourceHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/transcoding/impl/TranscodeResourceHandler.cpp -------------------------------------------------------------------------------- /src/libs/services/transcoding/impl/TranscodeResourceHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/transcoding/impl/TranscodeResourceHandler.hpp -------------------------------------------------------------------------------- /src/libs/services/transcoding/impl/TranscodeService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/transcoding/impl/TranscodeService.cpp -------------------------------------------------------------------------------- /src/libs/services/transcoding/impl/TranscodeService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/services/transcoding/impl/TranscodeService.hpp -------------------------------------------------------------------------------- /src/libs/som/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/som/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/bench/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/som/bench/SomBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/bench/SomBench.cpp -------------------------------------------------------------------------------- /src/libs/som/impl/DataNormalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/impl/DataNormalizer.cpp -------------------------------------------------------------------------------- /src/libs/som/impl/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/impl/Network.cpp -------------------------------------------------------------------------------- /src/libs/som/include/som/DataNormalizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/include/som/DataNormalizer.hpp -------------------------------------------------------------------------------- /src/libs/som/include/som/InputVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/include/som/InputVector.hpp -------------------------------------------------------------------------------- /src/libs/som/include/som/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/include/som/Matrix.hpp -------------------------------------------------------------------------------- /src/libs/som/include/som/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/include/som/Network.hpp -------------------------------------------------------------------------------- /src/libs/som/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/som/test/SomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/som/test/SomTest.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/subsonic/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/bench/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/subsonic/bench/SubsonicBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/bench/SubsonicBench.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/CoverArtId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/CoverArtId.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/CoverArtId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/CoverArtId.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ParameterParsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ParameterParsing.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ParameterParsing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ParameterParsing.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ProtocolVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ProtocolVersion.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ProtocolVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ProtocolVersion.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/RequestContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/RequestContext.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/RequestContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/RequestContext.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ResponseFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ResponseFormat.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/ResponseFormat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/ResponseFormat.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicId.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicId.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResource.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResource.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResourceConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResourceConfig.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResourceConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResourceConfig.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResponse.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResponse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResponse.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/SubsonicResponseAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/SubsonicResponseAllocator.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/TLSMonotonicMemoryResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/TLSMonotonicMemoryResource.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/AlbumSongLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/AlbumSongLists.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/AlbumSongLists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/AlbumSongLists.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Bookmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Bookmarks.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Bookmarks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Bookmarks.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Browsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Browsing.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Browsing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Browsing.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaAnnotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaAnnotation.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaAnnotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaAnnotation.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaLibraryScanning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaLibraryScanning.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaLibraryScanning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaLibraryScanning.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaRetrieval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaRetrieval.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/MediaRetrieval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/MediaRetrieval.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Playlists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Playlists.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Playlists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Playlists.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Podcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Podcast.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Podcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Podcast.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Searching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Searching.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Searching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Searching.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/System.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/System.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Transcoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Transcoding.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/Transcoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/Transcoding.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/UserManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/UserManagement.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/UserManagement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/UserManagement.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/transcoding/AudioFileId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/transcoding/AudioFileId.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/transcoding/AudioFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/transcoding/AudioFileInfo.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/transcoding/AudioFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/transcoding/AudioFileInfo.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/transcoding/TranscodeDecision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/transcoding/TranscodeDecision.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/endpoints/transcoding/TranscodeDecision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/endpoints/transcoding/TranscodeDecision.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/payloads/ClientInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/payloads/ClientInfo.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/payloads/ClientInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/payloads/ClientInfo.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/payloads/StreamDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/payloads/StreamDetails.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/payloads/StreamDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/payloads/StreamDetails.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Album.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Album.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Album.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Album.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/AlbumInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/AlbumInfo.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/AlbumInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/AlbumInfo.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Artist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Artist.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Artist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Artist.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Bookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Bookmark.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Bookmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Bookmark.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Contributor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Contributor.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Contributor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Contributor.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/DiscTitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/DiscTitle.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/DiscTitle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/DiscTitle.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Genre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Genre.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Genre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Genre.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ItemDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ItemDate.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ItemDate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ItemDate.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ItemGenre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ItemGenre.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ItemGenre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ItemGenre.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Lyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Lyrics.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Lyrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Lyrics.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Playlist.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Playlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Playlist.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Podcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Podcast.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Podcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Podcast.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/RecordLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/RecordLabel.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/RecordLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/RecordLabel.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ReplayGain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ReplayGain.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/ReplayGain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/ReplayGain.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Song.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/Song.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/Song.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/User.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/impl/responses/User.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/impl/responses/User.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/include/subsonic/SubsonicResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/include/subsonic/SubsonicResource.hpp -------------------------------------------------------------------------------- /src/libs/subsonic/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/libs/subsonic/test/ClientInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/test/ClientInfo.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/test/Subsonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/test/Subsonic.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/test/SubsonicResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/test/SubsonicResponse.cpp -------------------------------------------------------------------------------- /src/libs/subsonic/test/TranscodeDecision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/libs/subsonic/test/TranscodeDecision.cpp -------------------------------------------------------------------------------- /src/lms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/CMakeLists.txt -------------------------------------------------------------------------------- /src/lms/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/main.cpp -------------------------------------------------------------------------------- /src/lms/ui/Auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Auth.cpp -------------------------------------------------------------------------------- /src/lms/ui/Auth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Auth.hpp -------------------------------------------------------------------------------- /src/lms/ui/LmsApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsApplication.cpp -------------------------------------------------------------------------------- /src/lms/ui/LmsApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsApplication.hpp -------------------------------------------------------------------------------- /src/lms/ui/LmsApplicationException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsApplicationException.hpp -------------------------------------------------------------------------------- /src/lms/ui/LmsApplicationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsApplicationManager.cpp -------------------------------------------------------------------------------- /src/lms/ui/LmsApplicationManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsApplicationManager.hpp -------------------------------------------------------------------------------- /src/lms/ui/LmsInitApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsInitApplication.cpp -------------------------------------------------------------------------------- /src/lms/ui/LmsInitApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsInitApplication.hpp -------------------------------------------------------------------------------- /src/lms/ui/LmsTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsTheme.cpp -------------------------------------------------------------------------------- /src/lms/ui/LmsTheme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/LmsTheme.hpp -------------------------------------------------------------------------------- /src/lms/ui/MediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/MediaPlayer.cpp -------------------------------------------------------------------------------- /src/lms/ui/MediaPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/MediaPlayer.hpp -------------------------------------------------------------------------------- /src/lms/ui/ModalManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/ModalManager.cpp -------------------------------------------------------------------------------- /src/lms/ui/ModalManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/ModalManager.hpp -------------------------------------------------------------------------------- /src/lms/ui/Notification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Notification.hpp -------------------------------------------------------------------------------- /src/lms/ui/NotificationContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/NotificationContainer.cpp -------------------------------------------------------------------------------- /src/lms/ui/NotificationContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/NotificationContainer.hpp -------------------------------------------------------------------------------- /src/lms/ui/PlayQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/PlayQueue.cpp -------------------------------------------------------------------------------- /src/lms/ui/PlayQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/PlayQueue.hpp -------------------------------------------------------------------------------- /src/lms/ui/SettingsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/SettingsView.cpp -------------------------------------------------------------------------------- /src/lms/ui/SettingsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/SettingsView.hpp -------------------------------------------------------------------------------- /src/lms/ui/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/State.cpp -------------------------------------------------------------------------------- /src/lms/ui/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/State.hpp -------------------------------------------------------------------------------- /src/lms/ui/Tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Tooltip.cpp -------------------------------------------------------------------------------- /src/lms/ui/Tooltip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Tooltip.hpp -------------------------------------------------------------------------------- /src/lms/ui/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Utils.cpp -------------------------------------------------------------------------------- /src/lms/ui/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/Utils.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/About.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/About.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/About.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/DebugToolsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/DebugToolsView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/DebugToolsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/DebugToolsView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/InitWizardView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/InitWizardView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/InitWizardView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/InitWizardView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/MediaLibrariesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/MediaLibrariesView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/MediaLibrariesView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/MediaLibrariesView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/MediaLibraryModal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/MediaLibraryModal.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/MediaLibraryModal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/MediaLibraryModal.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScanSettingsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScanSettingsView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScanSettingsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScanSettingsView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScannerController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScannerController.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScannerController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScannerController.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScannerReportResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScannerReportResource.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/ScannerReportResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/ScannerReportResource.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/UserView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/UserView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/UserView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/UserView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/UsersView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/UsersView.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/UsersView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/UsersView.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/debug/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/debug/Database.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/debug/Database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/debug/Database.hpp -------------------------------------------------------------------------------- /src/lms/ui/admin/debug/Tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/debug/Tracing.cpp -------------------------------------------------------------------------------- /src/lms/ui/admin/debug/Tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/admin/debug/Tracing.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/DoubleValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/DoubleValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/DoubleValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/DoubleValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/InfiniteScrollingContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/InfiniteScrollingContainer.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/InfiniteScrollingContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/InfiniteScrollingContainer.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/LoadingIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/LoadingIndicator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/LoadingIndicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/LoadingIndicator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/LoginNameValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/LoginNameValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/LoginNameValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/LoginNameValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/MandatoryValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/MandatoryValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/MandatoryValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/MandatoryValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/PasswordValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/PasswordValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/PasswordValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/PasswordValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/Template.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/Template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/Template.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/UUIDValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/UUIDValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/UUIDValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/UUIDValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/UppercaseValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/UppercaseValidator.cpp -------------------------------------------------------------------------------- /src/lms/ui/common/UppercaseValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/UppercaseValidator.hpp -------------------------------------------------------------------------------- /src/lms/ui/common/ValueStringModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/common/ValueStringModel.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistCollector.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistCollector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistCollector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistListHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistListHelpers.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistListHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistListHelpers.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistsView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ArtistsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ArtistsView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/DatabaseCollectorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/DatabaseCollectorBase.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/DatabaseCollectorBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/DatabaseCollectorBase.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/DropDownMenuSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/DropDownMenuSelector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/Explore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/Explore.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/Explore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/Explore.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/Filters.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/Filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/Filters.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/PlayQueueController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/PlayQueueController.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/PlayQueueController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/PlayQueueController.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseCollector.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseCollector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseCollector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseHelpers.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseHelpers.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseTypes.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseTypes.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleaseView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleaseView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleasesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleasesView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/ReleasesView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/ReleasesView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/SortModeSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/SortModeSelector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackArtistLinkTypeSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackArtistLinkTypeSelector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackCollector.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackCollector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackCollector.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListHelpers.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListHelpers.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListsView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TrackListsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TrackListsView.hpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TracksView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TracksView.cpp -------------------------------------------------------------------------------- /src/lms/ui/explore/TracksView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/explore/TracksView.hpp -------------------------------------------------------------------------------- /src/lms/ui/resource/ArtworkResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/ArtworkResource.cpp -------------------------------------------------------------------------------- /src/lms/ui/resource/ArtworkResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/ArtworkResource.hpp -------------------------------------------------------------------------------- /src/lms/ui/resource/AudioFileResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/AudioFileResource.cpp -------------------------------------------------------------------------------- /src/lms/ui/resource/AudioFileResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/AudioFileResource.hpp -------------------------------------------------------------------------------- /src/lms/ui/resource/AudioTranscodingResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/AudioTranscodingResource.cpp -------------------------------------------------------------------------------- /src/lms/ui/resource/AudioTranscodingResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/AudioTranscodingResource.hpp -------------------------------------------------------------------------------- /src/lms/ui/resource/DownloadResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/DownloadResource.cpp -------------------------------------------------------------------------------- /src/lms/ui/resource/DownloadResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/lms/ui/resource/DownloadResource.hpp -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/audioinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/audioinfo/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/audioinfo/LmsAudioInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/audioinfo/LmsAudioInfo.cpp -------------------------------------------------------------------------------- /src/tools/db-generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/db-generator/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/db-generator/LmsDbGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/db-generator/LmsDbGenerator.cpp -------------------------------------------------------------------------------- /src/tools/recommendation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/recommendation/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/recommendation/LmsRecommendation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/recommendation/LmsRecommendation.cpp -------------------------------------------------------------------------------- /src/tools/similarity-parameters/GeneticAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/similarity-parameters/GeneticAlgorithm.hpp -------------------------------------------------------------------------------- /src/tools/similarity-parameters/LmsSimilarityParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/similarity-parameters/LmsSimilarityParameters.cpp -------------------------------------------------------------------------------- /src/tools/similarity-parameters/ParallelFor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/similarity-parameters/ParallelFor.hpp -------------------------------------------------------------------------------- /src/tools/subsonic-api-bench/search3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epoupon/lms/HEAD/src/tools/subsonic-api-bench/search3.sh --------------------------------------------------------------------------------