File: stow-rs-client.cpp

package info (click to toggle)
odil 0.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,476 kB
  • sloc: cpp: 55,982; python: 3,947; javascript: 460; xml: 182; makefile: 99; sh: 36
file content (196 lines) | stat: -rw-r--r-- 6,195 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include "odil/webservices/STOWRSRequest.h"
#include "odil/webservices/STOWRSResponse.h"

#include <string>
#include <sstream>
#include <iostream>

#include <boost/asio.hpp>

#include "odil/VR.h"

#include <boost/uuid/random_generator.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>

#include "json/json.h"

#include "odil/Reader.h"
#include "odil/DataSet.h"
#include "odil/registry.h"
#include "odil/Tag.h"
#include <odil/webservices/HTTPRequest.h>
#include <odil/webservices/HTTPResponse.h>
#include "odil/webservices/URL.h"
#include "odil/webservices/Selector.h"


struct Printer
{
    typedef void result_type;

    std::ostream & stream;
    std::string indent;

    Printer(std::ostream & stream, std::string const & indent="")
    : stream(stream), indent(indent)
    {
        // Nothing else
    }

    template<typename T>
    void operator()(T const & value) const
    {
        for(auto const & item: value)
        {
            this->stream << item << " ";
        }
    }

    void operator()(odil::Value::DataSets const & value) const
    {
        this->stream << "\n";

        auto const last_it = --value.end();
        for(auto it=value.begin(); it!= value.end(); ++it)
        {
            Printer const printer(this->stream, this->indent+"  ");
            printer(std::const_pointer_cast<odil::DataSet const>(*it));
            if(it != last_it)
            {
                this->stream << "----\n";
            }
        }
    }

    void operator()(odil::Value::Binary const &) const
    {
        this->stream << this->indent << "(binary)";
    }

    void operator()(std::shared_ptr<odil::DataSet const> const & data_set) const
    {
        for(auto const & item: *data_set)
        {
            this->stream << this->indent << item.first << " " << as_string(item.second.vr) << " ";
            odil::apply_visitor(*this, item.second.get_value());
            this->stream << "\n";
        }
    }
};

struct Data
{
    odil::Value::DataSets data_sets;


    Data()
    {
        //-------------------- DataSets Creation
        auto ds = std::make_shared<odil::DataSet>();
        ds->add(odil::Tag("PatientName"), {"TOTO"});
        ds->add(odil::Tag("PatientID"), {"TOTO"});
        ds->add(odil::Tag("SOPClassUID"), {odil::registry::MRImageStorage});
        ds->add(odil::Tag("SOPInstanceUID"), {"1.2.3.5"});
        ds->add(odil::Tag("StudyInstanceUID"), {"1.3.46.670589.11.38235.5.0.4644.2013061709032540000"});
        ds->add(odil::Tag("SeriesInstanceUID"), {"1.3.46.670589.11.38235.5.0.5964.2013061710064254405"});
        ds->add(odil::Tag("Signature"), odil::Value::Binary({{0x01, 0x02}}));
        ds->add(odil::Tag("TransferSyntaxUID"), {odil::registry::ExplicitVRLittleEndian});

        auto ds_2 = std::make_shared<odil::DataSet>();
        ds_2->add(odil::Tag("PatientName"), {"JP"});
        ds_2->add(odil::Tag("PatientID"), {"TUTU"});
        ds_2->add(odil::Tag("SOPClassUID"), {odil::registry::MRImageStorage});
        ds_2->add(odil::Tag("SOPInstanceUID"), {"1.2.3.6"});
        ds_2->add(odil::Tag("StudyInstanceUID"), {"1.3.46.670589.11.38235.5.0.4644.2013061709032540000"});
        ds_2->add(odil::Tag("SeriesInstanceUID"), {"1.3.46.670589.11.38235.5.0.5964.31"});
        ds_2->add(odil::Tag("TransferSyntaxUID"), {odil::registry::ExplicitVRLittleEndian});
        this->data_sets = {ds, ds_2};
    }
};

int main()
{
    // Uncomment to test it locally (need to have orthanc installed)
//    odil::webservices::URL const root{
//        "http", "localhost", "/dicom-web"};
    // Uncomment to test it on a remote server (dicomserver.co.uk)
    odil::webservices::URL const root{
        "http", "dicomserver.co.uk", "/stow"};
    // Uncomment to test it on a remote server (demo.orthanc-server.com)
//    odil::webservices::URL const root{
//        "http", "demo.orthanc-server.com", "/dicom-web"};

    odil::webservices::STOWRSRequest stow_request(root);
    Data d;

    //-------------------- Selector creation
    odil::webservices::Selector selector;
    selector.set_study("1.3.46.670589.11.38235.5.0.4644.2013061709032540000");

     stow_request.request_dicom(d.data_sets, selector, odil::webservices::Representation::DICOM_JSON);

    auto http_request = stow_request.get_http_request();
    // Explicitly use HTTP/1.0 to avoid chunked encoding
    http_request.set_http_version("HTTP/1.0");
    http_request.set_header("Host", root.authority);
    http_request.set_header("Content-Length", std::to_string(http_request.get_body().size()));
    http_request.set_header("Transfer-Encoding", "identity");
    http_request.set_header("Accept", "application/dicom+xml");
    http_request.set_header("Connection", "close");

    // Dicomserver.co (seems to not support the XML or JSON format)
    boost::asio::ip::tcp::iostream stream("dicomserver.co.uk", "81");
    // Uncomment to test it locally (need to have orthanc installed)
//    boost::asio::ip::tcp::iostream stream("localhost", "8042");
    // Uncomment the two following lines to test on demo.orthanc-server.com
//    boost::asio::ip::tcp::iostream stream;
//    stream.connect(root.authority, root.scheme);
    if(!stream)
    {
        std::cerr << "Error connecting: "
#if BOOST_VERSION >= 104700
            << stream.error().message()
#endif
            << std::endl;
        return 1;
    }

    for (auto const header: http_request.get_headers())
    {
        std::cout << header.first << " : " << header.second << std::endl;
    }
    stream << http_request;
    if(!stream)
    {
        std::cerr << "Error sending: "
#if BOOST_VERSION >= 104700
            << stream.error().message()
#endif
            << std::endl;
        return 1;
    }

    odil::webservices::HTTPResponse http_response;
    stream >> http_response;

    if (!stream)
    {
        std::cerr << "Error receiving : "
#if BOOST_VERSION >= 104700
            << stream.error().message()
#endif
            << std::endl;
        return 1;
    }

    odil::webservices::STOWRSResponse stow_response(http_response);

    auto const data_set = stow_response.get_store_instance_responses();

    Printer printer(std::cout);
    printer(data_set);

    return 0;
}