Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
uva
Commits
e583dcd7
Commit
e583dcd7
authored
Mar 10, 2011
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Telematica ass2: added report.
parent
bbd17ad8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
0 deletions
+86
-0
telematica/ass2/report.tex
telematica/ass2/report.tex
+86
-0
No files found.
telematica/ass2/report.tex
0 → 100644
View file @
e583dcd7
\documentclass
[10pt,a4paper]
{
article
}
\usepackage
{
float, url
}
\title
{
Telematica assignment 2: Google Translate
}
\author
{
Tadde
\"
us Kroes (6054129)
\and
Sander van Veen (6167969)
}
\begin{document}
\maketitle
\section
{
Assignment
}
% {{{
\label
{
sec:Assignment
}
The assignment is to create a command-line client that uses the Google Translate
Webservice API to translate data entered by the user. The source and target
language must be entered in the command line, and there must be an option
'--help' available.
% }}}
\section
{
Protocol
}
% {{{
\label
{
sec:Protocol
}
The Google Translate API cal be called with a HTTP GET request. To be able to
use the API, we need an ``API key'', which we have received from Google. The
request parameters should at least contain the API key, the target language and
one or more texts that are to be translated. If no source language is specified
in the parameters, the server will try to detect and return the source language
from the entered text values. Since our program requires the source language to
be specified, we will not use this functionality. The request URL thus
always has the following format:
\begin{verbatim}
https://www.googleapis.com/language/translate/v2?key=
{
KEY
}
&
source=
{
SOURCE
_
LANGUAGE
}&
target=
{
TARGET
_
LANGUAGE
}&
q=
{
TEXT
}
\end{verbatim}
The server's response to the request is in JSON (JavaScript Object Notation)
format which basically returns a structure containing all data in objects
or arrays. For more information on JSON, see
\url
{
http://en.wikipedia.org/wiki/JSON
}
.
Since the request format is consistent, a response will always be of the
following form:
\begin{verbatim}
{
"data":
{
"translations": [
{
"translatedText":
{
TRANSLATED
_
TEXT
}
}
]
}
}
\end{verbatim}
Of course, the response can also be a ``bad request'', we'll discuss this in
section
\ref
{
sec:Implementation
}
.
% }}}
\section
{
Implementation
}
% {{{
\label
{
sec:Implementation
}
The programming language that we used is PHP. The reason for this is the fact
that PHP has built in support for sending HTTP requests and parsing
JSON-formatted text. The program is located in the executable ``translate''.
Call the program with the argument '--help' to see documentation on how the
program should be called.
The program reads input from the user from
\texttt
{
stdin
}
. When a newline
character is entered, the function
\texttt
{
translate
}
is called with the entered
text. This function uses the built in PHP function
\texttt
{
file
\_
get
\_
contents
}
(
\url
{
www.php.net/file
\_
get
\_
contents
}
) to call the Google Translate API using
the URL mentioned in section
\ref
{
sec:Protocol
}
. This function returns
\texttt
{
FALSE
}
on failure, which is handled by the program. To suppress any
warnings that are generated by a ``bad request''-error, we use
\texttt
{
@
}
in
front of the function call. We can safely do this because we handle any
failures manually. The two most probable reasons for a ``bad request'' to occur,
are the lack of an internet connection and the invalidness of a specified
source/target language. Since both are critical for the program's ability to
function correctly, we have chosen to end the program after a bad request.
% }}}
\end{document}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment