]> git.sesse.net Git - casparcg/blob - common/diagnostics/graph.cpp
d54a127e6654a883f231c52787d55676e43c406a
[casparcg] / common / diagnostics / graph.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "../stdafx.h"\r
23 \r
24 #include "graph.h"\r
25 \r
26 #pragma warning (disable : 4244)\r
27 \r
28 #include "../executor.h"\r
29 #include "../lock.h"\r
30 #include "../env.h"\r
31 \r
32 #include <SFML/Graphics.hpp>\r
33 \r
34 #include <boost/foreach.hpp>\r
35 #include <boost/optional.hpp>\r
36 #include <boost/circular_buffer.hpp>\r
37 #include <boost/range/algorithm_ext/erase.hpp>\r
38 \r
39 #include <tbb/concurrent_unordered_map.h>\r
40 #include <tbb/atomic.h>\r
41 #include <tbb/spin_mutex.h>\r
42 \r
43 #include <array>\r
44 #include <numeric>\r
45 #include <tuple>\r
46 \r
47 namespace caspar { namespace diagnostics {\r
48                 \r
49 int color(float r, float g, float b, float a)\r
50 {\r
51         int code = 0;\r
52         code |= static_cast<int>(r*255.0f+0.5f) << 24;\r
53         code |= static_cast<int>(g*255.0f+0.5f) << 16;\r
54         code |= static_cast<int>(b*255.0f+0.5f) <<  8;\r
55         code |= static_cast<int>(a*255.0f+0.5f) <<  0;\r
56         return code;\r
57 }\r
58 \r
59 std::tuple<float, float, float, float> color(int code)\r
60 {\r
61         float r = static_cast<float>((code >> 24) & 255)/255.0f;\r
62         float g = static_cast<float>((code >> 16) & 255)/255.0f;\r
63         float b = static_cast<float>((code >>  8) & 255)/255.0f;\r
64         float a = static_cast<float>((code >>  0) & 255)/255.0f;\r
65         return std::make_tuple(r, g, b, a);\r
66 }\r
67 \r
68 struct drawable : public sf::Drawable\r
69 {\r
70         virtual ~drawable(){}\r
71         virtual void render(sf::RenderTarget& target) = 0;\r
72         virtual void Render(sf::RenderTarget& target) const { const_cast<drawable*>(this)->render(target);}\r
73 };\r
74 \r
75 class context : public drawable\r
76 {       \r
77         std::unique_ptr<sf::RenderWindow> window_;\r
78         \r
79         std::list<std::weak_ptr<drawable>> drawables_;\r
80                 \r
81         executor executor_;\r
82 public:                                 \r
83 \r
84         static void register_drawable(const std::shared_ptr<drawable>& drawable)\r
85         {\r
86                 if(!drawable)\r
87                         return;\r
88 \r
89                 get_instance().executor_.begin_invoke([=]\r
90                 {\r
91                         get_instance().do_register_drawable(drawable);\r
92                 }, task_priority::high_priority);\r
93         }\r
94 \r
95         static void show(bool value)\r
96         {\r
97                 get_instance().executor_.begin_invoke([=]\r
98                 {       \r
99                         get_instance().do_show(value);\r
100                 }, task_priority::high_priority);\r
101         }\r
102                                 \r
103 private:\r
104         context() : executor_(L"diagnostics")\r
105         {\r
106                 executor_.begin_invoke([=]\r
107                 {                       \r
108                         SetThreadPriority(GetCurrentThread(), BELOW_NORMAL_PRIORITY_CLASS);\r
109                 });\r
110         }\r
111 \r
112         void do_show(bool value)\r
113         {\r
114                 if(value)\r
115                 {\r
116                         if(!window_)\r
117                         {\r
118                                 window_.reset(new sf::RenderWindow(sf::VideoMode(750, 750), "CasparCG Diagnostics"));\r
119                                 window_->SetPosition(0, 0);\r
120                                 window_->SetActive();\r
121                                 glEnable(GL_BLEND);\r
122                                 glEnable(GL_LINE_SMOOTH);\r
123                                 glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);\r
124                                 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);\r
125                                 tick();\r
126                         }\r
127                 }\r
128                 else\r
129                         window_.reset();\r
130         }\r
131 \r
132         void tick()\r
133         {\r
134                 if(!window_)\r
135                         return;\r
136 \r
137                 sf::Event e;\r
138                 while(window_->GetEvent(e))\r
139                 {\r
140                         if(e.Type == sf::Event::Closed)\r
141                         {\r
142                                 window_.reset();\r
143                                 return;\r
144                         }\r
145                 }               \r
146                 glClear(GL_COLOR_BUFFER_BIT);\r
147                 window_->Draw(*this);\r
148                 window_->Display();\r
149                 boost::this_thread::sleep(boost::posix_time::milliseconds(10));\r
150                 executor_.begin_invoke([this]{tick();});\r
151         }\r
152 \r
153         void render(sf::RenderTarget& target)\r
154         {\r
155                 auto count = std::max<size_t>(8, drawables_.size());\r
156                 float target_dy = 1.0f/static_cast<float>(count);\r
157 \r
158                 float last_y = 0.0f;\r
159                 int n = 0;\r
160                 for(auto it = drawables_.begin(); it != drawables_.end(); ++n)\r
161                 {\r
162                         auto drawable = it->lock();\r
163                         if(drawable)\r
164                         {\r
165                                 drawable->SetScale(static_cast<float>(window_->GetWidth()), static_cast<float>(target_dy*window_->GetHeight()));\r
166                                 float target_y = std::max(last_y, static_cast<float>(n * window_->GetHeight())*target_dy);\r
167                                 drawable->SetPosition(0.0f, target_y);                  \r
168                                 target.Draw(*drawable);                         \r
169                                 ++it;           \r
170                         }\r
171                         else    \r
172                                 it = drawables_.erase(it);                      \r
173                 }               \r
174         }       \r
175         \r
176         void do_register_drawable(const std::shared_ptr<drawable>& drawable)\r
177         {\r
178                 drawables_.push_back(drawable);\r
179                 auto it = drawables_.begin();\r
180                 while(it != drawables_.end())\r
181                 {\r
182                         if(it->lock())\r
183                                 ++it;\r
184                         else    \r
185                                 it = drawables_.erase(it);                      \r
186                 }\r
187         }\r
188         \r
189         static context& get_instance()\r
190         {\r
191                 static context impl;\r
192                 return impl;\r
193         }\r
194 };\r
195 \r
196 class line : public drawable\r
197 {\r
198         boost::circular_buffer<std::pair<float, bool>> line_data_;\r
199 \r
200         tbb::atomic<float>      tick_data_;\r
201         tbb::atomic<bool>       tick_tag_;\r
202         tbb::atomic<int>        color_;\r
203 public:\r
204         line(size_t res = 1200)\r
205                 : line_data_(res)\r
206         {\r
207                 tick_data_      = -1.0f;\r
208                 color_          = 0xFFFFFFFF;\r
209                 tick_tag_       = false;\r
210 \r
211                 line_data_.push_back(std::make_pair(-1.0f, false));\r
212         }\r
213         \r
214         void set_value(float value)\r
215         {\r
216                 tick_data_ = value;\r
217         }\r
218         \r
219         void set_tag()\r
220         {\r
221                 tick_tag_ = true;\r
222         }\r
223                 \r
224         void set_color(int color)\r
225         {\r
226                 color_ = color;\r
227         }\r
228 \r
229         int get_color()\r
230         {\r
231                 return color_;\r
232         }\r
233                 \r
234         void render(sf::RenderTarget&)\r
235         {\r
236                 float dx = 1.0f/static_cast<float>(line_data_.capacity());\r
237                 float x = static_cast<float>(line_data_.capacity()-line_data_.size())*dx;\r
238 \r
239                 line_data_.push_back(std::make_pair(tick_data_, tick_tag_));            \r
240                 tick_tag_   = false;\r
241                                 \r
242                 glBegin(GL_LINE_STRIP);\r
243                 auto c = color(color_);\r
244                 glColor4f(std::get<0>(c), std::get<1>(c), std::get<2>(c), 0.8f);                \r
245                 for(size_t n = 0; n < line_data_.size(); ++n)           \r
246                         if(line_data_[n].first > -0.5)\r
247                                 glVertex3d(x+n*dx, std::max(0.05, std::min(0.95, (1.0f-line_data_[n].first)*0.8 + 0.1f)), 0.0);         \r
248                 glEnd();\r
249                                 \r
250                 glEnable(GL_LINE_STIPPLE);\r
251                 glLineStipple(3, 0xAAAA);\r
252                 for(size_t n = 0; n < line_data_.size(); ++n)   \r
253                 {\r
254                         if(line_data_[n].second)\r
255                         {\r
256                                 glBegin(GL_LINE_STRIP);                 \r
257                                         glVertex3f(x+n*dx, 0.0f, 0.0f);                         \r
258                                         glVertex3f(x+n*dx, 1.0f, 0.0f);         \r
259                                 glEnd();\r
260                         }\r
261                 }\r
262                 glDisable(GL_LINE_STIPPLE);\r
263         }\r
264 };\r
265 \r
266 struct graph::impl : public drawable\r
267 {\r
268         tbb::concurrent_unordered_map<std::string, diagnostics::line> lines_;\r
269 \r
270         tbb::spin_mutex mutex_;\r
271         std::wstring text_;\r
272 \r
273         impl()\r
274         {\r
275         }\r
276                 \r
277         void set_text(const std::wstring& value)\r
278         {\r
279                 auto temp = value;\r
280                 lock(mutex_, [&]\r
281                 {\r
282                         text_ = std::move(temp);\r
283                 });\r
284         }\r
285 \r
286         void set_value(const std::string& name, double value)\r
287         {\r
288                 lines_[name].set_value(value);\r
289         }\r
290 \r
291         void set_tag(const std::string& name)\r
292         {\r
293                 lines_[name].set_tag();\r
294         }\r
295 \r
296         void set_color(const std::string& name, int color)\r
297         {\r
298                 lines_[name].set_color(color);\r
299         }\r
300                 \r
301 private:\r
302         void render(sf::RenderTarget& target)\r
303         {\r
304                 const size_t text_size = 15;\r
305                 const size_t text_margin = 2;\r
306                 const size_t text_offset = (text_size+text_margin*2)*2;\r
307 \r
308                 std::wstring text_str;\r
309                 {\r
310                         tbb::spin_mutex::scoped_lock lock(mutex_);\r
311                         text_str = text_;\r
312                 }\r
313 \r
314                 sf::String text(text_str.c_str(), sf::Font::GetDefaultFont(), text_size);\r
315                 text.SetStyle(sf::String::Italic);\r
316                 text.Move(text_margin, text_margin);\r
317                 \r
318                 glPushMatrix();\r
319                         glScaled(1.0f/GetScale().x, 1.0f/GetScale().y, 1.0f);\r
320                         target.Draw(text);\r
321                         float x_offset = text_margin;\r
322                         for(auto it = lines_.begin(); it != lines_.end(); ++it)\r
323                         {                                               \r
324                                 sf::String line_text(it->first, sf::Font::GetDefaultFont(), text_size);\r
325                                 line_text.SetPosition(x_offset, text_margin+text_offset/2);\r
326                                 auto c = it->second.get_color();\r
327                                 line_text.SetColor(sf::Color((c >> 24) & 255, (c >> 16) & 255, (c >> 8) & 255, (c >> 0) & 255));\r
328                                 target.Draw(line_text);\r
329                                 x_offset = line_text.GetRect().Right + text_margin*2;\r
330                         }\r
331 \r
332                         glDisable(GL_TEXTURE_2D);\r
333                 glPopMatrix();\r
334 \r
335                 glBegin(GL_QUADS);\r
336                         glColor4f(1.0f, 1.0f, 1.0f, 0.2f);      \r
337                         glVertex2f(1.0f, 0.99f);\r
338                         glVertex2f(0.0f, 0.99f);\r
339                         glVertex2f(0.0f, 0.01f);        \r
340                         glVertex2f(1.0f, 0.01f);        \r
341                 glEnd();\r
342 \r
343                 glPushMatrix();\r
344                         glTranslated(0.0f, text_offset/GetScale().y, 1.0f);\r
345                         glScaled(1.0f, 1.0-text_offset/GetScale().y, 1.0f);\r
346                 \r
347                         glEnable(GL_LINE_STIPPLE);\r
348                         glLineStipple(3, 0xAAAA);\r
349                         glColor4f(1.0f, 1.0f, 1.9f, 0.5f);      \r
350                         glBegin(GL_LINE_STRIP);         \r
351                                 glVertex3f(0.0f, (1.0f-0.5f) * 0.8f + 0.1f, 0.0f);              \r
352                                 glVertex3f(1.0f, (1.0f-0.5f) * 0.8f + 0.1f, 0.0f);      \r
353                         glEnd();\r
354                         glBegin(GL_LINE_STRIP);         \r
355                                 glVertex3f(0.0f, (1.0f-0.0f) * 0.8f + 0.1f, 0.0f);              \r
356                                 glVertex3f(1.0f, (1.0f-0.0f) * 0.8f + 0.1f, 0.0f);      \r
357                         glEnd();\r
358                         glBegin(GL_LINE_STRIP);         \r
359                                 glVertex3f(0.0f, (1.0f-1.0f) * 0.8f + 0.1f, 0.0f);              \r
360                                 glVertex3f(1.0f, (1.0f-1.0f) * 0.8f + 0.1f, 0.0f);      \r
361                         glEnd();\r
362                         glDisable(GL_LINE_STIPPLE);\r
363 \r
364                         //target.Draw(diagnostics::guide(1.0f, color(1.0f, 1.0f, 1.0f, 0.6f)));\r
365                         //target.Draw(diagnostics::guide(0.0f, color(1.0f, 1.0f, 1.0f, 0.6f)));\r
366 \r
367                         for(auto it = lines_.begin(); it != lines_.end(); ++it)         \r
368                                 target.Draw(it->second);\r
369                 \r
370                 glPopMatrix();\r
371         }\r
372 \r
373         impl(impl&);\r
374         impl& operator=(impl&);\r
375 };\r
376         \r
377 graph::graph() : impl_(new impl())\r
378 {\r
379 }\r
380 \r
381 void graph::set_text(const std::wstring& value){impl_->set_text(value);}\r
382 void graph::set_value(const std::string& name, double value){impl_->set_value(name, value);}\r
383 void graph::set_color(const std::string& name, int color){impl_->set_color(name, color);}\r
384 void graph::set_tag(const std::string& name){impl_->set_tag(name);}\r
385 \r
386 void register_graph(const spl::shared_ptr<graph>& graph)\r
387 {\r
388         context::register_drawable(graph->impl_);\r
389 }\r
390 \r
391 void show_graphs(bool value)\r
392 {\r
393         context::show(value);\r
394 }\r
395 \r
396 //namespace v2\r
397 //{     \r
398 //      \r
399 //struct line::impl\r
400 //{\r
401 //      std::wstring name_;\r
402 //      boost::circular_buffer<data> ticks_;\r
403 //\r
404 //      impl(const std::wstring& name) \r
405 //              : name_(name)\r
406 //              , ticks_(1024){}\r
407 //      \r
408 //      void set_value(float value)\r
409 //      {\r
410 //              ticks_.push_back();\r
411 //              ticks_.back().value = value;\r
412 //      }\r
413 //\r
414 //      void set_value(float value)\r
415 //      {\r
416 //              ticks_.clear();\r
417 //              set_value(value);\r
418 //      }\r
419 //};\r
420 //\r
421 //line::line(){}\r
422 //line::line(const std::wstring& name) : impl_(new impl(name)){}\r
423 //std::wstring line::print() const {return impl_->name_;}\r
424 //void line::set_value(float value){impl_->set_value(value);}\r
425 //void line::set_value(float value){impl_->set_value(value);}\r
426 //boost::circular_buffer<data>& line::ticks() { return impl_->ticks_;}\r
427 //\r
428 //struct graph::impl\r
429 //{\r
430 //      std::map<std::wstring, line> lines_;\r
431 //      color                                            color_;\r
432 //      printer                                          printer_;\r
433 //\r
434 //      impl(const std::wstring& name) \r
435 //              : printer_([=]{return name;}){}\r
436 //\r
437 //      impl(const printer& parent_printer) \r
438 //              : printer_(parent_printer){}\r
439 //      \r
440 //      void set_value(const std::wstring& name, float value)\r
441 //      {\r
442 //              auto it = lines_.find(name);\r
443 //              if(it == lines_.end())\r
444 //                      it = lines_.insert(std::make_pair(name, line(name))).first;\r
445 //\r
446 //              it->second.set_value(value);\r
447 //      }\r
448 //\r
449 //      void set_value(const std::wstring& name, float value)\r
450 //      {\r
451 //              auto it = lines_.find(name);\r
452 //              if(it == lines_.end())\r
453 //                      it = lines_.insert(std::make_pair(name, line(name))).first;\r
454 //\r
455 //              it->second.set_value(value);\r
456 //      }\r
457 //      \r
458 //      void set_color(const std::wstring& name, color color)\r
459 //      {\r
460 //              color_ = color;\r
461 //      }\r
462 //\r
463 //      std::map<std::wstring, line>& get_lines()\r
464 //      {\r
465 //              return lines_;\r
466 //      }\r
467 //      \r
468 //      color get_color() const\r
469 //      {\r
470 //              return color_;\r
471 //      }\r
472 //\r
473 //      std::wstring print() const\r
474 //      {\r
475 //              return printer_ ? printer_() : L"graph";\r
476 //      }\r
477 //};\r
478 //      \r
479 //graph::graph(const std::wstring& name) : impl_(new impl(name)){}\r
480 //graph::graph(const printer& parent_printer) : impl_(new impl(parent_printer)){}\r
481 //void graph::set_value(const std::wstring& name, float value){impl_->set_value(name, value);}\r
482 //void graph::set_value(const std::wstring& name, float value){impl_->set_value(name, value);}\r
483 //void graph::set_color(const std::wstring& name, color c){impl_->set_color(name, c);}\r
484 //color graph::get_color() const {return impl_->get_color();}\r
485 //std::wstring graph::print() const {return impl_->print();}\r
486 //\r
487 //spl::shared_ptr<graph> graph::clone() const \r
488 //{\r
489 //      spl::shared_ptr<graph> clone(new graph(std::wstring(L"")));\r
490 //      clone->impl_->printer_ = impl_->printer_;\r
491 //      clone->impl_->lines_ = impl_->lines_;\r
492 //      clone->impl_->color_ = impl_->color_;   \r
493 //}\r
494 //\r
495 //std::map<std::wstring, line>& graph::get_lines() {impl_->get_lines();}\r
496 //\r
497 //std::vector<spl::shared_ptr<graph>> g_graphs;\r
498 //\r
499 //spl::shared_ptr<graph> create_graph(const std::string& name)\r
500 //{\r
501 //      g_graphs.push_back(spl::make_shared<graph>(name));\r
502 //      return g_graphs.back();\r
503 //}\r
504 //\r
505 //spl::shared_ptr<graph> create_graph(const printer& parent_printer)\r
506 //{\r
507 //      g_graphs.push_back(spl::make_shared<graph>(parent_printer));\r
508 //      return g_graphs.back();\r
509 //}\r
510 //\r
511 //static std::vector<spl::shared_ptr<graph>> get_all_graphs()\r
512 //{\r
513 //      std::vector<spl::shared_ptr<graph>> graphs;\r
514 //      BOOST_FOREACH(auto& graph, g_graphs)\r
515 //              graphs.push_back(graph->clone());\r
516 //\r
517 //      return graphs;\r
518 //}\r
519 //\r
520 //}\r
521 \r
522 }}