Skip to content

Commit ee5e4aa

Browse files
author
ForceConstant
committed
Update
1 parent 7f62989 commit ee5e4aa

14 files changed

+598
-84
lines changed

ComicStreamerLibTest.csproj

+18-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88
<AppDesignerFolder>Properties</AppDesignerFolder>
99
<RootNamespace>ComicStreamerLibTest</RootNamespace>
1010
<AssemblyName>ComicStreamerLibTest</AssemblyName>
11-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1414
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
1515
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
1616
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
1717
<IsCodedUITest>False</IsCodedUITest>
1818
<TestProjectType>UnitTest</TestProjectType>
19+
<TargetFrameworkProfile />
1920
</PropertyGroup>
2021
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2122
<DebugSymbols>true</DebugSymbols>
@@ -35,8 +36,20 @@
3536
<WarningLevel>4</WarningLevel>
3637
</PropertyGroup>
3738
<ItemGroup>
39+
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
40+
<HintPath>..\comics_xamarin\Comics\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
41+
<Private>True</Private>
42+
</Reference>
43+
<Reference Include="Microsoft.Threading.Tasks.Extensions, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
44+
<HintPath>..\comics_xamarin\Comics\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
45+
<Private>True</Private>
46+
</Reference>
47+
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop, Version=1.0.168.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
48+
<HintPath>..\comics_xamarin\Comics\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
49+
<Private>True</Private>
50+
</Reference>
3851
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
39-
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
52+
<HintPath>..\ImagineComicReader\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
4053
<Private>True</Private>
4154
</Reference>
4255
<Reference Include="RestSharp, Version=105.2.3.0, Culture=neutral, processorArchitecture=MSIL">
@@ -45,6 +58,7 @@
4558
</Reference>
4659
<Reference Include="System" />
4760
<Reference Include="System.Drawing" />
61+
<Reference Include="System.Net" />
4862
</ItemGroup>
4963
<Choose>
5064
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
@@ -63,11 +77,12 @@
6377
<Compile Include="Properties\AssemblyInfo.cs" />
6478
</ItemGroup>
6579
<ItemGroup>
80+
<None Include="app.config" />
6681
<None Include="packages.config" />
6782
</ItemGroup>
6883
<ItemGroup>
6984
<ProjectReference Include="ComicStreamerSharp.csproj">
70-
<Project>{6cb2698d-add0-4a89-9a34-fa530599bb16}</Project>
85+
<Project>{506a8532-ae6f-4571-906a-8f52a680d0e8}</Project>
7186
<Name>ComicStreamerSharp</Name>
7287
</ProjectReference>
7388
</ItemGroup>

ComicStreamerSharp.cs

+28-30
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
using RestSharp;
7+
using RestSharp.Portable;
88
using Newtonsoft.Json.Linq;
9+
using RestSharp.Portable.HttpClient;
910

1011
namespace ComicStreamer
1112
{
@@ -16,39 +17,36 @@ public ComicStreamerSharp(string asBaseUrl)
1617
msBaseUrl = asBaseUrl;
1718
}
1819

19-
private IRestResponse ExecuteCommand(string Resource)
20+
private async Task<IRestResponse> ExecuteCommand(string Resource)
2021
{
21-
var client = new RestClient();
22-
client.BaseUrl = new Uri(msBaseUrl);
22+
var client = new RestClient(msBaseUrl);
2323

2424
var request = new RestRequest();
2525
request.Resource = Resource;
2626

27-
IRestResponse response = client.Execute(request);
27+
IRestResponse response = await client.Execute(request);
2828

29-
if (response.ErrorException != null)
30-
{
31-
Console.WriteLine("Error retrieving response for " + Resource);
32-
}
29+
System.Diagnostics.Debug.Assert(response.IsSuccess,
30+
"Error retrieving response for " + Resource);
3331

3432
return response;
3533
}
36-
37-
public string GetDBInfo()
34+
35+
public async Task<string> GetDBInfo()
3836
{
39-
IRestResponse response = ExecuteCommand("dbinfo");
37+
IRestResponse response = await ExecuteCommand("dbinfo");
4038

4139
return response.Content;
4240
}
4341

44-
public string GetVersion()
42+
public async Task<string> GetVersion()
4543
{
46-
IRestResponse response = ExecuteCommand("version");
44+
IRestResponse response = await ExecuteCommand("version");
4745

4846
return response.Content;
4947
}
5048

51-
public string GetDeletedComics(string date)
49+
public async Task<string> GetDeletedComics(string date)
5250
{
5351
/*
5452
* /deleted
@@ -57,66 +55,66 @@ public string GetDeletedComics(string date)
5755
since
5856
- date of the earliest returned value */
5957

60-
IRestResponse response = ExecuteCommand("deleted?since=" + date);
58+
IRestResponse response = await ExecuteCommand("deleted?since=" + date);
6159

6260
return response.Content;
6361
}
6462

6563

66-
public JObject GetComicInfo(string id)
64+
public async Task<JObject> GetComicInfo(int id)
6765
{
6866
/* /comic/{id}
6967
- info about specific comic
7068
*/
7169

72-
IRestResponse response = ExecuteCommand("/comic/" + id);
70+
IRestResponse response = await ExecuteCommand("/comic/" + id);
7371

7472
JObject o = JObject.Parse(response.Content);
7573

7674
return o;
7775
}
7876

79-
public byte[] GetComicPage(string id = "0", int pagenum = 0)
77+
public async Task<byte[]> GetComicPage(int id, int pagenum = 0)
8078
{
8179
//TODO: Add height arg.
8280
/*/comic/{id}/page/{pagenum}
8381
- return specific page image of specific comic
8482
args:
8583
max_height
8684
- will resize image*/
87-
IRestResponse response = ExecuteCommand("/comic/" + id + "/page/" + pagenum);
85+
IRestResponse response = await ExecuteCommand("/comic/" + id + "/page/" + pagenum);
8886

8987
byte[] imageBytes = response.RawBytes;
9088

9189
return imageBytes;
9290
}
9391

94-
public void SetBookmark(string id, string pagenum = "clear")
92+
public async void SetBookmark(int id, string pagenum = "clear")
9593
{
9694
/*/comic/{id}/page/{pagenum}/bookmark
9795
- sets the time of last access and last page read for the comic.
9896
client would fetch this for each page turn
9997
if {pagenum} is "clear" clears bookmark for the given book*/
100-
IRestResponse response = ExecuteCommand("/comic/" + id + "/page/" + pagenum + "/bookmark");
98+
IRestResponse response = await ExecuteCommand("/comic/" + id + "/page/" + pagenum + "/bookmark");
10199

102100
}
103101

104-
public byte[] GetThumbnail(string id)
102+
public async Task<byte[]> GetThumbnail(int id)
105103
{
106104
/* /comic/{id}/thumbnail
107105
- return specific small cover image of specific comic*/
108-
IRestResponse response = ExecuteCommand("/comic/" + id + "/thumbnail");
106+
IRestResponse response = await ExecuteCommand("/comic/" + id + "/thumbnail");
109107

110108
byte[] imageBytes = response.RawBytes;
111109

112110
return imageBytes;
113111
}
114112

115-
public byte[] GetComicFile(string id)
113+
public async Task<byte[]> GetComicFile(int id)
116114
{
117115
/* /comic/{id}/file
118116
- return entire specific comic file*/
119-
IRestResponse response = ExecuteCommand("/comic/" + id + "/file");
117+
IRestResponse response = await ExecuteCommand("/comic/" + id + "/file");
120118

121119
byte[] imageBytes = response.RawBytes;
122120

@@ -175,7 +173,7 @@ the starting offset of the query resultset
175173
176174
date format is "YYYY-MM-DD hh:mm:ss", where the right-most (most granular) portions may be omitted
177175
/*/
178-
public JObject GetComicList(
176+
public async Task<JObject> GetComicList(
179177
string series = "",
180178
string title = "",
181179
string path = "",
@@ -197,7 +195,7 @@ public JObject GetComicList(
197195
string order = "")
198196
{
199197

200-
IRestResponse response = ExecuteCommand("/comiclist?series=" + series +
198+
IRestResponse response = await ExecuteCommand("/comiclist?series=" + series +
201199
"&title=" + title +
202200
"&path=" + path +
203201
"&character=" + character +
@@ -222,13 +220,13 @@ public JObject GetComicList(
222220
return o;
223221
}
224222

225-
public JObject GetFolders(string path = "")
223+
public async Task<JObject> GetFolders(string path = "")
226224
{
227225
/*/folders/[path]
228226
- Return list of folders with names and access URLS), and list of comics in the specific folder
229227
Without a path, returns just the top level folders
230228
*/
231-
IRestResponse response = ExecuteCommand("/folders/" + path);
229+
IRestResponse response = await ExecuteCommand("/folders/" + path);
232230

233231
JObject o = JObject.Parse(response.Content);
234232

ComicStreamerSharp.csproj

+39-23
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5+
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{6CB2698D-ADD0-4A89-9A34-FA530599BB16}</ProjectGuid>
8+
<ProjectGuid>{506A8532-AE6F-4571-906A-8F52A680D0E8}</ProjectGuid>
89
<OutputType>Library</OutputType>
910
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>ComicStreamer</RootNamespace>
11-
<AssemblyName>ComicStreamer</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
11+
<RootNamespace>ComicStreamerSharp</RootNamespace>
12+
<AssemblyName>ComicStreamerSharp</AssemblyName>
13+
<DefaultLanguage>en-US</DefaultLanguage>
1314
<FileAlignment>512</FileAlignment>
15+
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16+
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
17+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1418
</PropertyGroup>
1519
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1620
<DebugSymbols>true</DebugSymbols>
@@ -29,32 +33,44 @@
2933
<ErrorReport>prompt</ErrorReport>
3034
<WarningLevel>4</WarningLevel>
3135
</PropertyGroup>
32-
<ItemGroup>
33-
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
34-
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
35-
<Private>True</Private>
36-
</Reference>
37-
<Reference Include="RestSharp, Version=105.2.3.0, Culture=neutral, processorArchitecture=MSIL">
38-
<HintPath>..\packages\RestSharp.105.2.3\lib\net452\RestSharp.dll</HintPath>
39-
<Private>True</Private>
40-
</Reference>
41-
<Reference Include="System" />
42-
<Reference Include="System.Core" />
43-
<Reference Include="System.Xml.Linq" />
44-
<Reference Include="System.Data.DataSetExtensions" />
45-
<Reference Include="Microsoft.CSharp" />
46-
<Reference Include="System.Data" />
47-
<Reference Include="System.Net.Http" />
48-
<Reference Include="System.Xml" />
49-
</ItemGroup>
5036
<ItemGroup>
5137
<Compile Include="ComicStreamerSharp.cs" />
5238
<Compile Include="Properties\AssemblyInfo.cs" />
5339
</ItemGroup>
5440
<ItemGroup>
41+
<None Include="app.config" />
5542
<None Include="packages.config" />
5643
</ItemGroup>
57-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
44+
<ItemGroup>
45+
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
46+
<HintPath>..\comics_xamarin\Comics\packages\Microsoft.Bcl.Async.1.0.168\lib\portable-net45+win8+wp8+wpa81\Microsoft.Threading.Tasks.dll</HintPath>
47+
<Private>True</Private>
48+
</Reference>
49+
<Reference Include="Microsoft.Threading.Tasks.Extensions, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
50+
<HintPath>..\comics_xamarin\Comics\packages\Microsoft.Bcl.Async.1.0.168\lib\portable-net45+win8+wp8+wpa81\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
51+
<Private>True</Private>
52+
</Reference>
53+
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
54+
<HintPath>..\comics_xamarin\Comics\packages\Newtonsoft.Json.7.0.1\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
55+
<Private>True</Private>
56+
</Reference>
57+
<Reference Include="Windows">
58+
<HintPath>C:\Program Files (x86)\Windows Kits\8.1\References\CommonConfiguration\Neutral\Windows.winmd</HintPath>
59+
</Reference>
60+
</ItemGroup>
61+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
62+
<Import Project="..\comics_xamarin\Comics\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\comics_xamarin\Comics\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
63+
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
64+
<Error Condition="!Exists('..\comics_xamarin\Comics\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
65+
<Error Condition="Exists('..\comics_xamarin\Comics\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
66+
</Target>
67+
<Import Project="..\ImagineComicReader\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\ImagineComicReader\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
68+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
69+
<PropertyGroup>
70+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
71+
</PropertyGroup>
72+
<Error Condition="!Exists('..\ImagineComicReader\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\ImagineComicReader\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
73+
</Target>
5874
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5975
Other similar extension points exist, see Microsoft.Common.targets.
6076
<Target Name="BeforeBuild">
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
6+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8+
<ProjectGuid>{506a8532-ae6f-4571-906a-8f52a680d0e8}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>ComicStreamerSharp</RootNamespace>
12+
<AssemblyName>ComicStreamerSharp</AssemblyName>
13+
<DefaultLanguage>en-US</DefaultLanguage>
14+
<FileAlignment>512</FileAlignment>
15+
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16+
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
17+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<ItemGroup>
37+
<!-- A reference to the entire .NET Framework is automatically included -->
38+
</ItemGroup>
39+
<ItemGroup>
40+
<Compile Include="Class1.cs" />
41+
<Compile Include="Properties\AssemblyInfo.cs" />
42+
</ItemGroup>
43+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
44+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
45+
Other similar extension points exist, see Microsoft.Common.targets.
46+
<Target Name="BeforeBuild">
47+
</Target>
48+
<Target Name="AfterBuild">
49+
</Target>
50+
-->
51+
52+
</Project>

0 commit comments

Comments
 (0)