Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-demo.git] / examples / builder / examples.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 //------------------------------------------------------------------------------
19 //
20 //
21 //------------------------------------------------------------------------------
22
23 #include "dali.h"
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali-toolkit/public-api/builder/builder.h>
26 #include <dali-toolkit/public-api/builder/tree-node.h>
27 #include <dali-toolkit/public-api/builder/json-parser.h>
28 #include <map>
29 #include <string>
30 #include <fstream>
31 #include <streambuf>
32 #include <sstream>
33 #include <dirent.h>
34 #include <stdio.h>
35 #include <iostream>
36
37 #include "sys/stat.h"
38 #include <ctime>
39
40 #include <dali/integration-api/debug.h>
41 #include "shared/view.h"
42
43 #define TOKEN_STRING(x) #x
44
45 using namespace Dali;
46 using namespace Dali::Toolkit;
47
48 namespace
49 {
50
51 const char* BACKGROUND_IMAGE( "" );
52 const char* TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
53 const char* EDIT_IMAGE( DALI_IMAGE_DIR "icon-change.png" );
54
55 std::string USER_DIRECTORY;
56
57 std::string JSON_BROKEN("                                      \
58 {                                                              \
59   'stage':                                                     \
60   [                                                            \
61     {                                                          \
62       'type':'TextView',                                       \
63       'size': [50,50,1],                                       \
64       'parent-origin': 'CENTER',                               \
65       'text':'COULD NOT LOAD JSON FILE'                        \
66     }                                                          \
67   ]                                                            \
68 }                                                              \
69 ");
70
71 std::string ReplaceQuotes(const std::string &single_quoted)
72 {
73   std::string s(single_quoted);
74
75   // wrong as no embedded quote but had regex link problems
76   std::replace(s.begin(), s.end(), '\'', '"');
77
78   return s;
79 }
80
81 std::string GetFileContents(const std::string &fn)
82 {
83   std::ifstream t(fn.c_str());
84   return std::string((std::istreambuf_iterator<char>(t)),
85                      std::istreambuf_iterator<char>());
86 };
87
88 typedef std::vector<std::string> FileList;
89
90 void DirectoryFileList(const std::string& directory, FileList& files)
91 {
92   DIR           *d;
93   struct dirent *dir;
94   d = opendir(directory.c_str());
95   if (d)
96   {
97     while ((dir = readdir(d)) != NULL)
98     {
99       if (dir->d_type == DT_REG)
100       {
101         files.push_back( directory + std::string(dir->d_name) );
102       }
103     }
104
105     closedir(d);
106   }
107 }
108
109 void DirectoryFilesByType(const std::string& dir, const std::string& fileType /* ie "json" */, FileList& files)
110 {
111   typedef FileList Collection;
112   typedef FileList::iterator Iter;
113
114   Collection allFiles;
115   DirectoryFileList(dir, allFiles);
116
117   for(Iter iter = allFiles.begin(); iter != allFiles.end(); ++iter)
118   {
119     size_t pos = (*iter).rfind( '.' );
120     if( pos != std::string::npos )
121     {
122       if( (*iter).substr( pos+1 ) == fileType )
123       {
124         files.push_back( (*iter) );
125       }
126     }
127   }
128 }
129
130 const std::string ShortName( const std::string& name )
131 {
132   size_t pos = name.rfind( '/' );
133
134   if( pos != std::string::npos )
135   {
136     return name.substr( pos );
137   }
138   else
139   {
140     return name;
141   }
142 }
143
144 static Vector3 SetItemSize(unsigned int numberOfColumns, float layoutWidth, float sideMargin, float columnSpacing)
145 {
146   return Vector3(layoutWidth, 50, 1);
147 }
148
149 //------------------------------------------------------------------------------
150 //
151 //
152 //
153 //------------------------------------------------------------------------------
154 class FileWatcher
155 {
156 public:
157   FileWatcher(void);
158   ~FileWatcher(void);
159   explicit FileWatcher(const std::string &fn) { SetFilename(fn) ; };
160
161   void SetFilename(const std::string &fn);
162   std::string GetFilename() const;
163
164   bool FileHasChanged(void);
165   std::string GetFileContents(void) const { return ::GetFileContents(mstringPath) ; };
166
167 private:
168   // compiler does
169   // FileWatcher(const FileWatcher&);
170   // FileWatcher &operator=(const FileWatcher &);
171
172   std::time_t mLastTime;
173   std::string mstringPath;
174
175 };
176
177 FileWatcher::FileWatcher(void) : mLastTime(0)
178 {
179 }
180
181 bool FileWatcher::FileHasChanged(void)
182 {
183   struct stat buf;
184
185   if(0 != stat(mstringPath.c_str(), &buf))
186   {
187     return false;
188   }
189   else
190   {
191     if(buf.st_mtime > mLastTime)
192     {
193       mLastTime = buf.st_mtime;
194       return true;
195     }
196     else
197     {
198       mLastTime = buf.st_mtime;
199       return false;
200     }
201   }
202
203   return false;
204 }
205
206 FileWatcher::~FileWatcher()
207 {
208 }
209
210 void FileWatcher::SetFilename(const std::string &fn)
211 {
212   mstringPath = fn;
213   FileHasChanged(); // update last time
214 }
215
216 std::string FileWatcher::GetFilename(void) const
217 {
218   return mstringPath;
219 }
220
221
222 } // anon namespace
223
224
225 //------------------------------------------------------------------------------
226 //
227 //
228 //
229 //------------------------------------------------------------------------------
230 class ExampleApp : public ConnectionTracker, public Toolkit::ItemFactory
231 {
232 public:
233   ExampleApp(Application &app) : mApp(app)
234   {
235     app.InitSignal().Connect(this, &ExampleApp::Create);
236   }
237
238   ~ExampleApp() {}
239
240 public:
241
242   void SetTitle(const std::string& title)
243   {
244     // TODO
245   }
246
247   bool OnToolSelectLayout( Toolkit::Button button )
248   {
249     bool on = mItemView.IsVisible();
250
251     if( on )
252     {
253       LeaveSelection();
254     }
255     else
256     {
257       EnterSelection();
258     }
259
260     return true;
261   }
262
263   void LeaveSelection()
264   {
265
266   }
267
268   void EnterSelection()
269   {
270     Stage stage = Stage::GetCurrent();
271
272     mTapDetector = TapGestureDetector::New();
273     mTapDetector.DetectedSignal().Connect( this, &ExampleApp::OnTap );
274
275     if( mItemView )
276     {
277       stage.Remove( mItemView );
278     }
279
280     mFiles.clear();
281
282     mItemView = ItemView::New(*this);
283     stage.Add( mItemView );
284     mItemView.SetParentOrigin(ParentOrigin::CENTER);
285     mItemView.SetAnchorPoint(AnchorPoint::CENTER);
286     mGridLayout = GridLayout::New();
287     mGridLayout->SetNumberOfColumns(1);
288
289     mGridLayout->SetItemSizeFunction(SetItemSize);
290
291     mGridLayout->SetTopMargin(DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight);
292
293     mItemView.AddLayout(*mGridLayout);
294
295     Vector3 size(stage.GetSize());
296     mItemView.ActivateLayout(0, size, 0.0f/*immediate*/);
297     mItemView.SetKeyboardFocusable( true );
298
299     mFiles.clear();
300     FileList files;
301
302     if( USER_DIRECTORY.size() )
303     {
304       DirectoryFilesByType( USER_DIRECTORY, "json", files );
305     }
306     else
307     {
308       DirectoryFilesByType( DALI_SCRIPT_DIR, "json", files );
309     }
310
311     std::sort(files.begin(), files.end());
312
313     ItemId itemId = 0;
314     for(FileList::iterator iter = files.begin(); iter != files.end(); ++iter)
315     {
316       JsonParser parser = JsonParser::New();
317
318       std::string data( GetFileContents( *iter ) );
319
320       parser.Parse( data );
321
322       if( parser.ParseError() )
323       {
324         std::cout << "Parser Error:" << *iter << std::endl;
325         std::cout << parser.GetErrorLineNumber() << "(" << parser.GetErrorColumn() << "):" << parser.GetErrorDescription() << std::endl;
326         exit(1);
327       }
328
329       if( parser.GetRoot() )
330       {
331         if( const TreeNode* node = parser.GetRoot()->Find("stage") )
332         {
333           // only those with a stage section
334           if( node->Size() )
335           {
336             mFiles.push_back( *iter );
337
338             mItemView.InsertItem( Item(itemId,
339                                        MenuItem( ShortName( *iter ) ) ),
340                                   0.5f );
341
342             itemId++;
343           }
344           else
345           {
346             std::cout << "Ignored file (stage has no nodes?):" << *iter << std::endl;
347           }
348         }
349         else
350         {
351           std::cout << "Ignored file (no stage section):" << *iter << std::endl;
352         }
353       }
354     }
355
356     // Display item view on the stage
357     stage.Add( mItemView );
358
359     mItemView.SetVisible( true );
360     mBuilderLayer.SetVisible( false );
361
362     SetTitle("Select");
363
364     // Itemview renderes the previous items unless its scrolled. Not sure why at the moment so we force a scroll
365     mItemView.ScrollToItem(0, 0);
366
367   }
368
369   void ExitSelection()
370   {
371     mTapDetector.Reset();
372
373     mItemView.SetVisible( false );
374     mBuilderLayer.SetVisible( true );
375
376     SetTitle("View");
377   }
378
379   void OnTap( Actor actor, const TapGesture& tap )
380   {
381     ItemId id = mItemView.GetItemId( actor );
382
383     LoadFromFileList( id );
384   }
385
386   Actor MenuItem(const std::string& text)
387   {
388     return Actor();
389   }
390
391   bool OnTimer()
392   {
393     if( mFileWatcher.FileHasChanged() )
394     {
395       LoadFromFile( mFileWatcher.GetFilename() );
396     }
397
398     return true;
399   }
400
401   void ReloadJsonFile(const std::string& filename, Builder& builder, Layer& layer)
402   {
403     Stage stage = Stage::GetCurrent();
404
405     builder = Builder::New();
406     builder.QuitSignal().Connect( this, &ExampleApp::OnBuilderQuit );
407
408     Property::Map defaultDirs;
409     defaultDirs[ TOKEN_STRING(DALI_IMAGE_DIR) ]  = DALI_IMAGE_DIR;
410     defaultDirs[ TOKEN_STRING(DALI_MODEL_DIR) ]  = DALI_MODEL_DIR;
411     defaultDirs[ TOKEN_STRING(DALI_SCRIPT_DIR) ] = DALI_SCRIPT_DIR;
412
413     builder.AddConstants( defaultDirs );
414
415     // render tasks may have been setup last load so remove them
416     RenderTaskList taskList = stage.GetRenderTaskList();
417     if( taskList.GetTaskCount() > 1 )
418     {
419       typedef std::vector<RenderTask> Collection;
420       typedef Collection::iterator ColIter;
421       Collection tasks;
422
423       for(unsigned int i = 1; i < taskList.GetTaskCount(); ++i)
424       {
425         tasks.push_back( taskList.GetTask(i) );
426       }
427
428       for(ColIter iter = tasks.begin(); iter != tasks.end(); ++iter)
429       {
430         taskList.RemoveTask(*iter);
431       }
432
433       RenderTask defaultTask = taskList.GetTask(0);
434       defaultTask.SetSourceActor( stage.GetRootLayer() );
435       defaultTask.SetTargetFrameBuffer( FrameBufferImage() );
436     }
437
438     unsigned int numChildren = layer.GetChildCount();
439
440     for(unsigned int i=0; i<numChildren; ++i)
441     {
442       layer.Remove( layer.GetChildAt(0) );
443     }
444
445     std::string data(GetFileContents(filename));
446
447     try
448     {
449       builder.LoadFromString(data);
450     }
451     catch(...)
452     {
453       builder.LoadFromString(ReplaceQuotes(JSON_BROKEN));
454     }
455
456     builder.AddActors( layer );
457
458   }
459
460
461   void LoadFromFileList( size_t index )
462   {
463     if( index < mFiles.size())
464     {
465       const std::string& name = mFiles[index];
466       mFileWatcher.SetFilename( name );
467       LoadFromFile( name );
468     }
469   }
470
471   void LoadFromFile( const std::string& name )
472   {
473     ReloadJsonFile( name, mBuilder, mBuilderLayer );
474
475     // do this here as GetCurrentSize()
476     mBuilderLayer.SetParentOrigin(ParentOrigin::CENTER);
477     mBuilderLayer.SetAnchorPoint(AnchorPoint::CENTER);
478     Dali::Vector3 size = Stage::GetCurrent().GetRootLayer().GetCurrentSize();
479     size.y -= DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight;
480     mBuilderLayer.SetSize( size );
481
482     mBuilderLayer.LowerToBottom();
483     Stage::GetCurrent().GetRootLayer().RaiseToTop();
484
485     ExitSelection();
486   }
487
488   void Create(Application& app)
489   {
490     Stage stage = Stage::GetCurrent();
491
492     Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleApp::OnKeyEvent);
493
494     Layer contents = DemoHelper::CreateView( app,
495                                              mView,
496                                              mToolBar,
497                                              BACKGROUND_IMAGE,
498                                              TOOLBAR_IMAGE,
499                                              "" );
500
501     SetTitle("Builder");
502
503     mBuilderLayer = Layer::New();
504     stage.GetRootLayer().Add(mBuilderLayer);
505
506
507     // Create an edit mode button. (left of toolbar)
508     Toolkit::PushButton editButton = Toolkit::PushButton::New();
509     editButton.SetBackgroundImage( ResourceImage::New( EDIT_IMAGE ) );
510     editButton.ClickedSignal().Connect( this, &ExampleApp::OnToolSelectLayout);
511     editButton.SetLeaveRequired( true );
512     mToolBar.AddControl( editButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalLeft, DemoHelper::DEFAULT_MODE_SWITCH_PADDING  );
513
514     EnterSelection();
515
516     mTimer = Timer::New( 500 ); // ms
517     mTimer.TickSignal().Connect( this, &ExampleApp::OnTimer);
518     mTimer.Start();
519
520   } // Create(app)
521
522   virtual unsigned int GetNumberOfItems()
523   {
524     return mFiles.size();
525   }
526
527   virtual Actor NewItem(unsigned int itemId)
528   {
529     DALI_ASSERT_DEBUG( itemId < mFiles.size() );
530     return MenuItem( ShortName( mFiles[itemId] ) );
531   }
532
533   /**
534    * Main key event handler
535    */
536   void OnKeyEvent(const KeyEvent& event)
537   {
538     if(event.state == KeyEvent::Down)
539     {
540       if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
541       {
542         if ( mItemView.IsVisible() )
543         {
544           mApp.Quit();
545         }
546         else
547         {
548           EnterSelection();
549         }
550       }
551     }
552   }
553
554   /**
555    * Event handler when Builder wants to quit (we only want to close the shown json unless we're at the top-level)
556    */
557   void OnBuilderQuit()
558   {
559     if ( mItemView.IsVisible() )
560     {
561       mApp.Quit();
562     }
563     else
564     {
565       EnterSelection();
566     }
567   }
568
569 private:
570   Application& mApp;
571
572   GridLayoutPtr mGridLayout;
573   ItemView mItemView;
574
575   Toolkit::View mView;
576   unsigned int mOrientation;
577
578   Toolkit::ToolBar mToolBar;
579
580   Layer mBuilderLayer;
581
582   Toolkit::Popup mMenu;
583
584   TapGestureDetector mTapDetector;
585
586   // builder
587   Builder mBuilder;
588
589   FileList mFiles;
590
591   FileWatcher mFileWatcher;
592   Timer mTimer;
593
594
595 };
596
597 //------------------------------------------------------------------------------
598 //
599 //
600 //
601 //------------------------------------------------------------------------------
602 int main(int argc, char **argv)
603 {
604   if(argc > 2)
605   {
606     if(strcmp(argv[1], "-f") == 0)
607     {
608       USER_DIRECTORY = argv[2];
609     }
610   }
611
612   Application app = Application::New(&argc, &argv);
613
614   ExampleApp dali_app(app);
615
616   app.MainLoop();
617
618   return 0;
619 }